1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00
Files
openshift-docs/modules/gitops-disable-dex.adoc
Debargho Ghosh 8ebabeede9 updated spec.sso
made review changes

made review changes

added module for new procedure

made review changes

made review changes

made review changes

made review changes

made review canges
2022-07-06 17:04:34 +00:00

29 lines
823 B
Plaintext

// Module is included in the following assemblies:
//
// * configuring-sso-for-argo-cd-using-dex
:_content-type: PROCEDURE
[id="gitops-disable-dex_{context}"]
= Disabling Dex
Dex is installed by default for all the Argo CD instances created by the Operator. You can configure {gitops-title} to use Dex as the SSO authentication provider by setting the `.spec.dex` parameter.
[IMPORTANT]
====
In {gitops-title} v1.6.0, `DISABLE_DEX` is deprecated and is planned to be removed in {gitops-title} v1.9.0. Consider using the `.spec.sso.dex` parameter instead. See "Enabling or disabling Dex using .spec.sso".
====
.Procedure
* Set the environmental variable `DISABLE_DEX` to `true` in the YAML resource of the Operator:
+
[source,yaml]
----
...
spec:
config:
env:
- name: DISABLE_DEX
value: "true"
...
----