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