This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
==> oneview: Configuring and enabling network interfaces... | |
DEBUG ssh: Checking whether SSH is ready... | |
DEBUG ssh: Re-using SSH connection. | |
INFO ssh: SSH is ready! | |
DEBUG ssh: Re-using SSH connection. | |
INFO ssh: Execute: (sudo=false) | |
DEBUG ssh: Exit status: 0 | |
DEBUG guest: Searching for cap: configure_networks | |
DEBUG guest: Checking in: redhat | |
DEBUG guest: Found cap: configure_networks in redhat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"fmt" | |
"net" | |
"net/http" | |
"os/exec" | |
"runtime" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ uname -a | |
Linux <name> 5.3.0-29-generic #31-Ubuntu SMP Fri Jan 17 17:27:26 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux | |
$ kind --version | |
kind version 0.7.0 | |
$ docker --version | |
Docker version 19.03.3, build a872fc2f86 | |
$ for i in $(seq 1 10);do kind create cluster --name kfc-${i}; done | |
Creating cluster "kfc-1" ... | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in $(seq 1 10);do kind create cluster --name kind-${i} | tee -a kind.log; done | |
Creating cluster "kind-1" ... | |
✓ Ensuring node image (kindest/node:v1.17.0) 🖼 | |
✓ Preparing nodes 📦 | |
✓ Writing configuration 📜 | |
✓ Starting control-plane 🕹️ | |
✓ Installing CNI 🔌 | |
✓ Installing StorageClass 💾 | |
Set kubectl context to "kind-kind-1" | |
You can now use your cluster with: |