0 Pluspunkte 0 Minuspunkte
Wie erstelle ich ein Deployment in Kubernetes?
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Du definierst das Deployment in einer YAML Datei

apiVersion: apps/v1
kind: Deployment
metadata:
  name: mein-deployment
spec:
  replicas: 3
  selector:
    matchLabels:
      app: meine-app
  template:
    metadata:
      labels:
        app: meine-app
    spec:
      containers:
        - name: container-1
          image: nginx:latest

und erstellst es mit

kubectl create -f mein_deployment.yaml
von