Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
[stable/helm-exporter] Updated image tag to 0.4.0 & added variable fo…
Browse files Browse the repository at this point in the history
…r tiller Namespaces (#13706)

* cmd var -tiller-namespaces & image tag to 0.4.0

Signed-off-by: Abhijit Bhoite <abhijit.bhoite@syapse.com>

* Update chart version

Signed-off-by: Abhijit Bhoite <abhijit.bhoite@syapse.com>

* Fix lint

Signed-off-by: Abhijit Bhoite <abhijit.bhoite@syapse.com>
  • Loading branch information
abhoite authored and k8s-ci-robot committed May 13, 2019
1 parent a52f37d commit ffe3f65
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions stable/helm-exporter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
appVersion: "0.3.1"
appVersion: "0.4.0"
description: Exports helm release stats to prometheus
name: helm-exporter
version: 0.2.2
version: 0.2.3
home: https://github.com/sstarcher/helm-exporter
sources:
- https://github.com/sstarcher/helm-exporter
Expand Down
3 changes: 2 additions & 1 deletion stable/helm-exporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ Parameter | Description | Default
--- | --- | ---
`affinity` | affinity configuration for pod assignment | `{}`
`image.repository` | Image | `sstarcher/helm-exporter`
`image.tag` | Image tag | `0.3.1`
`image.tag` | Image tag | `0.4.0`
`image.pullPolicy` | Image pull policy | `IfNotPresent`
`tillerNamespaces` | To override the default tiller namespace name or to provide the multiple tiller namespaces For example, "kube-system,dev" | ""
`nodeSelector` | node labels for pod assignment | `{}`
`resources` | pod resource requests & limits | `{}`
`tolerations` | List of node taints to tolerate (requires Kubernetes 1.6+) | `[]`
Expand Down
3 changes: 3 additions & 0 deletions stable/helm-exporter/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ spec:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- if .Values.tillerNamespaces }}
args: ["-tiller-namespaces", {{ .Values.tillerNamespaces | quote }}]
{{- end }}
ports:
- name: http
containerPort: 9571
Expand Down
5 changes: 4 additions & 1 deletion stable/helm-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@ replicaCount: 1

image:
repository: sstarcher/helm-exporter
tag: 0.3.1
tag: 0.4.0
pullPolicy: Always

# To override default tiller namespace name or to provide the multiple tiller namespaces like "kube-system,dev"
tillerNamespaces: ""

nameOverride: ""
fullnameOverride: ""

Expand Down

0 comments on commit ffe3f65

Please sign in to comment.