Replies: 1 comment
-
Hi @san6789, what is the value you are setting for |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have deployed the coder service on the OpenShift cluster.
And I am trying to set up OIDC connction between azure and openshift [where i have deployed my coder with helm service]
I did the configuraion based on
https://coder.com/docs/@v2.19.0/admin/users/oidc-auth
but while accesing the url i am getting this error
Started HTTP listener at http://0.0.0.0:8080
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β View the Web UI: β
β http://coderxxxxxxx.aroapp.io β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Encountered an error running "coder server", see "coder server --help" for more information
error: create oidc config: configure oidc provider: Get "https://issuer.corp.com/.well-known/openid-configuration": Forbidden
The configuration i did at the coder deployment.yml file is
value: 'http://coder-oxxxxesteurope.aroapp.io'
- name: CODER_CACHE_DIRECTORY
value: /tmp/coder
- name: CODER_OIDC_ISSUER_URL
value: 'https://issuer.corp.com'
- name: CODER_OIDC_EMAIL_DOMAIN
value: 'zf.com,zf-world.com'
- name: CODER_OIDC_CLIENT_ID
value: xxxxxxxx
- name: CODER_OIDC_CLIENT_SECRET
valueFrom:
secretKeyRef:
name: client-secret
key: client-secret
- name: http_proxy
value: 'http://zxxxxx.com:8080'
- name: https_proxy
value: 'http://xxxxcom:8080'
- name: no_proxy
value: '.zxxxxxxxxx'
Beta Was this translation helpful? Give feedback.
All reactions