Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the command to start a Minikube cluster.
Kubernetes
minikube [1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'stop' instead of 'start' will not launch the cluster.
✗ Incorrect
The minikube start command launches a local Kubernetes cluster.
2fill in blank
mediumComplete the command to create a Kubernetes cluster using kind.
Kubernetes
kind [1] cluster Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'delete' will remove a cluster instead of creating one.
✗ Incorrect
The kind create cluster command creates a new local Kubernetes cluster.
3fill in blank
hardFix 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'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'minikube' or 'kubectl' as driver names causes errors.
✗ Incorrect
The --driver=docker option tells Minikube to use Docker as the virtualization driver.
4fill in blank
hardFill 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'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'start' or 'delete' instead of 'status' or 'ip' will not show the desired info.
✗ Incorrect
minikube status shows the cluster status, and minikube ip shows its IP address.
5fill in blank
hardFill 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'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'delete' instead of 'create' will remove clusters instead of creating one.
✗ Incorrect
This command creates a kind cluster named 'mycluster' using the config file 'kind-config.yaml'.