mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-25 10:57:16 +00:00
33 lines
No EOL
732 B
YAML
33 lines
No EOL
732 B
YAML
apiVersion: extensions/v1beta1
|
|
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: "gcr.io/heptio-images/ks-guestbook-demo:0.2"
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- name: http
|
|
containerPort: 80
|
|
protocol: TCP
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: http
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: http |