mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-26 21:33:14 +00:00
Deprecate LDAP auth (#1969)
deprecate external auth related configuration issue: https://issues.redhat.com/browse/AAP-29476
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
- route_tls_secret
|
||||
# ingress_tls_secret is deprecated in favor of ingress_hosts.tls_secret
|
||||
- ingress_tls_secret
|
||||
# LDAP is deprecated
|
||||
- ldap_cacert_secret
|
||||
- bundle_cacert_secret
|
||||
- ee_pull_credentials_secret
|
||||
|
||||
@@ -442,11 +442,11 @@ projects_storage_access_mode: ReadWriteMany
|
||||
|
||||
ca_trust_bundle: "/etc/pki/tls/certs/ca-bundle.crt"
|
||||
|
||||
# Secret to lookup that provides the LDAP CACert trusted bundle
|
||||
# Secret to lookup that provides the LDAP CACert trusted bundle (Deprecated)
|
||||
#
|
||||
ldap_cacert_secret: ''
|
||||
|
||||
# Secret to lookup that provides the LDAP bind password
|
||||
# Secret to lookup that provides the LDAP bind password (Deprecated)
|
||||
ldap_password_secret: ''
|
||||
|
||||
# Secret to lookup that provides the custom CA trusted bundle
|
||||
|
||||
@@ -44,12 +44,12 @@
|
||||
- name: Include secret key configuration tasks
|
||||
include_tasks: secret_key_configuration.yml
|
||||
|
||||
- name: Load LDAP CAcert certificate
|
||||
- name: Load LDAP CAcert certificate (Deprecated)
|
||||
include_tasks: load_ldap_cacert_secret.yml
|
||||
when:
|
||||
- ldap_cacert_secret != ''
|
||||
|
||||
- name: Load ldap bind password
|
||||
- name: Load ldap bind password (Deprecated)
|
||||
include_tasks: load_ldap_password_secret.yml
|
||||
when:
|
||||
- ldap_password_secret != ''
|
||||
|
||||
@@ -1,4 +1,11 @@
|
||||
---
|
||||
- name: Log LDAP deprecated message if applicable
|
||||
debug:
|
||||
msg: |
|
||||
[DEPRECATION WARNING] LDAP is deprecated, but ldap_cacert_secret configuration is set.
|
||||
when:
|
||||
- ldap_cacert_secret != ''
|
||||
|
||||
- name: Retrieve LDAP CA Certificate Secret
|
||||
k8s_info:
|
||||
kind: Secret
|
||||
|
||||
@@ -1,4 +1,11 @@
|
||||
---
|
||||
- name: Log LDAP deprecated message if applicable
|
||||
debug:
|
||||
msg: |
|
||||
[DEPRECATION WARNING] LDAP is deprecated, but ldap_password_secret configuration is set.
|
||||
when:
|
||||
- ldap_password_secret != ''
|
||||
|
||||
- name: Retrieve LDAP bind password Secret
|
||||
k8s_info:
|
||||
kind: Secret
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
postgres_initdb_args: '--auth-host=scram-sha-256'
|
||||
postgres_host_auth_method: 'scram-sha-256'
|
||||
# LDAP is deprecated
|
||||
ldap_cacert_ca_crt: ''
|
||||
bundle_ca_crt: ''
|
||||
projects_existing_claim: ''
|
||||
|
||||
Reference in New Issue
Block a user