DevOps
What will happen to the pod if the node runs out of disk space completely?
What entities of Istio do you know and what are VirtualService and DestinationRule used for?
You have 5000 servers, 200 of which fail simultaneously — what do you do?
How to securely store passwords in Kubernetes? What is the External Secrets Operator?
Do you have experience working in a startup?
How does Deployment differ from StatefulSet?
How to manage CPU priority for processes in Linux (CPU throttling)?
What are you most interested in doing now: technology, tasks, or role?
What does the IP address with a /32 mask mean?
What are the two types of pipelines in Jenkins?
56. Under what conditions is it impossible to deploy a k8s cluster? - Such conditions do not exist; - It is impossible to deploy a cluster on a single node; - A separate node for API is required for deployment; - All control plane components of the cluster must be deployed on separate physical servers; 57. Which of the following is a message broker? - Apache Kafka; - Postgres; - OracleMQ; - RabbitMQ; - Asterix; - ActiveMQ; - Artemis;
Do you have all the documents for official employment: passport, TIN, SNILS, military ID?
What Docker network drivers do you know? What are they used for?
Tell us about yourself and your experience.
Why did you decide to change your job?
How can two containers in the same Pod communicate with each other (for example, client and database)?
What is the difference between security groups and routing tables in Yandex.Cloud?
How many practices/methodologies are there in DevOps?
public static boolean isPerfectSquare(int n){ if (n < 0) return false; int sqrt = (int) Math.sqrt(n); return sqrt * sqrt == n; }
Developers brought the source code and are asking to run it on the server. What would you do?