mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Add imagePullSecrets for stable/superset chart (#10920)
* Add imagePullSecrets for stable/superset chart Signed-off-by: Don Bowman <db@donbowman.ca> * Inadvertently added this file, removed. Signed-off-by: Don Bowman <db@donbowman.ca>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
f0e722c373
commit
5fd0fa3f99
@@ -1,6 +1,6 @@
|
||||
description: Apache Superset (incubating) is a modern, enterprise-ready business intelligence web application
|
||||
name: superset
|
||||
version: 1.1.0
|
||||
version: 1.1.1
|
||||
appVersion: "0.28.1"
|
||||
keywords:
|
||||
- bi
|
||||
|
||||
@@ -44,6 +44,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `image.repository` | `superset` image repository | `amancevice/superset` |
|
||||
| `image.tag` | `superset` image tag | `0.28.1` |
|
||||
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
|
||||
| `image.pullSecrets` | Secrets for private registry | `[]` |
|
||||
| `configFile` | Content of [`superset_config.py`](https://superset.incubator.apache.org/installation.html) | See values.yaml](./values.yaml) |
|
||||
| `extraConfigFiles` | Content of additional configuration files. Let the dictionary key name represent the name of the file and its value the files content. | `{}` |
|
||||
| `initFile` | Content of init shell script | See [values.yaml](./values.yaml) |
|
||||
|
||||
@@ -38,6 +38,10 @@ spec:
|
||||
{{- else }}
|
||||
emptyDir: {}
|
||||
{{- end }}
|
||||
{{- if .Values.image.pullSecrets }}
|
||||
imagePullSecrets:
|
||||
{{ toYaml .Values.image.pullSecrets | indent 8 }}
|
||||
{{- end }}
|
||||
containers:
|
||||
- name: {{ .Chart.Name }}
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||
|
||||
@@ -10,6 +10,7 @@ image:
|
||||
repository: "amancevice/superset"
|
||||
tag: "0.28.1"
|
||||
pullPolicy: "IfNotPresent"
|
||||
pullSecrets: []
|
||||
|
||||
initFile: |-
|
||||
/usr/local/bin/superset-init --username admin --firstname admin --lastname user --email admin@fab.org --password admin
|
||||
|
||||
Reference in New Issue
Block a user