edmamerto
edmamerto

Reputation: 8165

Kubernetes-Helm Charts pointing to a local docker image

I'm playing around wiht minikube and I have a config in my values.yaml defined like this

image:
  repository: mydocker.jfrog.io/mysql

I want it to point a to a local docker image that lives locally mysql/docker/dockerfile I'm not sure what the syntax is can't find it in the docs

Upvotes: 25

Views: 46350

Answers (1)

rajesh-nitc
rajesh-nitc

Reputation: 5539

Check the list of images on your local machine with docker image ls. Let’s say rajesh12/mysql is the image you want to use:

image:
  repository: rajesh12/mysql

Upvotes: 33

Related Questions