diff --git a/README.md b/README.md index 356fc482..bf125ad4 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ Follow these steps: 1. Fork this repo 2. Make desired changes to the chart 3. Bump the chart version -4. Regenerate the chart `README.md`: `docker run --rm -v "${PWD}:/helm-docs" jnorwood/helm-docs:v1.11.3 --template-files ./ci/README.md.gotmpl` +4. Regenerate the chart `README.md`. Run from the repo root: `docker run --rm -v "${PWD}:/helm-docs" jnorwood/helm-docs:v1.11.3 --template-files ./ci/README.md.gotmpl` 5. Commit and push changes 6. Open 1 pull request per chart you want to change 7. Set pull request title to `[stable/]: ` diff --git a/stable/kube-downscaler/Chart.yaml b/stable/kube-downscaler/Chart.yaml index 5b90469f..260ecc36 100644 --- a/stable/kube-downscaler/Chart.yaml +++ b/stable/kube-downscaler/Chart.yaml @@ -1,6 +1,6 @@ name: kube-downscaler apiVersion: v1 -version: "0.7.4" +version: "0.7.5" appVersion: 23.2.0-6-gc9b88e8 description: Scale down Kubernetes deployments after work hours keywords: diff --git a/stable/kube-downscaler/README.md b/stable/kube-downscaler/README.md index 0525e60b..6b9842db 100644 --- a/stable/kube-downscaler/README.md +++ b/stable/kube-downscaler/README.md @@ -1,6 +1,6 @@ # kube-downscaler -![Version: 0.7.4](https://img.shields.io/badge/Version-0.7.4-informational?style=flat-square) ![AppVersion: 23.2.0-6-gc9b88e8](https://img.shields.io/badge/AppVersion-23.2.0--6--gc9b88e8-informational?style=flat-square) +![Version: 0.7.5](https://img.shields.io/badge/Version-0.7.5-informational?style=flat-square) ![AppVersion: 23.2.0-6-gc9b88e8](https://img.shields.io/badge/AppVersion-23.2.0--6--gc9b88e8-informational?style=flat-square) Scale down Kubernetes deployments after work hours diff --git a/stable/kube-downscaler/templates/cronjob.yaml b/stable/kube-downscaler/templates/cronjob.yaml index 2bf798b5..d9fe4a89 100644 --- a/stable/kube-downscaler/templates/cronjob.yaml +++ b/stable/kube-downscaler/templates/cronjob.yaml @@ -3,6 +3,7 @@ apiVersion: {{ template "batch.apiVersion" . }} kind: CronJob metadata: name: {{ template "kube-downscaler.fullname" . }}-de-annotate + namespace: {{ .Release.Namespace }} labels: {{ include "kube-downscaler.labels" . | indent 4 }} {{- if .Values.extraLabels }} diff --git a/stable/kube-downscaler/templates/deployment.yaml b/stable/kube-downscaler/templates/deployment.yaml index e4e8eea0..488e3a0a 100644 --- a/stable/kube-downscaler/templates/deployment.yaml +++ b/stable/kube-downscaler/templates/deployment.yaml @@ -2,6 +2,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: {{ template "kube-downscaler.fullname" . }} + namespace: {{ .Release.Namespace }} labels: {{ include "kube-downscaler.labels" . | indent 4 }} {{- if .Values.extraLabels }} diff --git a/stable/kube-downscaler/templates/serviceaccount.yaml b/stable/kube-downscaler/templates/serviceaccount.yaml index 5dcacd0f..b9a14a4f 100644 --- a/stable/kube-downscaler/templates/serviceaccount.yaml +++ b/stable/kube-downscaler/templates/serviceaccount.yaml @@ -6,4 +6,5 @@ metadata: labels: {{ include "kube-downscaler.labels" . | indent 4 }} name: {{ template "kube-downscaler.fullname" . }} + namespace: {{ .Release.Namespace }} {{- end -}}