Files
inception-of-things/p2/confs/app2/deployment.yml

24 lines
414 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: app2-deployment
spec:
replicas: 3
selector:
matchLabels:
app: app2
template:
metadata:
labels:
app: app2
spec:
containers:
- name: app2
image: ghcr.io/traefik/whoami:v1.11
ports:
- containerPort: 80
command:
- /whoami
- --port=80
- --name=app-two