Sha256: eb5bd365425bae7e6fe466ff3d21623bce688aad0077414397f23fecc05fefd9

Contents?: true

Size: 984 Bytes

Versions: 4

Compression:

Stored size: 984 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: {{ printf "postgresql://%s:%s@%s/%s?pool=5" ( include "hyrax.postgresql.username" . ) ( include "hyrax.postgresql.password" . ) ( include "hyrax.postgresql.host" . ) ( include "hyrax.postgresql.database" . ) | 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

4 entries across 4 versions & 1 rubygems

Version Path
hyrax-4.0.0 chart/hyrax/templates/secrets.yaml
hyrax-4.0.0.rc3 chart/hyrax/templates/secrets.yaml
hyrax-4.0.0.rc2 chart/hyrax/templates/secrets.yaml
hyrax-4.0.0.rc1 chart/hyrax/templates/secrets.yaml