mirror of
https://github.com/nold360/hive-apps
synced 2024-11-16 18:49:30 +00:00
change(argocd): reenabled authentik oidc
This commit is contained in:
parent
351d66311b
commit
f5c1546766
2 changed files with 20 additions and 14 deletions
|
@ -15,7 +15,7 @@ apps:
|
|||
keys:
|
||||
- admin.password
|
||||
- server.secretkey
|
||||
- oidc.auth0.clientSecret
|
||||
- dex.authentik.clientSecret
|
||||
- webhook.gogs.secret
|
||||
- name: ca-cert
|
||||
keys:
|
||||
|
|
|
@ -111,26 +111,32 @@ server:
|
|||
|
||||
oidc.config: |
|
||||
name: Authentik
|
||||
type: oidc
|
||||
id: authentik
|
||||
issuer: https://auth.dc/application/o/argocd/
|
||||
clientID: 0c149045b7b87eb80e41fcdd3e788476472d7316
|
||||
clientSecret: $oidc.auth0.clientSecret
|
||||
requestedScopes: ["openid", "profile", "email", "groups"]
|
||||
clientID: 3793eb413f1d568b9e9cf82fd4d8d596b2867ec5
|
||||
clientSecret: $dex.authentik.clientSecret
|
||||
scopes:
|
||||
- openid
|
||||
- profile
|
||||
- email
|
||||
- groups
|
||||
|
||||
rbacConfig:
|
||||
policy.csv: |
|
||||
g, ArgoCDAdmins, role:admin
|
||||
|
||||
# Mount public CA cert
|
||||
volumeMounts: []
|
||||
# - name: certificate
|
||||
# mountPath: /etc/ssl/certs/ca.crt
|
||||
# subPath: ca
|
||||
# Mount vault CA cert
|
||||
volumeMounts:
|
||||
- name: certificate
|
||||
mountPath: /etc/ssl/certs/vault-ca-certificates.crt
|
||||
subPath: ca
|
||||
|
||||
volumes: []
|
||||
# - name: certificate
|
||||
# secret:
|
||||
# secretName: ca-cert
|
||||
# defaultMode: 420
|
||||
volumes:
|
||||
- name: certificate
|
||||
secret:
|
||||
secretName: ca-cert
|
||||
defaultMode: 420
|
||||
|
||||
additionalApplications: []
|
||||
|
||||
|
|
Loading…
Reference in a new issue