Secrets created:

export BASIC_AUTH_USER=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.basicAuth.secretName }} -o jsonpath="{.data.username}" | base64 -d)
export BASIC_AUTH_PASSWORD=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.basicAuth.secretName }} -o jsonpath="{.data.password}" | base64 -d)

export RABBITMQ_ADMIN_USER=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.rabbitmq.secretName }} -o jsonpath="{.data.rabbitmq-admin-user}" | base64 -d)
export RABBITMQ_ADMIN_PASSWORD=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.rabbitmq.secretName }} -o jsonpath="{.data.rabbitmq-admin-password}" | base64 -d)

export POSTGRES_USERNAME=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.postgres.secretName }} -o jsonpath="{.data.postgres-user}" | base64 -d)
export POSTGRES_PASSWORD=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.postgres.secretName }} -o jsonpath="{.data.postgres-password}" | base64 -d)

export PGADMIN_USERNAME=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.postgres.secretName }} -o jsonpath="{.data.pgadmin-email}" | base64 -d)
export PGADMIN_PASSWORD=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.postgres.secretName }} -o jsonpath="{.data.pgadmin-password}" | base64 -d)

export MINIO_USERNAME=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.minio.secretName }} -o jsonpath="{.data.root-user}" | base64 -d)
export MINIO_PASSWORD=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.minio.secretName }} -o jsonpath="{.data.root-password}" | base64 -d)

export ELASTICSEARCH_USERNAME=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.elasticsearch.secretName }} -o jsonpath="{.data.username}" | base64 -d)
export ELASTICSEARCH_PASSWORD=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.elasticsearch.secretName }} -o jsonpath="{.data.password}" | base64 -d)

export GRAFANA_USER=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.grafana.secretName }} -o jsonpath="{.data.username}" | base64 -d)
export GRAFANA_PASSWORD=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.grafana.secretName }} -o jsonpath="{.data.password}" | base64 -d)

export JUPYTER_TOKEN=$(kubectl get secret --namespace "{{ .Release.Namespace }}" {{ .Values.jupyter.secretName }} -o jsonpath="{.data.token}" | base64 -d)