1
0
mirror of https://github.com/coreos/prometheus-operator.git synced 2026-02-05 06:45:27 +01:00

bump prometheus operator helm chart to 0.16.1 version, add developer notes

This commit is contained in:
Giancarlo Rubio
2018-01-31 13:54:35 +00:00
parent e10c74e9a4
commit 03f652eb62
3 changed files with 24 additions and 3 deletions

View File

@@ -5,3 +5,24 @@ helm repo add coreos https://s3-eu-west-1.amazonaws.com/coreos-charts/stable/
helm install coreos/prometheus-operator --name prometheus-operator --namespace monitoring
helm install coreos/kube-prometheus --name kube-prometheus --set rbacEnable=true --namespace monitoring
````
# How to contribue?
1. Fork the project
2. Make the changes in the helm charts
3. Bump the version in Chart.yaml for each modified chart
4. Update [kube-prometheus/requirements.yaml](kube-prometheus/requirements.yaml) file with the dependencies
5. Bump the [kube-prometheus/Chart.yaml](kube-prometheus/Chart.yaml)
6. [Test locally](#how-to-test)
7. Push the changes
# How to test?
```
helm install helm/prometheus-operator --name prometheus-operator --namespace monitoring
mkdir -p helm/kube-prometheus/charts
helm package -d helm/kube-prometheus/charts helm/alertmanager helm/grafana helm/prometheus helm/prometheus-operator helm/exporter-kube-dns helm/exporter-kube-scheduler helm/exporter-kubelets helm/exporter-node helm/exporter-kube-controller-manager helm/exporter-kube-etcd helm/exporter-kube-state helm/exporter-kubernetes
helm install helm/kube-prometheus --name kube-prometheus --namespace monitoring
```