added oidc env vars
This commit is contained in:
parent
942cf42d1d
commit
8ac4b08bba
1 changed files with 38 additions and 1 deletions
|
|
@ -4,8 +4,45 @@ controllers:
|
|||
containers:
|
||||
app:
|
||||
env:
|
||||
- name: TERRALIST_OI_CLIENT_ID
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: oidc-credentials
|
||||
key: client-id
|
||||
|
||||
- name: TERRALIST_OI_CLIENT_SECRET
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: oidc-credentials
|
||||
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_OAUTH_PROVIDER
|
||||
value: github
|
||||
value: oidc
|
||||
|
||||
- name: TERRALIST_GH_CLIENT_ID
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue