0
0
Kubernetesdevops~10 mins

Setting up a local cluster (minikube, kind) in Kubernetes - Interactive Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the command to start a Minikube cluster.

Kubernetes
minikube [1]
Drag options to blanks, or click blank then click option'
Astop
Bstatus
Cdelete
Dstart
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'stop' instead of 'start' will not launch the cluster.
2fill in blank
medium

Complete the command to create a Kubernetes cluster using kind.

Kubernetes
kind [1] cluster
Drag options to blanks, or click blank then click option'
Astop
Bdelete
Ccreate
Dlist
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'delete' will remove a cluster instead of creating one.
3fill in blank
hard

Fix the error in the Minikube start command to specify the driver.

Kubernetes
minikube start --driver=[1]
Drag options to blanks, or click blank then click option'
Adocker
Bminikube
Ckubectl
Dcluster
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'minikube' or 'kubectl' as driver names causes errors.
4fill in blank
hard

Fill both blanks to check the status of a Minikube cluster and get its IP address.

Kubernetes
minikube [1] && minikube [2]
Drag options to blanks, or click blank then click option'
Astatus
Bip
Cstart
Ddelete
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'start' or 'delete' instead of 'status' or 'ip' will not show the desired info.
5fill in blank
hard

Fill all three blanks to create a kind cluster with a specific name and config file.

Kubernetes
kind [1] cluster --name [2] --config [3]
Drag options to blanks, or click blank then click option'
Acreate
Bmycluster
Ckind-config.yaml
Ddelete
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'delete' instead of 'create' will remove clusters instead of creating one.