fluxcd-flux2/tests/integration/testdata/automation-deploy.yaml
2022-09-29 22:07:19 +01:00

26 lines
571 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: podinfo
namespace: {{ .ns }}
spec:
selector:
matchLabels:
app: podinfo
template:
metadata:
labels:
app: podinfo
spec:
containers:
- name: podinfod
image: {{ .url }}/container/podinfo:{{ .version }} # {"$imagepolicy": "{{ .name }}:podinfo"}
readinessProbe:
exec:
command:
- podcli
- check
- http
- localhost:9898/readyz
initialDelaySeconds: 5
timeoutSeconds: 5