2023-03-29 20:24:05 +00:00
|
|
|
apiVersion: apps/v1
|
2018-11-29 23:34:46 +00:00
|
|
|
kind: Deployment
|
|
|
|
|
metadata:
|
|
|
|
|
name: helm-guestbook
|
|
|
|
|
namespace: kube-system
|
|
|
|
|
labels:
|
|
|
|
|
app: helm-guestbook
|
|
|
|
|
spec:
|
2019-10-11 18:48:57 +00:00
|
|
|
replicas: 0
|
2018-11-29 23:34:46 +00:00
|
|
|
selector:
|
|
|
|
|
matchLabels:
|
|
|
|
|
app: helm-guestbook
|
|
|
|
|
template:
|
|
|
|
|
metadata:
|
|
|
|
|
labels:
|
|
|
|
|
app: helm-guestbook
|
|
|
|
|
spec:
|
|
|
|
|
containers:
|
|
|
|
|
- name: helm-guestbook
|
2022-07-11 18:04:29 +00:00
|
|
|
image: quay.io/argoprojlabs/argocd-e2e-container:0.2
|
2018-11-29 23:34:46 +00:00
|
|
|
imagePullPolicy: IfNotPresent
|
|
|
|
|
ports:
|
|
|
|
|
- name: http
|
|
|
|
|
containerPort: 80
|
|
|
|
|
protocol: TCP
|
|
|
|
|
livenessProbe:
|
|
|
|
|
httpGet:
|
|
|
|
|
path: /
|
|
|
|
|
port: http
|
|
|
|
|
readinessProbe:
|
|
|
|
|
httpGet:
|
|
|
|
|
path: /
|
2022-07-11 18:04:29 +00:00
|
|
|
port: http
|