mirror of https://github.com/ceph/ceph-ansible.git
cephadm-adopt: fix "Update the placement of radosgw hosts" task
spec file template conditions were incorrect
Signed-off-by: Teoman ONAY <tonay@ibm.com>
(cherry picked from commit e85060cb67
)
pull/7581/head
parent
4a981a2019
commit
c2407f4c52
|
@ -942,10 +942,14 @@
|
|||
count_per_host: {{ radosgw_num_instances }}
|
||||
hosts:
|
||||
- {{ ansible_facts['nodename'] }}
|
||||
{{ "networks: rgw_subnet" if rgw_subnet is defined }}
|
||||
{% if rgw_subnet is defined %}
|
||||
networks: "{{ rgw_subnet }}"
|
||||
{% endif %}
|
||||
spec:
|
||||
rgw_frontend_port: {{ radosgw_frontend_port }}
|
||||
{{ "ssl: true" if radosgw_frontend_ssl_certificate }}
|
||||
{% if radosgw_frontend_ssl_certificate is defined %}
|
||||
{{ "ssl: true" }}
|
||||
{% endif %}
|
||||
extra_container_args:
|
||||
- -v
|
||||
- /etc/pki/ca-trust:/etc/pki/ca-trust:ro
|
||||
|
|
Loading…
Reference in New Issue