mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +00:00
33 lines
723 B
YAML
33 lines
723 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: helm-guestbook
|
|
namespace: kube-system
|
|
labels:
|
|
app: helm-guestbook
|
|
spec:
|
|
replicas: 0
|
|
selector:
|
|
matchLabels:
|
|
app: helm-guestbook
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: helm-guestbook
|
|
spec:
|
|
containers:
|
|
- name: helm-guestbook
|
|
image: quay.io/argoprojlabs/argocd-e2e-container:0.2
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- name: http
|
|
containerPort: 80
|
|
protocol: TCP
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: http
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: http
|