Kubernetes is an open-source container orchestration platform that automates many of the manual processes involved in containerized application deployment, management, and scaling.
data
and binaryData
fields. As values, these fields accept key-value pairs. The data
field and binaryData
are both optional. The data field is intended to hold UTF-8 strings, whereas the binaryData
field is intended to hold binary data as base64-encoded strings.
kubectl create
or kubectl apply
. Make a deployment by defining a manifest file in YAML format.
kubectl
makes it possible to run commands against Kubernetes clusters using the kubectl
command-line tool. kubectl
can be used to deploy applications, inspect and manage cluster resources, and inspect logs. See the kubectl
reference documentation for more information.
kind
command makes it possible to run Kubernetes on a local machine. As a prerequisite, Docker needs to be installed and configured. What kind
is doing is to run local Kubernetes clusters using Docker container “nodes”.