-
Kubelet: v1.22.5+k3s1 Hi, I want to use Github OAuth on ArgoCD, so I followed this documentation and this one. So after creating my OAuth app in Github, I modified the values of my deployed ArgoCD chart (bitnami/argo-cd 3.0.1): values:
dex:
enabled: true
server:
url: "https://argocd.xxx.xx"
config:
dex.config: |
connectors:
- type: github
id: github
name: GitHub
config:
clientID: xxx
clientSecret: "{{ oapp_token }}"
redirectURI: 'https://argocd.xxx.xx/api/dex/callback' The deployment running, I can see the dex pod created but it never starts: NAME READY STATUS RESTARTS AGE
argo-cd-dex-7795ffc9b5-m5krb 0/1 Running 12 (28s ago) 25m Pod description here
I'm running out of idea, do you see something I missed? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @DucretJe, I recommend you going through this dex-github-connector documentation once, it might provide you with more clarity. Also, can you provide with the yaml file that you are using for deployment, might be easier to debug. I can see here there is an error due to CrashLoopBackOff, for this there was a relevant issue opened, check this out if helps. |
Beta Was this translation helpful? Give feedback.
-
I feel like an idiot... Thanks :) |
Beta Was this translation helpful? Give feedback.
I feel like an idiot...
I was using bitnami's chart, using argocd's one works like a charm!
Thanks :)