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

web: Allow provenance access in web template

parent 6334c989
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,11 @@ data:
"configurationRef" .configuration.searchConfigurationRef
"Values" .Values) | nindent 4 }}
{{- end -}}
{{- if .configuration.provenanceConfigurationRef }}
{{- include "swh.service.fromYaml" (dict "service" "provenance"
"configurationRef" .configuration.provenanceConfigurationRef
"Values" .Values) | nindent 4 }}
{{- end -}}
{{- if .configuration.schedulerConfigurationRef }}
{{- include "swh.service.fromYaml" (dict "service" "scheduler"
"configurationRef" .configuration.schedulerConfigurationRef
......
......@@ -330,6 +330,10 @@ rpcGunicornLoggingConfig: {}
# server_url: https://my.keycloak.instance/auth/
# realm_name: myrealm
# provenanceConfiguration:
# cls: remote
# url: http://<provenance-service-url>
# countersConfiguration:
# cls: redis
# host: localhost:6379
......@@ -918,6 +922,7 @@ web:
# giveConfigurationRef: giveConfiguration
# throttlingConfigurationRef: throttlingConfiguration
# keycloakConfigurationRef: keycloakConfiguration
# provenanceConfigurationRef: provenanceConfiguration
# extraConfig:
# debug: false
# history_counters_url: http://elastichost.swh.org:5011/counters_history/history.json
......
......@@ -437,6 +437,10 @@ webThrottling:
limiter_rate:
default: 120/h
provenanceConfiguration:
cls: remote
url: http://provenance-test:5014
web:
enabled: false
deployments:
......@@ -491,6 +495,7 @@ web:
webhooksConfigurationRef: webhooksConfiguration
# throttlingConfigurationRef: webThrottling
# keycloakConfigurationRef: fakeKeycloakConfiguration
provenanceConfigurationRef: provenanceConfiguration
ingress:
enabled: true
className: nginx
......
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