Answers for "what is kubernetes"

5

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
1

what is kubernetes

Kubernetes is a portable, extensible,
open-source platform for managing containerized
workloads and services, that facilitates both
declarative configuration and automation. It has a large, rapidly growing 
ecosystem. Kubernetes services, support, and tools are widely available
Posted by: Guest on February-22-2022

Browse Popular Code Answers by Language