Maybe we could add some noticeable tips for the user with the upgrade operations.
Once you install the kuma with helm at the beginning with helm install --set ***, then if you just use helm upgrade and you'll find that the previous --set configuration would be kept.
Once you install the kuma with helm at the beginning with helm install -f ./values.yaml, then if you just use helm upgrade without values.yaml and you'll find that the previous customized configurations defined in the values.yaml would be removed and changed to the default configuration.
It's also not recommended to use --set ** and -f ./values.yaml with helm at the beginning installation.
Description
Maybe we could add some noticeable tips for the user with the upgrade operations.
helm install --set ***
, then if you just usehelm upgrade
and you'll find that the previous--set
configuration would be kept.helm install -f ./values.yaml
, then if you just usehelm upgrade
withoutvalues.yaml
and you'll find that the previous customized configurations defined in thevalues.yaml
would be removed and changed to thedefault
configuration.--set **
and-f ./values.yaml
with helm at the beginning installation.https://helm.sh/docs/helm/helm_upgrade/