added oidc env vars for terralist
This commit is contained in:
parent
45da6fc210
commit
44fecf67c2
1 changed files with 25 additions and 7 deletions
|
|
@ -5,17 +5,37 @@ controllers:
|
||||||
app:
|
app:
|
||||||
env:
|
env:
|
||||||
- name: TERRALIST_OAUTH_PROVIDER
|
- name: TERRALIST_OAUTH_PROVIDER
|
||||||
value: github
|
value: oidc
|
||||||
- name: TERRALIST_GH_CLIENT_ID
|
- name: TERRALIST_OI_CLIENT_ID
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: github-app-credentials
|
name: oidc-credentials
|
||||||
key: client-id
|
key: client-id
|
||||||
- name: TERRALIST_GH_CLIENT_SECRET
|
- name: TERRALIST_OI_CLIENT_SECRET
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: github-app-credentials
|
name: oidc-credentials
|
||||||
key: client-secret
|
key: client-secret
|
||||||
|
- name: TERRALIST_OI_AUTHORIZE_URL
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: oidc-credentials
|
||||||
|
key: authorize-url
|
||||||
|
- name: TERRALIST_OI_TOKEN_URL
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: oidc-credentials
|
||||||
|
key: token-url
|
||||||
|
- name: TERRALIST_OI_USERINFO_URL
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: oidc-credentials
|
||||||
|
key: userinfo-url
|
||||||
|
- name: TERRALIST_OI_SCOPE
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: oidc-credentials
|
||||||
|
key: scope
|
||||||
- name: TERRALIST_TOKEN_SIGNING_SECRET
|
- name: TERRALIST_TOKEN_SIGNING_SECRET
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
|
|
@ -26,8 +46,6 @@ controllers:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: terralist-secret
|
name: terralist-secret
|
||||||
key: cookie-secret
|
key: cookie-secret
|
||||||
- name: TERRALIST_GH_ORGANIZATION
|
|
||||||
value: think-ahead-technologies
|
|
||||||
- name: TERRALIST_URL
|
- name: TERRALIST_URL
|
||||||
value: https://terralist.{{{ .Env.DOMAIN_GITEA }}}
|
value: https://terralist.{{{ .Env.DOMAIN_GITEA }}}
|
||||||
- name: TERRALIST_SQLITE_PATH
|
- name: TERRALIST_SQLITE_PATH
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue