fix: terminology
This commit is contained in:
parent
69b3e25346
commit
c9bd984d4d
2 changed files with 8 additions and 8 deletions
|
@ -110,8 +110,8 @@ spec:
|
|||
- name: DATABASE_URL
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: {{ .Values.application.pg.dsnSecretName }}
|
||||
key: {{ .Values.application.pg.dsnSecretKey }}
|
||||
name: {{ .Values.application.pg.uriSecretName }}
|
||||
key: {{ .Values.application.pg.uriSecretKey }}
|
||||
{{- end }}
|
||||
{{- if .Values.application.hasura.enabled }}
|
||||
- name: HASURA_GRAPHQL_URL
|
||||
|
@ -131,8 +131,8 @@ spec:
|
|||
- name: AMQP_URL
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: {{ .Values.application.amqp.dsnSecretName }}
|
||||
key: {{ .Values.application.amqp.dsnSecretKey }}
|
||||
name: {{ .Values.application.amqp.uriSecretName }}
|
||||
key: {{ .Values.application.amqp.uriSecretKey }}
|
||||
{{- end }}
|
||||
{{- if .Values.application.minio.enabled }}
|
||||
- name: MINIO_ENDPOINT
|
||||
|
|
|
@ -14,12 +14,12 @@ application:
|
|||
logRequests: false
|
||||
pg:
|
||||
enabled: false
|
||||
dsnSecretName: pg
|
||||
dsnSecretKey: dsn
|
||||
uriSecretName: pg
|
||||
uriSecretKey: uri
|
||||
amqp:
|
||||
enabled: false
|
||||
dsnSecretName: amqp
|
||||
dsnSecretKey: dsn
|
||||
uriSecretName: amqp
|
||||
uriSecretKey: uri
|
||||
hasura:
|
||||
enabled: false
|
||||
graphqlUrl: http://hasura:8080/v1/graphql
|
||||
|
|
Loading…
Add table
Reference in a new issue