Sha256: 5e307b735a2f1d795413a8233cff097663d47070a659a3acadb04fd4cdab5d26
Contents?: true
Size: 812 Bytes
Versions: 9
Compression:
Stored size: 812 Bytes
Contents
apiVersion: v1 kind: Secret metadata: name: {{ include "hyrax.fullname" . }} labels: {{ include "hyrax.labels" . | indent 4 }} type: Opaque data: SECRET_KEY_BASE: {{ randAlphaNum 20 | b64enc | quote }} DB_PASSWORD: {{ include "hyrax.postgresql.password" . | b64enc }} DATABASE_URL: {{ include "hyrax.postgresql.url" . | b64enc }} {{- if .Values.minio.enabled }} MINIO_ACCESS_KEY: {{ .Values.minio.auth.rootUser | b64enc}} MINIO_SECRET_KEY: {{ .Values.minio.auth.rootPassword | b64enc}} {{- end }} {{- if not .Values.solrExistingSecret }} SOLR_ADMIN_PASSWORD: {{ include "hyrax.solr.password" . | b64enc }} {{- end }} {{- if .Values.redis.enabled }} REDIS_PASSWORD: {{ .Values.redis.auth.password | b64enc}} SIDEKIQ_REDIS_URL: {{ include "hyrax.redis.url" . | b64enc }} {{- end }}
Version data entries
9 entries across 9 versions & 1 rubygems