Did you design the network or just maintain the existing infrastructure?
SRE / Platform Engineer
What is Multistage build in Docker and why is it needed?
What is GitOps?
How to correctly change the value of a ConfigMap so that the service sees it?
What is OpenStack?
What is the difference between a soft link and a hard link?
Have you worked with Java microservices?
Do you know what AppArmor is?
Briefly tell what you were doing on the current project in the company.
What is the difference between the merge and rebase commands in Git?
Что такое liveness, readiness и startup пробы в Kubernetes?
PostgreSQL suddenly became slower. Where to start diagnostics?
How does working with GitLab look like? What is the difference between Stage and Job in GitLab CI?
1. Write a Python object "switches" in YAML format. 2. Transform "switches" so that it contains only "cisco" switches. 3. In the command standardise_macaddr, get the last host address in the network "172.16.0.0/28". 4. Parse "dhcp_snooping_table" into a list of dictionaries of the following form: ```python dhcp_snooping_table_parsed = [ { "mac": "00:E9:BC:3F:A6:50", "ip": "100.1.1.6", "interface": "FastEthernet0/20", }, { "mac": "00:E9:22:11:A6:50", "ip": "100.1.1.7", "interface": "FastEthernet0/21", } ] ``` 5. Write a class "NetworkSubnet" that has 2 methods: - get_subnet - returns the first available subnet of the specified length as an IPv4Network class object. - show_network_pool - returns a list of available subnets.
What does the permission 755 on a directory mean?
Have you set up wireless networks in offices? What authentication methods did you use?
How to securely store secrets in Ansible?
How to connect two Docker containers into one network on the same host?
How would you implement block parsing of configurations, considering that the same functions (e.g., BGP) are described differently by different vendors?
What are Python context managers?