]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
python-common: Improve mgmt-gateway descriptions in service_spec.py
authorVille Ojamo <14869000+bluikko@users.noreply.github.com>
Mon, 24 Nov 2025 09:56:48 +0000 (16:56 +0700)
committerVille Ojamo <14869000+bluikko@users.noreply.github.com>
Thu, 18 Dec 2025 14:53:23 +0000 (21:53 +0700)
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>
src/python-common/ceph/deployment/service_spec.py

index b1f46d83ee4624d3dde7ebf0000ddde7c4c3779c..d73bd64835581b3c939414391188307feef10f3e 100644 (file)
@@ -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