Files
Schulung_Docker_k8s/k3d/blue-green/nginx-v2.yaml
nutzer26 8ee05cb88d added
2022-12-16 12:21:57 +01:00

26 lines
415 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: web
version: V2.0.0
name: webv2
spec:
replicas: 1
selector:
matchLabels:
app: web
version: V2.0.0
template:
metadata:
labels:
app: web
version: V2.0.0
spec:
containers:
- image: nginx:1.19.8
name: nginx_old
ports:
- name: http
containerPort: 80