How can I deploy my local change to Kubernetes in ...
# all-things-deployment
a
How can I deploy my local change to Kubernetes in the cloud? Looking for some documentation and pointers. Thank you!
b
a
Thank you @bumpy-needle-3184 ! Those instructions are for deploying from the public docker images. What I want to do is to deploy my local changes to a cluster.
b
you can try to build image, push it to aws ecr (you will need to create repository first) , update image name and tag in values.yaml in helm to use your image
a
I see, do you have some instructions on how to build these images? How are the images in docker hub got built and pushed?
b
https://docs.docker.com/docker-hub/ - this is the official document from docker on how to do it
s
This contains the docker files we use https://github.com/datahub-project/datahub/tree/master/docker/ This contains the workflows we use https://github.com/datahub-project/datahub/tree/master/.github/workflows This can give you example of how to build the docker images
a
Thank you both!