Skip to content

Commit

Permalink
changed default value for probes.enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
TalShafir committed Mar 6, 2024
1 parent ca0021d commit 15080fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/ocean-metric-exporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
4 changes: 2 additions & 2 deletions charts/ocean-metric-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 15080fb

Please sign in to comment.