diff options
author | Redouane Kachach <rkachach@ibm.com> | 2024-09-12 15:57:07 +0200 |
---|---|---|
committer | Redouane Kachach <rkachach@ibm.com> | 2024-09-12 16:14:57 +0200 |
commit | 25e0a323ad2016e88393e38721b1e4d392bcc126 (patch) | |
tree | d436c633d6a42bdd56c4f6fc797ee4d5f9a3c832 /src/pybind/mgr/cephadm/templates | |
parent | Merge pull request #59634 from rkachach/fix_issue_67934 (diff) | |
download | ceph-25e0a323ad2016e88393e38721b1e4d392bcc126.tar.xz ceph-25e0a323ad2016e88393e38721b1e4d392bcc126.zip |
mgr/cephadm: renaming whitelist_domains field to allowlist_domains
Fixes: https://tracker.ceph.com/issues/68052
Signed-off-by: Redouane Kachach <rkachach@ibm.com>
Diffstat (limited to 'src/pybind/mgr/cephadm/templates')
-rw-r--r-- | src/pybind/mgr/cephadm/templates/services/oauth2-proxy/oauth2-proxy.conf.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pybind/mgr/cephadm/templates/services/oauth2-proxy/oauth2-proxy.conf.j2 b/src/pybind/mgr/cephadm/templates/services/oauth2-proxy/oauth2-proxy.conf.j2 index 20ca8cb6504..c8d9f920adf 100644 --- a/src/pybind/mgr/cephadm/templates/services/oauth2-proxy/oauth2-proxy.conf.j2 +++ b/src/pybind/mgr/cephadm/templates/services/oauth2-proxy/oauth2-proxy.conf.j2 @@ -34,4 +34,4 @@ set_xauthrequest= true # Secret value for encrypting cookies. cookie_secret= "{{ cookie_secret }}" email_domains= "*" -whitelist_domains= "{{ whitelist_domains | join(',') }}" +whitelist_domains= "{{ allowlist_domains | join(',') }}" |