Skip to content

Commit

Permalink
mgr/dashboard: disable ssl cert verify by default for rgw
Browse files Browse the repository at this point in the history
This is generally not needed, and often not present (due to self-signed
or private CA certs).  Our communication with RGW is using a crendential
we configured ourselves, so there is little lost by tolerating a bad
SSL cert here.

Signed-off-by: Sage Weil <sage@newdream.net>
  • Loading branch information
liewegas committed Jun 15, 2021
1 parent eb23a1a commit 3cf1c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pybind/mgr/dashboard/settings.py
Expand Up @@ -70,7 +70,7 @@ class Options(object):
RGW_API_ADMIN_RESOURCE = Setting('admin', [str])
RGW_API_SCHEME = Setting('http', [str])
RGW_API_USER_ID = Setting('', [dict, str])
RGW_API_SSL_VERIFY = Setting(True, [bool])
RGW_API_SSL_VERIFY = Setting(False, [bool])

# Grafana settings
GRAFANA_API_URL = Setting('', [str])
Expand Down

0 comments on commit 3cf1c66

Please sign in to comment.