fix(hasura-engine) Require a JWK URL
This commit is contained in:
parent
3c1ceef36d
commit
5003b434d1
2 changed files with 3 additions and 1 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
name: hasura-engine
|
name: hasura-engine
|
||||||
description: GraphQL Engine to make data accessible over a GraphQL API
|
description: GraphQL Engine to make data accessible over a GraphQL API
|
||||||
type: application
|
type: application
|
||||||
version: 0.1.2
|
version: 0.1.3
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Tommy Skaug
|
- name: Tommy Skaug
|
||||||
email: tommy@skaug.me
|
email: tommy@skaug.me
|
||||||
|
|
|
@ -35,6 +35,8 @@ spec:
|
||||||
value: "{{ .Values.features.console }}"
|
value: "{{ .Values.features.console }}"
|
||||||
- name: HASURA_GRAPHQL_DEV_MODE
|
- name: HASURA_GRAPHQL_DEV_MODE
|
||||||
value: "{{ .Values.features.devMode }}"
|
value: "{{ .Values.features.devMode }}"
|
||||||
|
- name: HASURA_GRAPHQL_JWT_SECRET
|
||||||
|
value: "{\"jwk_url\": \"{{ .Values.jwt.jwksUrl }}\"}"
|
||||||
envFrom:
|
envFrom:
|
||||||
- secretRef:
|
- secretRef:
|
||||||
name: {{ .Values.envFromSecret }}
|
name: {{ .Values.envFromSecret }}
|
||||||
|
|
Loading…
Reference in a new issue