Files
Adam Kocoloski 1ef58a8a1c [incubator/couchdb] Promote CouchDB chart to stable (#14925)
* Copy incubator chart for CouchDB to stable

Signed-off-by: Adam Kocoloski <kocolosk@apache.org>

* Bump stable chart version and update docs

Signed-off-by: Adam Kocoloski <kocolosk@apache.org>

* Deprecate incubator chart for CouchDB

Signed-off-by: Adam Kocoloski <kocolosk@apache.org>

* Update helper image

This is just a base image update to clear out a few CVEs.

Signed-off-by: Adam Kocoloski <kocolosk@apache.org>
2019-08-15 08:00:35 -07:00

17 lines
571 B
YAML

{{- if .Values.createAdminSecret -}}
apiVersion: v1
kind: Secret
metadata:
name: {{ template "couchdb.fullname" . }}
labels:
app: {{ template "couchdb.fullname" . }}
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
release: "{{ .Release.Name }}"
heritage: "{{ .Release.Service }}"
type: Opaque
data:
adminUsername: {{ template "couchdb.defaultsecret" .Values.adminUsername }}
adminPassword: {{ template "couchdb.defaultsecret" .Values.adminPassword }}
cookieAuthSecret: {{ template "couchdb.defaultsecret" .Values.cookieAuthSecret }}
{{- end -}}