mirror of https://github.com/ceph/ceph-ansible.git
igw: Fix default api port
The default igw api port is 5000 in the manual setup docs and ceph-iscsi-config package so this syncs up ansible. Signed-off-by: Mike Christie <mchristi@redhat.com>pull/3312/head
parent
b523a44a1a
commit
a10853c5f8
|
@ -72,7 +72,7 @@ dummy:
|
|||
# Optional settings related to the CLI/API service
|
||||
#api_user: admin
|
||||
#api_password: admin
|
||||
#api_port: 5001
|
||||
#api_port: 5000
|
||||
#api_secure: false
|
||||
#loop_delay: 1
|
||||
#trusted_ip_list: 192.168.122.1
|
||||
|
|
|
@ -154,7 +154,7 @@
|
|||
|
||||
- name: open iscsi ports
|
||||
firewalld:
|
||||
port: "5001/tcp"
|
||||
port: "5000/tcp"
|
||||
zone: "{{ ceph_iscsi_firewall_zone }}"
|
||||
source: "{{ public_network }}"
|
||||
permanent: true
|
||||
|
|
|
@ -64,7 +64,7 @@ rbd_pool_size: ""
|
|||
# Optional settings related to the CLI/API service
|
||||
api_user: admin
|
||||
api_password: admin
|
||||
api_port: 5001
|
||||
api_port: 5000
|
||||
api_secure: false
|
||||
loop_delay: 1
|
||||
trusted_ip_list: 192.168.122.1
|
||||
|
|
Loading…
Reference in New Issue