Deploying To Minishift With Helm

What I wanted to achieve was: Pull a Spring Boot demo-app image from Dockerhub. Install that image to Minishift by using Helm. Step 1: Pull image from Dockerhub docker pull kharulp12/spring_hello_rest_api Step 2: Export Minishifts registry url to a variable for easy re-use export registry=$(minishift openshift registry) Step 3: Tag the image to be used by Minishifts internal image registry. Note the tags version, it is referenced in Helm chart later! ...

February 7, 2021 · 1 min · Jens