diff --git a/charts/ocean-metric-exporter/README.md b/charts/ocean-metric-exporter/README.md index ba46431..a08c693 100644 --- a/charts/ocean-metric-exporter/README.md +++ b/charts/ocean-metric-exporter/README.md @@ -48,7 +48,7 @@ helm install my-release spot/ocean-metric-exporter | oceanController.secretName | Optional | `"spotinst-kubernetes-cluster-controller"` | Secret name. | | podAnnotations | Optional | `{}` | Pod annotations. Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ | | podEnvVariables | Optional | `[]` | Additional environment variables for the exporter container. | -| probes.enabled | Bool | `false` | Whether to include both liveness and readiness probe, this option will ignore the nested enabled booleans. | +| probes.enabled | Bool | `true` | Whether to include both liveness and readiness probe, if this is set to true it will ignore the nested enabled booleans. | | probes.liveness.enabled | Bool | `false` | Whether to include liveness probe, this will be ignored if probes.enabled was set to true. | | probes.liveness.failureThreshold | Integer | `3` | Liveness probe failure threshold. | | probes.liveness.initialDelaySeconds | Integer | `15` | Liveness probe initial delay. | diff --git a/charts/ocean-metric-exporter/values.yaml b/charts/ocean-metric-exporter/values.yaml index 9ef550f..be049d2 100644 --- a/charts/ocean-metric-exporter/values.yaml +++ b/charts/ocean-metric-exporter/values.yaml @@ -65,8 +65,8 @@ service: # Probes configuration probes: - # -- (Bool) Whether to include both liveness and readiness probe, this option will ignore the nested enabled booleans. - enabled: false + # -- (Bool) Whether to include both liveness and readiness probe, if this is set to true it will ignore the nested enabled booleans. + enabled: true # Liveness probe configuration. liveness: