committed by
GitHub
4 changed files with 41 additions and 6 deletions
@ -0,0 +1,28 @@ |
|||
apiVersion: v1 |
|||
kind: ConfigMap |
|||
metadata: |
|||
name: {{ .Release.Name }}-{{ .Chart.Name }}-configmap |
|||
data: |
|||
dynamic-env.json: |- |
|||
{ |
|||
"production": "true", |
|||
"application": { |
|||
"baseUrl": "{{ .Values.config.selfUrl }}", |
|||
"name": "EShopOnAbp", |
|||
"logoUrl": "" |
|||
}, |
|||
"oAuthConfig": { |
|||
"issuer": "{{ .Values.config.authServer.authority }}", |
|||
"redirectUri": "{{ .Values.config.selfUrl }}", |
|||
"requireHttps": "{{ .Values.config.authServer.requireHttpsMetadata }}", |
|||
"clientId": "Web", |
|||
"responseType": "code", |
|||
"scope": "offline_access openid profile email phone IdentityService AdministrationService" |
|||
}, |
|||
"apis": { |
|||
"default": { |
|||
"url": "{{ .Values.config.gatewayUrl }}", |
|||
"rootNamespace": "EShopOnAbp" |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue