diff --git a/stable/kubewatch/Chart.yaml b/stable/kubewatch/Chart.yaml index 29cb65163e78..eeff4b4a78a9 100644 --- a/stable/kubewatch/Chart.yaml +++ b/stable/kubewatch/Chart.yaml @@ -1,21 +1,19 @@ name: kubewatch -version: 1.0.7 +version: 1.0.8 apiVersion: v1 appVersion: 0.0.4 home: https://github.com/bitnami-labs/kubewatch icon: https://bitnami.com/assets/stacks/kubewatch/img/kubewatch-stack-220x234.png -description: Kubewatch notifies your slack rooms when changes to your cluster occur +# The redis chart is deprecated and no longer maintained. For details deprecation, see the PROCESSES.md file. +deprecated: true +description: DEPRECATED Kubewatch notifies your slack rooms when changes to your cluster occur keywords: - kubernetes - slack - hipchat - mattermost - flock -maintainers: -- name: compleatang - email: casey@monax.io -- name: Bitnami - email: containers@bitnami.com +maintainers: [] sources: - https://github.com/bitnami/bitnami-docker-kubewatch engine: gotpl diff --git a/stable/kubewatch/README.md b/stable/kubewatch/README.md index 20a6dd483f12..8ce523524d06 100644 --- a/stable/kubewatch/README.md +++ b/stable/kubewatch/README.md @@ -2,6 +2,26 @@ [kubewatch](https://github.com/bitnami-labs/kubewatch) is a Kubernetes watcher that currently publishes notification to Slack. Run it in your k8s cluster, and you will get event notifications in a slack channel. +## This Helm chart is deprecated + +Given the [`stable` deprecation timeline](https://github.com/helm/charts#deprecation-timeline), the Bitnami maintained Kubewatch Helm chart is now located at [bitnami/charts](https://github.com/bitnami/charts/). + +The Bitnami repository is already included in the Hubs and we will continue providing the same cadence of updates, support, etc that we've been keeping here these years. Installation instructions are very similar, just adding the _bitnami_ repo and using it during the installation (`bitnami/` instead of `stable/`) + +```bash +$ helm repo add bitnami https://charts.bitnami.com/bitnami +$ helm install my-release bitnami/ # Helm 3 +$ helm install --name my-release bitnami/ # Helm 2 +``` + +To update an exisiting _stable_ deployment with a chart hosted in the bitnami repository you can execute + +```bash +$ helm repo add bitnami https://charts.bitnami.com/bitnami +$ helm upgrade my-release bitnami/ +``` + +Issues and PRs related to the chart itself will be redirected to `bitnami/charts` GitHub repository. In the same way, we'll be happy to answer questions related to this migration process in [this issue](https://github.com/helm/charts/issues/20969) created as a common place for discussion. ## TL;DR; diff --git a/stable/kubewatch/templates/NOTES.txt b/stable/kubewatch/templates/NOTES.txt index 2eec79ffe66e..6f1061bb88b6 100644 --- a/stable/kubewatch/templates/NOTES.txt +++ b/stable/kubewatch/templates/NOTES.txt @@ -1,3 +1,24 @@ +This Helm chart is deprecated + +Given the `stable` deprecation timeline (https://github.com/helm/charts#deprecation-timeline), the Bitnami maintained Helm chart is now located at bitnami/charts (https://github.com/bitnami/charts/). + +The Bitnami repository is already included in the Hubs and we will continue providing the same cadence of updates, support, etc that we've been keeping here these years. Installation instructions are very similar, just adding the _bitnami_ repo and using it during the installation (`bitnami/` instead of `stable/`) + +```bash +$ helm repo add bitnami https://charts.bitnami.com/bitnami +$ helm install my-release bitnami/ # Helm 3 +$ helm install --name my-release bitnami/ # Helm 2 +``` + +To update an exisiting _stable_ deployment with a chart hosted in the bitnami repository you can execute + +```bash +$ helm repo add bitnami https://charts.bitnami.com/bitnami +$ helm upgrade my-release bitnami/ +``` + +Issues and PRs related to the chart itself will be redirected to `bitnami/charts` GitHub repository. In the same way, we'll be happy to answer questions related to this migration process in this issue (https://github.com/helm/charts/issues/20969) created as a common place for discussion. + To verify that kubewatch has started, run: kubectl --namespace={{ .Release.Namespace }} get pods -l "app={{ template "kubewatch.name" . }},release={{ .Release.Name }}"