What deployment strategies exist in Kubernetes?
DevOps
Branching strategies in Git: GitFlow, Trunk-based development, and others
How does a pod inside a cluster communicate with other pods?
Which CNI have you worked with in Kubernetes? What is the key difference between Cilium and Calico?
How is the CI/CD process organized at your last place of work?
Have you familiarized yourself with the company or its website?
What is the difference between CMD and ENTRYPOINT?
How many clusters are there in administration?
How to implement automatic deployment of updates to an application on Kubernetes when changes are committed in the Git repository?
How can Ansible Role be stored and managed in the Git version control system?
Within 50 microservices, how would you organize Helm charts — one for all or one per service, and where to store?
How to set up remote Terraform state and what are the best practices?
Tell me, have you worked with Windows?
Have you run a Docker Image in Kubernetes or Docker Compose?
Is it possible to use NGINX for dynamic generation of product images with different resolutions, and what optimization methods exist for this process?
What level of work did you do with Kafka? What did you configure?
What types (algorithms) of load balancing can be used for an HTTP load balancer with 4 backends?
How can long-term data storage be ensured for pods within a Kubernetes cluster?
public static boolean isPerfectSquare(int n){ if (n < 0) return false; int sqrt = (int) Math.sqrt(n); return sqrt * sqrt == n; }
How many DevOps projects have you implemented in your experience?