Disable Portworx Central components
If you installed the Portworx Central components using Helm, you can use Helm to disable them as well.
Prerequisites
Ensure the Portworx Central components are installed.
Disable
You can disable the Portworx Backup, license server, and monitoring service components individually or all together using one command.
Before disabling each Portworx Central component or all at once, you must perform the following steps.
Update your Helm reports.
helm repo update
Retrieve all custom values you used during install. Generate a YAML file, replacing the values of the
<namespace>
and<release-name>
parameters to match your environment.helm get values --namespace <namespace> <release-name> -o yaml > values.yaml
Delete the post install hook job.
kubectl delete job pxcentral-post-install-hook --namespace <namespace>
After performing the above steps, disable each component.
Disable Portworx Backup.
helm upgrade <release-name> <repo-name>/px-central --namespace <namespace> -f values.yaml --set pxbackup.enabled=false
Disable license server.
helm upgrade <release-name> <repo-name>/px-central --namespace <namespace> -f values.yaml --set pxlicenseserver.enabled=false
Disable monitoring service.
helm upgrade <release-name> <repo-name>/px-central --namespace <namespace> -f values.yaml --set pxmonitor.enabled=false
Disable all Portworx Central components at once.
helm upgrade <release-name> <repo-name>/px-central --namespace <namespace> -f values.yaml --set pxbackup.enabled=false,pxmonitor.enabled=false,pxlicenseserver.enabled=false