Denkeeper has been deployed!

1. Get the application URL:
{{- if eq .Values.service.type "ClusterIP" }}
  kubectl port-forward svc/{{ include "denkeeper.fullname" . }} {{ .Values.service.port }}:{{ .Values.service.port }}
{{- else if eq .Values.service.type "LoadBalancer" }}
  NOTE: It may take a few minutes for the LoadBalancer IP to be available.
  kubectl get svc {{ include "denkeeper.fullname" . }} -w
{{- end }}

2. Health check:
  curl http://localhost:{{ .Values.service.port }}/api/v1/health

3. Secrets:
{{- if .Values.existingSecret }}
  Using existing secret: {{ .Values.existingSecret }}
{{- else }}
  Secrets are managed by the chart. Set values in values.yaml under `secrets:`,
  or switch to an existing secret with `existingSecret: <name>`.
{{- end }}

4. Configuration (bootstrap model):
  The ConfigMap is copied to /data/denkeeper.toml on the PVC on first start only.
  After that the file is writeable and lives independently (runtime changes persist).
  To re-apply Helm values to an existing deployment:
    kubectl exec <pod> -- rm /data/denkeeper.toml
    kubectl rollout restart deployment/{{ include "denkeeper.fullname" . }}

For configuration details, see:
  https://temikus.github.io/denkeeper/docs/getting-started/configuration/
