From 131d5654983faacd13b547e3a77689423b7b0b2b Mon Sep 17 00:00:00 2001 From: Romain GUICHARD <rguichard@vsense.fr> Date: Wed, 19 Sep 2018 14:50:38 +0200 Subject: [PATCH] fix openstack cli syntax (#3353) * fix openstack cli syntax * 'allowed-address' is also a dash, not an underscore * multiple allowed-address multiple allowed-address must be in separate parameters --- docs/openstack.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/openstack.md b/docs/openstack.md index ca1e89ae1..ef2d1dcf8 100644 --- a/docs/openstack.md +++ b/docs/openstack.md @@ -39,7 +39,7 @@ Then you can use the instance ids to find the connected [neutron](https://wiki.o Given the port ids on the left, you can set the two `allowed_address`(es) in OpenStack. Note that you have to allow both `kube_service_addresses` (default `10.233.0.0/18`) and `kube_pods_subnet` (default `10.233.64.0/18`.) # allow kube_service_addresses and kube_pods_subnet network - openstack port set 5662a4e0-e646-47f0-bf88-d80fbd2d99ef --allowed_address ip_address=10.233.0.0/18,ip_address=10.233.64.0/18 - openstack port set e5ae2045-a1e1-4e99-9aac-4353889449a7 --allowed_address ip_address=10.233.0.0/18,ip_address=10.233.64.0/18 + openstack port set 5662a4e0-e646-47f0-bf88-d80fbd2d99ef --allowed-address ip-address=10.233.0.0/18 --allowed-address ip-address=10.233.64.0/18 + openstack port set e5ae2045-a1e1-4e99-9aac-4353889449a7 --allowed-address ip-address=10.233.0.0/18 --allowed-address ip-address=10.233.64.0/18 Now you can finally run the playbook. -- GitLab