123456789101112131415161718192021222324252627 |
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: frontend
- spec:
- replicas: 3
- selector:
- matchLabels:
- app: guestbook
- tier: frontend
- template:
- metadata:
- labels:
- app: guestbook
- tier: frontend
- spec:
- containers:
- - name: guestbook-frontend
- image: {{.AgnhostImage}}
- args: [ "guestbook", "--backend-port", "6379" ]
- resources:
- requests:
- cpu: 100m
- memory: 100Mi
- ports:
- - containerPort: 80
|