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 …

Post setup for ubuntu desktop 17.04 vmware vm

vmware config 1 CPU 4G memory 100GB harddisk network: NAT test NAT Internet access oldhorse@ubdev:~$ cat /etc/resolv.conf # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND — YOUR CHANGES WILL BE OVERWRITTEN # 127.0.0.53 is the systemd-resolved stub resolver. # run …

markdown with sublime text

markdown syntax plugin MarkdownEditing is syntax highlighting and Markdown editing plugin. install MarkdownEditing ctrl+shift+p open command panel type Install Package type MarkdownEditing dark theme The default markdown theme is grey, I prefer dark theme so this is how to change it. Preferences/Package settings/Markdown Editing/Markdown (Standard).sublime-settings, add line you can find …

Google cloud hands-on guide: Monitoring Cloud with Stackdriver

Google cloud hands-on guide: Monitoring Cloud with Stackdriver qwiklabs GCP notes. Stackdriver Monitoring provides – dashboards and alerts to review performance metrics for cloud services, virtual machines, and common open source servers such as MongoDB, Apache, Nginx, Elasticsearch, and more – configure using the Stackdriver Monitoring Console create a vm …

Google cloud hands-on guide: Network and HTTP Load Balancers

Google cloud hands-on guide: Network and HTTP Load Balancers qwiklabs GCP notes. two type of load balancer L3 Network Load Balancer L7 HTTP(s) Load Balancer Create multiple web server instances create start script to setup nginx on each vm then create instance template using startup script gcloud compute instance-templates create …

Google cloud hands-on guide: Kubernetes

Google cloud hands-on guide: Kubernetes qwiklabs GCP notes. replicated application running on Kubernetes Hello World node.js app Kubernetes open source project kubernetes.io run on many diff env, vm or bare metal, public or private cloud tasks Create a Node.js server Create a Docker container image Create a container cluster Create …