Kubernetes Assignment for Administrator

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now – Top 10 k8 API Resources which is being by Kubernetes Admin Service ServiceAccount Role ClusterRoles RoleBinding ClusterRoleBinding Deployments Pods ReplicaSets Secrets – Top 10 kubectl commands to troubleshoot Kubernetes kubectl get events/pods/svc kubectl describe pod/service/deployment kubectl explain pod kubectl logs kubectl attach pod kubectl exec -it pod kubectl debug – Top 15 commands

Read more

What is Kubernetes and its feature

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Kubernetes is a open source tool that groups the containers into logical units to make up as application, which helps to manage the containers to achieve resource isolation, resource utilization, loosely/tightly coupled distributed workloads, distributions portability, CI & CD, high availability, scalability in lesser than few seconds Features Self-healing: without user intervention restarts the

Read more

List out 10 Feature of Docker-compose

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now docker-compose pull Performs the docker pull for all the services with respective images mentioned docker-compose create Executes the docker create for all the service (create container for all the service) docker-compose run Executes the docker create for all the service (run container for all the services) docker-compose up It combines build, create, run commands

Read more

what is tempfs in docker volume and how it use it?

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now This is in-memory file system Tt will not be seen anywhere in the host/container filesystem This volume cannot be shared among containers Once container is stopped/restarted stored info will be lost It is recommended to use for high speed temporary storage

Read more

Differences between CMD and ENTRYPOINT with example.

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now CMD ENTRYPOINT Can be overridden Cannot be overridden Cannot append additional params Can be appended Command to run when container starts or arg to ENTRYPOINT if specified Always first command to run when container starts Multiple times can be added in the dockerfile but the last line will override the previous Same behavior as

Read more

What is docker update and docker wait? Explain with example commands.

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now docker update Updates the running/exited container configuration such as memory, cpu, restart, and etc., docker wait Blocks the terminal execution till one or more containers stop and then print their exit codes.

Read more

What is diff between docker pause/unpause and stop/kill?

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Pause/Unpause Pause: when the running container is paused “SIGSTOP”is processed inside the container and become paused state. (Freeze CGroup)Unpause: Unpause execute “SIGCONT” inside the container to restore the container process (UnFreeze CGroup) Stop/Kill Stop: Stop execute “SIGTERM” inside the container and stop the process and the container and once grace period exceeded still stopping

Read more

What is Docker and Container? Details explanation with Image!

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now What is Docker? It is the tool and platform which helps to manage the containers, developed in Golang. What is Container? It is copy of image or isolated runtime environment for App, which has its own Filesystem, PID, user, network on top of the OS Benefit of Docker? Saves cost, time in spawn/setting up

Read more