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