This repository has been archived by the owner on Feb 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[stable/kubewatch] Move chart to distributed bitnami repository (#21393)
Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com>
- Loading branch information
Carlos Rodríguez Hernández
authored
Mar 11, 2020
1 parent
2540b08
commit 0d699b1
Showing
3 changed files
with
46 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/<chart>` instead of `stable/<chart>`) | ||
|
||
```bash | ||
$ helm repo add bitnami https://charts.bitnami.com/bitnami | ||
$ helm install my-release bitnami/<chart> # Helm 3 | ||
$ helm install --name my-release bitnami/<chart> # 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/<chart> | ||
``` | ||
|
||
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 }}" |