Update Portworx configuration using Helm
If you need to update the configuration of Portworx, you can modify the parameters in the px_install_values.yaml
file specified during the Helm installation. This allows you to change the values of configuration parameters.
-
Create or edit the
px_install_values.yaml
file to update the desired parameters.vim px_install_values.yaml
monitoring:
telemetry: false
grafana: true -
Apply the changes using the following command:
helm upgrade <px-release> portworx/portworx -n <portworx> -f px_install_values.yaml
Release "px-release" has been upgraded. Happy Helming!
NAME: px-release
LAST DEPLOYED: Thu Sep 26 06:42:20 2024
NAMESPACE: portworx
STATUS: deployed
REVISION: 2
TEST SUITE: None
NOTES:
Your Release is named "px-release"
Portworx Pods should be running on each node in your cluster.
Portworx would create a unified pool of the disks attached to your Kubernetes nodes.
No further action should be required and you are ready to consume Portworx Volumes as part of your application data requirements. -
Verify that the new values have taken effect.
helm get values <px-release> -n <portworx>
You should see all the custom configurations passed using the
px_install_values.yaml
file.