Skip to content
Snippets Groups Projects
Verified Commit 48a8b595 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

Allow optional 'publicServer' configuration key

Refs. swh/infra/sysadm-environment#4820
parent 4ba124fa
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,9 @@ data:
{{ if .Values.graphql.auth -}}
auth:
server: {{ .Values.graphql.auth.server | default "" }}
{{ if .Values.graphql.auth.publicServer -}}
public_server: {{ .Values.graphql.auth.publicServer }}
{{ end -}}
realm: {{ .Values.graphql.auth.realm | default "" }}
client: {{ .Values.graphql.auth.client | default "swh-web" }}
cache:
......
......@@ -38,6 +38,8 @@ graphql:
auth:
# More information in https://gitlab.softwareheritage.org/swh/devel/swh-auth/-/blob/master/README.rst
# server: https://auth.backend.url/
# optional, when not provided, graphql defaults to use "server" entry
# public_server: https://another.auth.backend.url/
#realm: MyAuthDomain
client: swh-web
# memory:// or memcached://memcached:port
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment