Components of Kubernetes – Master

etcdIt stores the configuration information which can be used by each of the nodes in the cluster. API ServerKubernetes is an API server which provides all the operation on cluster using the API. Controller ManagerThis component is responsible for most of the collectors that regulates the state of cluster and performs a task. SchedulerThis is one of the key components of Kubernetes master. It is a service in master responsible for distributing the workload. Kubernetes – Node ComponentsFollowing are the

Read more

Kubernetes Features

Automated rollouts and rollbacks Storage orchestration Automatic bin packing IPv4/IPv6 dual-stack Self-healing Service discovery and load balancing Secret and configuration management Batch execution Horizontal scaling Designed for extensibility

Read more

List out all INSTRUCTION statement of dockerfile and give one line explanation

1) FROM : must be the first non-comment instruction in the Dockerfileeg : FROM ubuntu2) MAINTAINER :instruction allows you to set the Author field of the generated imageseg : MAINTAINER Mani K.M mani.km@quest-global.command3) RUN : The exec form makes it possible, to RUN commands using a base image that does not contain the specified shell executableeg: RUN apt-get update4) CMD: The main purpose of a CMD is to provide defaults for an executing containereg : CMD echo Hello world5) LABEL

Read more