I Build a simple NodeJS API, pushed the Docker Image to a repo and deployed it to my k8s with Helm install (works perfectly fine).
The pullPolicy is Always
.
Now I want to update the source code and deploy the updated version of my app. I bumped the version in all files, built and pushed the new Docker image und tried helm upgrade
but it seems like nothing happened.
With helm list
I can see that 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...
What did I do wrong?