Turn Your Vehicle Into a Smart Earning Asset

While you’re not driving your car or bike, it can still be working for you. MOTOSHARE helps you earn passive income by connecting your vehicle with trusted renters in your city.

🚗 You set the rental price
🔐 Secure bookings with verified renters
📍 Track your vehicle with GPS integration
💰 Start earning within 48 hours

Join as a Partner Today

It’s simple, safe, and rewarding. Your vehicle. Your rules. Your earnings.

Minikube Tutorials: Minikube Basic Workflow

Step 1 – Start your cluster

From a terminal with administrator access (but not logged in as root), run:

$ minikube start –driver=virtualbox

If minikube fails to start, see the drivers page for help setting up a compatible container or virtual-machine manager.

  • https://minikube.sigs.k8s.io/docs/drivers/

Step 2 – Interact with your cluster

If you already have kubectl installed, you can now use it to access your shiny new cluster:

$ kubectl get po -A

Alternatively, minikube can download the appropriate version of kubectl and you should be able to use it like this:

$ minikube kubectl — get po -A

You can also make your life easier by adding the following to your shell config:

alias kubectl=”minikube kubectl –“

Step 3 – Interact with your cluster

Initially, 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:

$ minikube dashboard

Step 4 – Manage your cluster

Pause Kubernetes without impacting deployed applications:

$ minikube pause

Unpause a paused instance:

$ minikube unpause

Halt the cluster:

$ minikube stop

Change the default memory limit (requires a restart):

$ minikube config set memory 9001
Code language: JavaScript (javascript)

Browse the catalog of easily installed Kubernetes services:

$ minikube addons list
Code language: PHP (php)

Create a second cluster running an older Kubernetes release:

$ minikube start -p aged --kubernetes-version=v1.16.1

Delete all of the minikube clusters:

 $ minikube delete --allCode language: JavaScript (javascript)
Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.

0
Would love your thoughts, please comment.x
()
x