Guacamole provides Administration of resources (Hardware, VMs, etc.) from the Web.
- values.yaml file used for installing with Helm w/ default entries.
- application.yaml file used with ArgoCD to automate management of the service.
- db-values.yaml file used for installing the database with Helm w/ default entries.
- db-application.yaml file used with ArgoCD to automate management of the service's database.
- Make modifications to application.yaml and db-application.yaml files to fit your environment.
- Install the db-application and wait for the database to appear.
kubectl apply -f db-application.yaml
- Install the db-application and wait for the service to appear.
kubectl apply -f application.yaml
- Modify the db-values.yaml file to suit your environment. You can store the values file locally or remotely in a private repository.
- Add database chart to Helm.
helm repo add bitnami https://charts.bitnami.com/bitnami
- Install the database using Helm. Either leave out the
--version
parameter OR change the value to match the CHART version you require.
helm upgrade --install guacamole-db bitnami/postgresql -n postgres --create-namespace -f db-values.yaml --version 15.5.24 --atomic
- Modify the values.yaml file to suit your environment. You can store the values file locally or remotely in a private repository. Note that if change the user, password, or database in db-values.yaml, you will need to reflect those changes in this values file.
- Add service chart to Helm.
helm repo add guacamole https://charts.beryju.org
- Install the service using Helm. Either leave out the
--version
parameter OR change the value to match the CHART version you require.
helm upgrade --install guacamole guacamole/guacamole -n guacamole --create-namespace -f values.yaml --version 1.4.1 --atomic
Update the application file for the service/database to use the version you want OR modify the Application in the WebUI by editing the details of the Application and change the chart version to the version you want to upgrade to.
Replay the installation steps above.
Uninstalling the application files directly does not function currently. You have to navigate to the Applications in the ArgoCD and delete the applications from there. Select 'Foreground'(preferred) or 'Background' to remove the resources OR 'Non-cascading' if you wish to uninstall the application but leave the services there. Start with the Service Application and then move to the Database application.
- Uninstall the chart using Helm.
helm uninstall guacamole -n guacamole
- Uninstall the database using Helm.
helm uninstall guacamole-db -n postgres