Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
added podAnnotations field (helm#14924)
Browse files Browse the repository at this point in the history
Signed-off-by: Aiman Najjar <aiman.najjar@hurranet.com>
Signed-off-by: aimannajjar <aiman.najjar@hurranet.com>
Signed-off-by: Andrii Nasinnyk <anasinnyk@macpaw.com>
Rate limit · GitHub

Access has been restricted

You have triggered a rate limit.

Please wait a few minutes before you try again;
in some cases this may take up to an hour.

aimannajjar authored and anasinnyk committed Jun 29, 2019
1 parent dfc3b80 commit 6f97e47
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion stable/metabase/Chart.yaml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ apiVersion: v1
description: The easy, open source way for everyone in your company to ask questions
and learn from data.
name: metabase
version: 0.5.0
version: 0.6.0
appVersion: v0.31.2
maintainers:
- name: pmint93
1 change: 1 addition & 0 deletions stable/metabase/README.md
Original file line number Diff line number Diff line change
@@ -45,6 +45,7 @@ The following table lists the configurable parameters of the Metabase chart and
| Parameter | Description | Default |
|------------------------|------------------------------------------------------------|-------------------|
| replicaCount | desired number of controller pods | 1 |
| podAnnotations | controller pods annotations | {} |
| image.repository | controller container image repository | metabase/metabase |
| image.tag | controller container image tag | v0.31.2 |
| image.pullPolicy | controller container image pull policy | IfNotPresent |
3 changes: 3 additions & 0 deletions stable/metabase/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -13,6 +13,9 @@ spec:
metadata:
annotations:
checksum/config: {{ include (print $.Template.BasePath "/config.yaml") . | sha256sum }}
{{- if .Values.podAnnotations }}
{{ toYaml .Values.podAnnotations | trim | indent 8 }}
{{- end }}
labels:
app: {{ template "metabase.name" . }}
release: {{ .Release.Name }}
1 change: 1 addition & 0 deletions stable/metabase/values.yaml
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
# https://github.com/metabase/metabase/issues/2754
# NOTE: Should remain 1
replicaCount: 1
podAnnotations: {}
image:
repository: metabase/metabase
tag: v0.31.2

0 comments on commit 6f97e47

Please sign in to comment.