How to Build Your K8S Service
Today we will use minikube tool build own K8S Service,Minikube is local Kubernetes, focusing on making it easy to learn and develop for Kubernetes.
All you need is Docker (or similarly compatible) container or a Virtual Machine environment, and Kubernetes is a single command away:
1 | minikube start |
What you’ll need
1、2 CPUs or more
2、2GB of free memory
3、20GB of free disk space
4、Internet connection
5、Container or virtual machine manager, such as: Docker, QEMU, Hyperkit, Hyper-V, KVM, Parallels, Podman, VirtualBox, or VMware Fusion/Workstation
1、Install MiniKube
Click on the buttons that describe your taget platform. For other architectures, see the minikute release page for a complete list of minikube binaries.
To install the lastes minikube stable release on x86-64 Linux using binary download.
1 | curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 |
Other platform, you can see it Minikube Install Doc
2、 Minikube Start Your Cluster
From a terminal with administrator access(but not logged in as root) run:
1 | minikube start |
If minikube fails to start,see the drivers page for help setting up a compatible container or virtual-machine manager.
3、Interact with your cluster
If you already have kubectl installed (see document), you can now use it to access your shiny new cluster:
1 | kubectl get po -A |
Alternatively,minikube can download the appropriate verson of kubectl and you should be able to use it like this:
1 | minikube kubectl --get po -A |
You can also make your life easier by adding the follwing to your shelf config:
1 | alias kubectl="minikube kubectl ---" |
Initialy, some services such as the storage-provisioner, may not yet be in a Running state. This is a normal condition during cluster bring-up, and will resolve itself momentarily. For additional insight into your cluster state, minikube bundles the Kubernetes Dashboard, allowing you to get easily acclimated to your new environment:
1 | minikube dashboard |
4、Deploy Applications
4.1 Deploy Service
Create a sample deployment and expose it on port 8080:
1 | kubectl create deployment hello-minikube --image=kicbase/echo-server:1.0 |
It may take a moment, but your deployment will soon show up when you run:
1 | kubectl get services hello-minikube |
The easiest way to access this service is to let minikube launch a web browser for you:
1 | minikube service hello-minikube |
Alternatively, use kubectl to forward the port:
1 | kubectl port-forward service/hello-minikube 7080:8080 |
Tada! Your application is now available at http://localhost:7080/.
You should be able to see the request metadata in the application output. Try changing the path of the request and observe the changes. Similarly, you can do a POST request and observe the body show up in the output.
4.2 Deploy LoadBalancer
To access a LoadBalancer deployment, use the “minikube tunnel” command. Here is an example deployment:
1 | kubectl create deployment balanced --image=kicbase/echo-server:1.0 |
In another window, start the tunnel to create a routable IP for the ‘balanced’ deployment:
1 | minikube tunnel |
To find the routable IP, run this command and examine the EXTERNAL-IP column:
1 | kubectl get services balanced |
Your deployment is now available at
4.3 Deploy Ingress
Enable ingress addon:
1 | minikube addons enable ingress |
The following example creates simple echo-server services and an Ingress object to route to these services.
1 | kind: Pod |
Apply the contents
1 | kubectl apply -f https://storage.googleapis.com/minikube-site-examples/ingress-example.yaml |
Wait for ingress address
1 | kubectl get ingress |
Note for Docker Desktop Users:
To get ingress to work you’ll need to open a new terminal window and run minikube tunnel and in the following step use 127.0.0.1 in place of
Now verify that the ingress works
1 | $ curl <ip_from_above>/foo |