mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-05-07 01:17:39 -02:30
Fix IPS array variable expansion
$IPS only expands to the first ip address in the array:
justin@box:~$ declare -a IPS=(10.10.1.3 10.10.1.4 10.10.1.5)
justin@box:~$ echo $IPS
10.10.1.3
justin@box:~$ echo ${IPS[@]}
10.10.1.3 10.10.1.4 10.10.1.5
This commit is contained in:
@@ -38,7 +38,7 @@ Example inventory generator usage:
|
|||||||
```
|
```
|
||||||
cp -r inventory my_inventory
|
cp -r inventory my_inventory
|
||||||
declare -a IPS=(10.10.1.3 10.10.1.4 10.10.1.5)
|
declare -a IPS=(10.10.1.3 10.10.1.4 10.10.1.5)
|
||||||
CONFIG_FILE=my_inventory/inventory.cfg python3 contrib/inventory_builder/inventory.py ${IPS}
|
CONFIG_FILE=my_inventory/inventory.cfg python3 contrib/inventory_builder/inventory.py ${IPS[@]}
|
||||||
```
|
```
|
||||||
|
|
||||||
Starting custom deployment
|
Starting custom deployment
|
||||||
|
|||||||
Reference in New Issue
Block a user