K
Q

Kubernetes-Helm Charts pointing to a local docker image

July 1, 2019

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

-- edmamerto
kubernetes
kubernetes-helm

1 Answer

July 1, 2019

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
-- user7022485
Source: StackOverflow