bc81690d9f
ArgoCD had no external ingress and only local admin auth. This exposes argocd-server behind the traefik-internal gateway and enables Authentik SSO, so operators log in with their identity and group membership. - argocd-cm: set url and oidc.config (Authentik issuer, argocd client, openid/profile/email scopes); client secret resolved from the argocd-oidc Secret via $argocd-oidc:client_secret - argocd-rbac-cm: match on the groups claim; default role:readonly; map the argocd-admins Authentik group to role:admin - argocd-cmd-params-cm: server.insecure=true so argocd-server serves HTTP behind the TLS-terminating gateway - Add Gateway + HTTPRoutes for argocd.k8s.syd1.au.unkin.net (mirrors grafana) - Add VaultAuth + VaultStaticSecret sourcing the OIDC client secret from kv/kubernetes/namespace/argocd/default/oauth-credentials into the argocd-oidc Secret (labelled part-of=argocd) Note: the OIDC client secret must be seeded in Vault out of band, and argocd-server needs a one-time rollout restart to pick up server.insecure.
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
---
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github_user/argoproj/argo-cd/refs/tags/v3.3.2/manifests/ha/install.yaml
|
|
- https://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/kubernetes-sigs/gateway-api/releases/download/v1.5.1/standard-install.yaml
|
|
- au-syd1-apps.yaml
|
|
- argocd-self-app.yaml
|
|
# Authentik OIDC: expose argocd-server and wire the client secret from Vault.
|
|
- argocd-server-gateway.yaml
|
|
- argocd-server-httproute.yaml
|
|
- argocd-oidc-vaultauth.yaml
|
|
- argocd-oidc-vaultstaticsecret.yaml
|
|
|
|
patches:
|
|
- path: argocd-cm-patch.yaml
|
|
target:
|
|
kind: ConfigMap
|
|
name: argocd-cm
|
|
- path: argocd-rbac-cm-patch.yaml
|
|
target:
|
|
kind: ConfigMap
|
|
name: argocd-rbac-cm
|
|
- path: argocd-cmd-params-cm-patch.yaml
|
|
target:
|
|
kind: ConfigMap
|
|
name: argocd-cmd-params-cm
|
|
- path: argocd-tls-certs-patch.yaml
|
|
target:
|
|
kind: ConfigMap
|
|
name: argocd-tls-certs-cm
|
|
- path: argocd-repo-server-vault-ca-patch.yaml
|
|
target:
|
|
kind: Deployment
|
|
name: argocd-repo-server
|