Mac – how to use kubernetes with Lima-VM
Lima is Linux virtual machines (on macOS, in most cases). Lima launches Linux virtual machines with automatic file sharing and port forwarding (similar to WSL2), read more
Mac docker minikube kubernetes – how to get shell access to container
In case you are running a docket and minikube or some other kubernetes, here are ways to ssh to a container: To ssh to a read more
Mac docker – create getting-started image and run container using it
This tutorial will cover steps to create a docker image for getting-started code and run a container with it. Run a container and clone getting-started read more
Mac kubernetes – create two container pod with shared volume
This tutorial will cover steps to create a pod with nginx container and ubuntu containers with shared volume. Both containers will have the same IP read more
Mac – create a one container pod and get shell to it
Steps to create a pod with nginx container and get shell to it: Create config file shell-demo.yaml Create the podkubectl apply -f shell-demo.yaml Get a read more
Mac – enable and use kubernetes in docker
Mac Docker comes with kubernetes embedded which can be enabled. Here the steps to enable and use kubernetes: Click on settings icons in Docker desktop, read more
minikube kubernetes – how to access service IP endpoint using curl
This tutorial assumers that minikube kubernetes is already installed. Steps to access service IP endpoint using curl Instal minikube and kubernetes create multi replica deployment read more
minikube kubernetes – how to access specific pod IP endpoint using curl
This tutorial assumers that minikube kubernetes is already installed. Steps to access pod IP endpoint using curl Instal minikube and kubernetes create multi replica deployment read more
minikube kubernetes – create deployment with multiple replica and load balancer
This tutorial assumers that minikube kubernetes is already installed. Steps to create a deployment with 3 replicas and load balancer: Start a cluster with 2 read more
Mac m1 – minikube – create multi node kubernetes cluster
This tutorial assumers that minikube kubernetes is already installed. Steps to create multi node cluster : Start a cluster with 2 nodes: minikube start –nodes read more
Mac – kubernetes minikube – create deployment
This tutorial assumers that minikube kubernetes is already installed. Steps to install deploy a test application on kubernetes cluster: create deployment kubectl create deployment hello-minikube read more
Mac m1 – How to Install Kubernetes with minikube
Steps to install kubernetes on Mac m1: Install docker on mac (m1) from the link. Run docker. Install minikube. minikube lets you run Kubernetes on read more
Mac m1 – How to Install Kubernetes with kind
Steps to install kubernetes on Mac m1: Install docker on mac (m1) from the link. Run docker. Install kind. kind lets you run Kubernetes on read more