You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, each Docker image is created with a new tag. However a new Helm deployment does not deploy the newer Docker image since the chart version always remains the same.
Expected Behavior
Each new Helm chart deployment should deploy the newest version of the application without the need to delete the instances.
Additional context
Solution proposal 1: Use proper Helm release workflow and host the Helm charts within the repo -> hard way.
Solution proposal 2: Add an additional kubectl step in advance to Helm deployment which deletes all the necessary pods -> easy way.
The text was updated successfully, but these errors were encountered:
Description
Currently, each Docker image is created with a new tag. However a new Helm deployment does not deploy the newer Docker image since the chart version always remains the same.
Expected Behavior
Each new Helm chart deployment should deploy the newest version of the application without the need to delete the instances.
Additional context
Solution proposal 1: Use proper Helm release workflow and host the Helm charts within the repo -> hard way.
Solution proposal 2: Add an additional
kubectl
step in advance to Helm deployment which deletes all the necessary pods -> easy way.The text was updated successfully, but these errors were encountered: