Answers for "whats kubernetes"

7

kubernetes.

apiVersion: apps/v1
kind: Deployment
metadata:
  name: nginx-deployment
  labels:
    app: nginx
spec:
  replicas: 3
  selector:
    matchLabels:
      app: nginx
  template:
    metadata:
      labels:
        app: nginx
    spec:
      containers:
      - name: nginx
        image: nginx:1.14.2
        ports:
        - containerPort: 80
Posted by: Guest on June-21-2020
0

what is kubernetes used for

Kubernetes, often abbreviated as “K8s”, orchestrates containerized applications to run on a cluster of hosts. 
The K8s system automates the deployment and management of cloud native applications using on-premises infrastructure or public cloud platforms. 
It distributes application workloads across a Kubernetes cluster and automates dynamic container networking needs. 
Kubernetes also allocates storage and persistent volumes to running containers, provides automatic scaling, and works continuously to maintain the desired state of applications, providing resiliency.
Posted by: Guest on April-07-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language