How to upgrade on k8s?
-
Hi,
Provided I have deployed fusionauth on my kubernetes cluster, like this:
helm install --name fusionauth fusionauth/fusionauth --namespace ${AUTH_NAMESPACE} -f values-production.yaml --wait
with e.g. the following configuration
# values-production.yaml image: tag: 1.16.0 database: setupInitialState: false user: AUTH_DB_USERNAME password: AUTH_DB_USERPASSWORD host: AUTH_DATABASE_HOSTNAME port: AUTH_DATABASE_PORT name: AUTH_DATABASE_NAME root: user: AUTH_ROOT_USER password: AUTH_ROOT_PASSWORD search: engine: database ingress: enabled: false
What is my option to upgrade to the latest version (with data in the database)? Do I just uninstall the current helm chart and install the latest one? or is there a better option?
Thanks in advance
-
Hiya,
I'm not sure, haven't done much with k8s. From a quick google, it looks like you might use
helm upgrade
?