This commit is contained in:
Raghavi 2023-11-15 16:57:05 -05:00 committed by GitHub
commit 573556fefd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 10 deletions

View File

@ -29,13 +29,9 @@ spec:
containerPort: {{ .Values.containerPort }}
protocol: TCP
livenessProbe:
httpGet:
path: /
port: http
{{ toYaml .Values.livenessProbe | indent 12 }}
readinessProbe:
httpGet:
path: /
port: http
{{ toYaml .Values.readinessProbe | indent 12 }}
resources:
{{ toYaml .Values.resources | indent 12 }}
{{- with .Values.nodeSelector }}

View File

@ -2,12 +2,22 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
replicaCount: 3
container:
port: 80
image:
repository: gcr.io/heptio-images/ks-guestbook-demo
tag: 0.1
pullPolicy: IfNotPresent
repository: quay.io/ablock/gitops-helm-quarkus
tag: latest
pullPolicy: Always
probe: {}
# image:
# repository: gcr.io/heptio-images/ks-guestbook-demo
# tag: 0.1
# pullPolicy: IfNotPresent
containerPort: 80
@ -15,6 +25,7 @@ service:
type: ClusterIP
port: 80
ingress:
enabled: false
annotations: {}