-
|
I was wondering if it is supported/possible to authenticate ArgoCD to external clusters via generic OIDC (client credentials flow). For clusters using OIDC authentication, this is (if I'm not mistaken)
There is a command called Thanks in advance and cheers! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
I found out: It is possible using the
The above example assumes the ArgoCD client ID in variable |
Beta Was this translation helpful? Give feedback.
I found out: It is possible using the
execProviderConfigstruct. There, a command must be specified which returns anExecCredentialstruct (see Kubernetes docs for details) to stdout. This can be achieved bykubelogina.k.a.kubectl oidc-login, the standard plugin for OIDC authentication:argocd-serverandargocd-applica…