mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-04 08:48:42 +03:00
Start counting k8s nodes from 2
First node is our master node.
This commit is contained in:
@@ -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}]"
|
||||
|
||||
Reference in New Issue
Block a user