Deploy multi nodes k8s cluster using minikube on win10

Deploy multi nodes k8s cluster using minikube on win10 The minikube is single node cluster tool for test/dev purpose. The demand from community asked multi nodes cluster for long time, finally this experimental feature comes out, it seems working well so far. Let’s test bit on win10. install minikube on …

Launch multi node k8s cluster using minikube on macOS

Launch multi node k8s cluster using minikube on macOS The minikube is single node cluster tool for test/dev purpose. The demand from community asked multi nodes cluster for long time, finally this experimental feature comes out, it seems working well so far. install minikube on macOS It is easy to …

docker hands-on guide: docker and minikube on AWS EC2

create new vm in EC2 ssh to ec2 vm from local laptop, $ ssh -i “~/.ssh/dreamcloud.pem” ec2-user@ec2-xxxx.ca-central-1.compute.amazonaws.com __| __|_ ) _| ( / Amazon Linux AMI ___|\___|___| https://aws.amazon.com/amazon-linux-ami/2017.09-release-notes/ 1 package(s) needed for security, out of 6 available Run “sudo yum update” to apply all updates. [ec2-user@ip ~]$ [ec2-user@ip ~]$ uname …

docker hands-on guide: minikube with kvm on ubuntu 17.10 vm

kubectl installation oldhorse@ubdev:~$ curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 64.2M 100 64.2M 0 0 355k 0 0:03:05 0:03:05 –:–:– 83005 oldhorse@ubdev:~$ chmod +x ./kubectl oldhorse@ubdev:~$ sudo mv ./kubectl /usr/local/bin/kubectl verify by oldhorse@ubdev:~$ …

docker hands-on guide: docker and minikube not working when firewall ON

docker toolbox for windows start docker machine msys without issue, $ dm start msys Starting “msys”… (msysdev) Check network to re-create if needed… (msysdev) Waiting for an IP… Machine “msys” was started. Waiting for SSH to be available… Detecting the provisioner… Started machines may have new IP addresses. You may …

docker hands-on guide: minikube with hyper-v on win10 vmware

This is just demo how the minikube works with hyper-v on win10. Use win10 vm because I am still running win7. win10 vm setup: memory 6GB CPU 2 HD 100GB win10 nested virtulazation If want to run hyper-v in win10 on top of win7 vmware, have to enable hyper in …

docker hands-on guide: minikube on ubuntu 17.10 on win7 vmware

minikube is a solution to run a single node Kuberntes cluster inside a VM on laptop. My use case: ubuntu 17.10 on win7 vmware, 4GB memory, 2CPU, 100GB disk run minikube in ubuntu 17.10 vm minikube installation Here is note refer minikube installation guide, and updated few issues. minikube binary …

docker hands-on guide: minikube deployment on portabledevops

minikube setup How to setup minikube on portabledevops, please refer previous post. Assume minikube and kubectl install and run properly, $ which minikube /C/oldhorse/portableapps/dockertoolbox/minikube $ which kubectl /C/oldhorse/portableapps/dockertoolbox/kubectl cluster check version minikube version kubectl version $ minikube version minikube version: v0.24.1 $ kubectl version Client Version: version.Info{Major:”1″, Minor:”8″, GitVersion:”v1.8.0″, GitCommit:”6e937839ac04a38cac63e6a7a306c5d035fe7b0a”, …

docker hands-on guide: minikube on portabledevops

minikube on portabledevops minikube is the solution for single node kubernetes cluster inside a VM. portabledevops is portable devops tool set on windows, I used msys64 as demo on win7 here. minikube features DNS NodePorts ConfigMaps and Secrets Dashboards Container Runtime: Docker, and rkt Enabling CNI (Container Network Interface) Ingress …