-
We have deployed ArgoCD on several AKS clusters using Helm and are currently migrating from Azure SSO to GitHub SSO. We have it working for one instance but after replicating the config for another argo instance we get an error when logging in We're stuck trying to figure out where the disconnect could possibly be since our clusters are built through terraform and should be configured exactly the same except for some naming conventions. Just wondering if anyone else has seen anything similar. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Sounds like you're having trouble reaching the kubernetes api, doesn't sound very dex related 🤔 |
Beta Was this translation helpful? Give feedback.
yeah we realized after the fact that the argo instance that was working wasn't running any istio sidecar proxies because it didn't have istio injection enabled. the one that wasn't working DID have sidecar proxies because the namespace had the
istio-injection=enabled
label so we found that it's a TLS issue. thanks so much for your response though!