Merge branch 'main' into fix_indent_valkey_subchart_values

This commit is contained in:
Jesse Hitch
2025-01-18 10:23:15 +01:00
committed by GitHub
6 changed files with 17 additions and 7 deletions
+4 -2
View File
@@ -56,6 +56,8 @@ service:
type: ClusterIP
# -- This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports
port: 80
# -- Port to attach to on the pods. Also sets what port nginx listens on inside the container.
targetPort: 80
# This block is for setting up the ingress for more information can be found here: https://kubernetes.io/docs/concepts/services-networking/ingress/
ingress:
@@ -87,12 +89,12 @@ resources: {}
# This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
livenessProbe:
httpGet:
path: /
path: /api/service/health-check
port: http
readinessProbe:
httpGet:
path: /
path: /api/service/health-check
port: http
# This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/