feat(modjo-microservice): minio
This commit is contained in:
parent
1f3deec34a
commit
4cda51e07d
2 changed files with 23 additions and 0 deletions
|
@ -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 }}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue