I have build a simple NodeJS API, then I pushed the Docker Image to a repo and deployed it to my k8s with Helm install which worked fine.
I have set the pullPolicy to Always.
Now what I am trying to do is to update the source code and deploy the updated version of my app. I c the version in all files, built and pushed the new Docker image and tried helm upgrade but it doesn't seems to work out. With helm list revision was deployed but the changes to source code were not deployed. watch kubectl get pods also shows that no new pods were created the way you expect it with kubectl --apply...
I am unable to figure out that what am I doing wrong?