Kubernetes Object Model

Building blocks

  • Pods

  • ReplicaSets

  • Deployments

  • Service

  • Namespaces

Pods

apiVersion: v1
kind: Pod
metadata:
  name: nginx-pod
  labels:
    app: nginx
spec:
  containers:
  - name: nginx
    image: nginx:1.15.11
    ports:
    - containerPort: 80

ReplicaSet

Deployments

Service

Last updated