Skip to content

Commit

Permalink
fix(chart:k8up): Rename & implement grafanaDashboard.enabled
Browse files Browse the repository at this point in the history
Previously, the value was never checked and the ConfigMap was always
created. Also rename the parameter to be in line with the other metrics
values.

Signed-off-by: Manuel Hutter <[email protected]>
  • Loading branch information
mhutter committed Jul 31, 2024
1 parent 4f539a3 commit f0f40bb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/k8up/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords:
- backup
- operator
- restic
version: 4.8.0
version: 4.8.1
sources:
- https://github.com/k8up-io/k8up
maintainers:
Expand Down
6 changes: 3 additions & 3 deletions charts/k8up/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# k8up

![Version: 4.8.0](https://img.shields.io/badge/Version-4.8.0-informational?style=flat-square)
![Version: 4.8.1](https://img.shields.io/badge/Version-4.8.1-informational?style=flat-square)

Kubernetes and OpenShift Backup Operator based on restic

Expand All @@ -13,7 +13,7 @@ helm repo add k8up-io https://k8up-io.github.io/k8up
helm install k8up k8up-io/k8up
```
```bash
kubectl apply -f https://github.com/k8up-io/k8up/releases/download/k8up-4.8.0/k8up-crd.yaml --server-side
kubectl apply -f https://github.com/k8up-io/k8up/releases/download/k8up-4.8.1/k8up-crd.yaml --server-side
```

<!---
Expand Down Expand Up @@ -63,7 +63,7 @@ Document your changes in values.yaml and let `make docs:helm` generate this sect
| k8up.skipWithoutAnnotation | bool | `false` | Specifies whether K8up should ignore PVCs without the backup annotation (by default, `k8up.io/backup`) |
| k8up.timezone | string | `""` | Specifies the timezone K8up is using for scheduling. Empty value defaults to the timezone in which Kubernetes is deployed. Accepts `tz database` compatible entries, e.g. `Europe/Zurich` |
| metrics.grafanaDashboard.additionalLabels | object | `{}` | Add labels to the Grafana Dashboard object |
| metrics.grafanaDashboard.enable | bool | `false` | Whether to deploy the Grafana dashboard |
| metrics.grafanaDashboard.enabled | bool | `false` | Whether to deploy the Grafana dashboard |
| metrics.grafanaDashboard.namespace | string | `""` | If the object should be installed in a different namespace than operator |
| metrics.prometheusRule.additionalLabels | object | `{}` | Add labels to the PrometheusRule object |
| metrics.prometheusRule.additionalRules | list | `[]` | Provide additional alert rules in addition to the defaults |
Expand Down
2 changes: 2 additions & 0 deletions charts/k8up/templates/grafana-dashboard.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if .Values.metrics.grafanaDashboard.enabled -}}
kind: ConfigMap
apiVersion: v1
metadata:
Expand Down Expand Up @@ -1204,3 +1205,4 @@ data:
"weekStart": ""
}
`}}
{{- end -}}
2 changes: 1 addition & 1 deletion charts/k8up/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ metrics:
additionalRules: []
grafanaDashboard:
# -- Whether to deploy the Grafana dashboard
enable: false
enabled: false
# -- If the object should be installed in a different namespace than operator
namespace: ""
# -- Add labels to the Grafana Dashboard object
Expand Down

0 comments on commit f0f40bb

Please sign in to comment.