Skip to content

learnk8s/kubernetes-challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kubernetes challenge

Deploy this application to Minikube and customise the environment variable to display your name.

$ curl $(minikube ip)
Hello Dan!

Instructions

  • Fork this repo
  • Build the Docker image
  • Write yaml files for a deployment, service, ingress and configmap
  • Deploy your application to Minikube
  • You should be able to curl Minikube's ip and retrieve the string Hello {yourname}!
  • Commit your files to Github

Notes

There's no need to push the Docker image to a Docker registry. You should be able to build and use the image from within Minikube.

You can expose Minikube's Docker daemon with:

$ eval (minkube docker-env)