Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ππminikube start
- π minikube v1.36.0 on Debian kali-rolling
- β¨ Automatically selected the docker driver. Other choices: vmware, none, ssh
- π Using Docker driver with root privileges
- π Starting "minikube" primary control-plane node in "minikube" cluster
- π Pulling base image v0.0.47 ...
- πΎ Downloading Kubernetes v1.33.1 preload ...
- > gcr.io/k8s-minikube/kicbase...: 502.26 MiB / 502.26 MiB 100.00% 70.27 M
- > preloaded-images-k8s-v18-v1...: 347.04 MiB / 347.04 MiB 100.00% 21.02 M
- π₯ Creating docker container (CPUs=2, Memory=8000MB) ...
- π³ Preparing Kubernetes v1.33.1 on Docker 28.1.1 ...
- βͺ Generating certificates and keys ...
- βͺ Booting up control plane ...
- βͺ Configuring RBAC rules ...
- π Configuring bridge CNI (Container Networking Interface) ...
- π Verifying Kubernetes components...
- βͺ Using image gcr.io/k8s-minikube/storage-provisioner:v5
- π Enabled addons: storage-provisioner, default-storageclass
- ππkubectl get po -A
- NAMESPACE NAME READY STATUS RESTARTS AGE
- kube-system coredns-674b8bbfcf-jwlf4 0/1 Running 0 6s
- kube-system etcd-minikube 1/1 Running 0 12s
- kube-system kube-apiserver-minikube 0/1 Running 0 12s
- kube-system kube-controller-manager-minikube 0/1 Running 0 12s
- kube-system kube-proxy-mqc4q 1/1 Running 0 6s
- kube-system kube-scheduler-minikube 1/1 Running 0 12s
- kube-system storage-provisioner 1/1 Running 0 11s
- ππkubectl create deployment hello-minikube --image=kicbase/echo-server:1.0
- ππkubectl expose deployment hello-minikube --type=NodePort --port=8080
- deployment.apps/hello-minikube created
- service/hello-minikube exposed
- ππkubectl get services
- NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
- hello-minikube NodePort 10.96.173.242 <none> 8080:30783/TCP 9s
- kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 6m24s
- ππkubectl get services hello-minikube
- NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
- hello-minikube NodePort 10.96.173.242 <none> 8080:30783/TCP 17s
- ππminikube service hello-minikube
- |-----------|----------------|-------------|---------------------------|
- | NAMESPACE | NAME | TARGET PORT | URL |
- |-----------|----------------|-------------|---------------------------|
- | default | hello-minikube | 8080 | http://192.168.49.2:30783 |
- |-----------|----------------|-------------|---------------------------|
- π Opening service default/hello-minikube in default browser...
- =====> look into browser
Advertisement
Add Comment
Please, Sign In to add comment