1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 21:46:22 +01:00
Files
openshift-docs/modules/gitops-disable-dex.adoc
Srivaralakshmi 11ee1a72ec Document GitOps v1.9 Release Notes
Fixing SME review comments and uncommenting new assembly for Shipra's PR

Adding the  info in the Supported must-gather images table

Updated the kam CLI version

Adding CVE update and nitpick fix

updated date in RN errata
2023-06-12 06:58:18 +00:00

29 lines
824 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.10.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"
...
----