From 4cc53f085c419686b971f18e61dd8ce8794e637c Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 12 Apr 2021 17:21:22 -0400 Subject: [PATCH] doc/cephadm/rgw: clean up example spec Signed-off-by: Sage Weil (cherry picked from commit 99b9f032de1d3611058caa748b5256ea2134446f) --- doc/cephadm/rgw.rst | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/doc/cephadm/rgw.rst b/doc/cephadm/rgw.rst index 02317f5bee8f2..31084ff7d0a12 100644 --- a/doc/cephadm/rgw.rst +++ b/doc/cephadm/rgw.rst @@ -141,22 +141,17 @@ It is a yaml format file with the following properties: - host2 - host3 spec: - backend_service: rgw.something # adjust to match your existing RGW service - virtual_ip: / # ex: 192.168.20.1/24 - frontend_port: # ex: 8080 - monitor_port: # ex: 1967, used by haproxy for load balancer status - ssl_cert: ex: - [ - "-----BEGIN CERTIFICATE-----", - "MIIDZTCCAk2gAwIBAgIUClb9dnseOsgJWAfhPQvrZw2MP2kwDQYJKoZIhvcNAQEL", - .... - "-----END CERTIFICATE-----", - "-----BEGIN PRIVATE KEY-----", - .... - "sCHaZTUevxb4h6dCEk1XdPr2O2GdjV0uQ++9bKahAy357ELT3zPE8yYqw7aUCyBO", - "aW5DSCo8DgfNOgycVL/rqcrc", - "-----END PRIVATE KEY-----" - ] + backend_service: rgw.something # adjust to match your existing RGW service + virtual_ip: / # ex: 192.168.20.1/24 + frontend_port: # ex: 8080 + monitor_port: # ex: 1967, used by haproxy for load balancer status + ssl_cert: | # optional: SSL certificate and key + -----BEGIN CERTIFICATE----- + ... + -----END CERTIFICATE----- + -----BEGIN PRIVATE KEY----- + ... + -----END PRIVATE KEY----- where the properties of this service specification are: -- 2.39.5