mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-13 11:00:06 -03:30
Start counting k8s nodes from 2
First node is our master node.
This commit is contained in:
parent
60fa68e5f7
commit
4c6f85b8ae
@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
nodes=""
|
||||
i=0
|
||||
i=1
|
||||
for nodeip in `cat /root/nodes` ; do
|
||||
i=$(( $i+1 ))
|
||||
nodes+=" node${i}[ansible_ssh_host=${nodeip},ip=${nodeip}]"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user