feat(modjo-microservice): minio

This commit is contained in:
devthejo 2023-12-16 23:19:08 +01:00
parent 1f3deec34a
commit 4cda51e07d
Signed by: devthejo
GPG key ID: C04215C627711F5C
2 changed files with 23 additions and 0 deletions

View file

@ -120,6 +120,22 @@ spec:
name: {{ .Values.application.amqp.dsnSecretName }}
key: {{ .Values.application.amqp.dsnSecretKey }}
{{- end }}
{{- if .Values.application.minio.enabled }}
- name: MINIO_ENDPOINT
value: {{ .Values.application.minio.endpoint }}
- name: MINIO_PORT
value: {{ .Values.application.minio.port }}
- name: MINIO_ACCESS_KEY
valueFrom:
secretKeyRef:
name: {{ .Values.application.minio.secretName }}
key: {{ .Values.application.minio.accessKeySecretKey }}
- name: MINIO_SECRET_KEY
valueFrom:
secretKeyRef:
name: {{ .Values.application.minio.secretName }}
key: {{ .Values.application.minio.secretKeySecretKey }}
{{- end }}
{{- if .Values.extraEnv }}
{{ .Values.extraEnv | toYaml | nindent 12 }}
{{- end }}

View file

@ -25,6 +25,13 @@ application:
webhookSecretKey: webhook-secret
adminSecretName: hasura
adminSecretKey: admin
minio:
enabled: false
secretName: minio
endpoint: minio
port: 9000
accessKeySecretKey: access-key
secretKeySecretKey: secret-key
jwt:
enabled: false
secretName: jwks