# Erstellung eines Deployments mit dem webapp-color Kontainer und mit 3 Replicas apiVersion: apps/v1 kind: Deployment metadata: name: webapp spec: template: metadata: name: web-app-color labels: app: mywebapp type: front-end spec: containers: - name: webapp-container image: kodekloud/webapp-color replicas: 3 selector: matchLabels: type: front-end