Updates minor version or updating values.yaml

ARTIFACTORY: Installation Quick Start Guide - Helm

AuthorFullName__c
Paul Pan
articleNumber
000005199
ft:sourceType
Salesforce
FirstPublishedDate
2022-01-13T19:22:21Z
lastModifiedDate
2024-03-13T08:56:30Z
VersionNumber
14
For regular upgrade command when you just want to upgrade values:
helm upgrade --install artifactory-ha \
  --set databaseUpgradeReady=true \
  --set postgresql.postgresqlPassword=${POSTGRES_PASSWORD} \
  --set postgresql.postgresqlUsername=${POSTGRES_USERNAME} \
  -f values-new.yaml \
  --namespace artifactory-ha jfrog/artifactory-ha --version 107.21.12

If you want to upgrade the artifactory version but the version does not come default with the current chart version. Note that you must always pass the version explicitly after doing this to avoid falling back to an old version:

helm upgrade --install artifactory-ha \
  --set databaseUpgradeReady=true \
  --set postgresql.postgresqlPassword=${POSTGRES_PASSWORD} \
  --set postgresql.postgresqlUsername=${POSTGRES_USERNAME} \
  --set global.versions.artifactory= 7.21.13\
  -f values.yaml \
  --namespace artifactory-ha jfrog/artifactory-ha --version 107.21.12