From: Ville Ojamo <14869000+bluikko@users.noreply.github.com> Date: Mon, 24 Nov 2025 09:56:48 +0000 (+0700) Subject: python-common: Improve mgmt-gateway descriptions in service_spec.py X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=688026733a541ba1827b14e26a5ba0303e8cf3c0;p=ceph-ci.git python-common: Improve mgmt-gateway descriptions in service_spec.py Fix one description that referred to time while the nginx config doesn't configure time. Use consistent language. Remove reference to "multioption" which is a simple bool. Signed-off-by: Ville Ojamo <14869000+bluikko@users.noreply.github.com> --- diff --git a/src/python-common/ceph/deployment/service_spec.py b/src/python-common/ceph/deployment/service_spec.py index b1f46d83ee4..d73bd648355 100644 --- a/src/python-common/ceph/deployment/service_spec.py +++ b/src/python-common/ceph/deployment/service_spec.py @@ -2382,21 +2382,21 @@ class MgmtGatewaySpec(ServiceSpec): extra_entrypoint_args=extra_entrypoint_args, custom_configs=custom_configs ) - #: Is a flag to enable/disable HTTPS. By default set to True. + #: Flag to enable or disable HTTPS. By default set to True. self.ssl = ssl - #: Is a flag to enable SSO auth. Requires oauth2-proxy to be active for SSO authentication. + #: Flag to enable SSO auth. Requires oauth2-proxy to be active for SSO authentication. self.enable_auth = enable_auth #: The port number on which the server will listen self.port = port #: Prefer server ciphers over client ciphers: on | off self.ssl_prefer_server_ciphers = ssl_prefer_server_ciphers - #: A multioption flag to control session tickets: on | off + #: Flag to control session tickets: on | off self.ssl_session_tickets = ssl_session_tickets #: The duration for SSL session timeout. Syntax: time (i.e: 5m) self.ssl_session_timeout = ssl_session_timeout - #: Duration an SSL/TLS session is cached: off | none | [builtin[:size]] [shared:name:size] + #: Nginx SSL/TLS session cache settings: off | none | [builtin[:size]] [shared:name:size] self.ssl_session_cache = ssl_session_cache - #: Flag control server tokens in responses: on | off | build | string + #: Flag to control server tokens in responses: on | off | build | string self.server_tokens = server_tokens #: Flag to enable or disable SSL stapling: on | off self.ssl_stapling = ssl_stapling