Commit 65ec33e2 authored by David McKay's avatar David McKay

fix: readiness and live probes

parent 72409b85
...@@ -10,6 +10,11 @@ data: ...@@ -10,6 +10,11 @@ data:
bind-address = ":8088" bind-address = ":8088"
reporting-disabled = false reporting-disabled = false
{{ if .Values.auth.secretName }}
[http]
auth-enabled = true
{{ end }}
[enterprise] [enterprise]
{{ if .Values.license.key }} {{ if .Values.license.key }}
# license-key and license-path are mutually exclusive, use only one and leave the other blank # license-key and license-path are mutually exclusive, use only one and leave the other blank
......
...@@ -66,7 +66,7 @@ spec: ...@@ -66,7 +66,7 @@ spec:
readinessProbe: readinessProbe:
initialDelaySeconds: 30 initialDelaySeconds: 30
httpGet: httpGet:
path: /status path: /ping
port: http port: http
volumeMounts: volumeMounts:
- name: config - name: config
......
...@@ -68,7 +68,7 @@ spec: ...@@ -68,7 +68,7 @@ spec:
port: http port: http
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /status path: /ping
port: http port: http
volumeMounts: volumeMounts:
- name: config - name: config
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment