No git provider found for URL-Coder git with gitlab

I tired to set up gitlab auth and require user to authenticate prior to creating workspace. When I try to create a workspace it does have the "Authenticate with Gitlab" button, but clicking that button doesn't prompt me for any login information. It somehow just says that I'm authenticated. So, once I'm in my workspace and try to run git commands and run a git push it asks for login information but errors with

ERROR: No git provider found for URL "https://<gitlab_private_url>" error: unable to read askpass response from '/home/coder/.coder/coder'

This is my coder helm chart values
- name: CODER_GITAUTH_0_ID value: "primary-gitlab" - name: CODER_GITAUTH_0_TYPE value: "gitlab" - name: CODER_GITAUTH_0_CLIENT_ID value: "***" - name: CODER_GITAUTH_0_CLIENT_SECRET value: "***" - name: CODER_GITAUTH_0_AUTH_URL value: "https://<gitlab_private_url>/oauth/authorize" - name: CODER_GITAUTH_0_TOKEN_URL value: "https://<gitlab_private_url>/oauth/token" - name: CODER_GITAUTH_0_VALIDATE_URL value: "https://<gitlab_private_url>/oauth/token/info"
Was this page helpful?