I am new to devops and kubernetes and am creating a local development environment. For a hassle-free deployment, I wanted the development environment to be as similar as possible to a deployment environment. So, for this I use minikube for a single node cluster, and this solves a lot of my problems, but right now, according to my information, the developer needs to do the following to see the changes:
- write code locally,
- create a container image and then push it into the container register
- apply the configuration of the kubernets with the updated image of the container.
But the main problem with this approach is the high development time. Can you suggest a better approach with which I can see the changes in real time?
source
share