File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
namespace : " stackhpc"
2
2
name : " cephadm"
3
- version : " 1.9 .0"
3
+ version : " 1.10 .0"
4
4
readme : " README.md"
5
5
authors :
6
6
- " Michal Nasiadka"
Original file line number Diff line number Diff line change @@ -70,12 +70,13 @@ All Ceph hosts must be in the `ceph` group.
70
70
```
71
71
* RGWs
72
72
* `cephadm_radosgw_services`: List of Rados Gateways services to deploy. `id` is an arbitrary name for the service,
73
- `port` is a TCP port that RGW service should listen on.
73
+ `port` is a TCP port that RGW service should listen on. `count_per_host` is desired number of RGW services per host.
74
74
Example:
75
75
```
76
76
cephadm_radosgw_services:
77
77
- id: myrgw
78
78
port: 8000
79
+ count_per_host: 2
79
80
```
80
81
Note that adding RGW or other services to an existing deployment requires setting `cephadm_bootstrap` variable to *True*.
81
82
Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ service_type: rgw
39
39
service_id: {{ service.id }}
40
40
placement:
41
41
label: rgw
42
+ {% if service .count_per_host is defined %}
43
+ count_per_host: {{ service.count_per_host }}
44
+ {% endif %}
42
45
{% if service .port is defined %}
43
46
spec:
44
47
rgw_frontend_port: {{ service.port }}
You can’t perform that action at this time.
0 commit comments