Uninstalling Connectware
Uninstall Connectware on Docker or Kubernetes.
This page explains how to completely remove Connectware from your Docker or Kubernetes environment.
Make sure to back up any important data before proceeding with the uninstallation, as this process will permanently remove all Connectware-related data from your system.
Prerequisites
Helm version 4 is installed on your system.
kubectl is installed on your system.
You know the name and namespace of your Connectware installation (see Obtaining the Name, Namespace, and Version of your Connectware Installation).
Uninstalling Connectware
To uninstall Connectware, use the helm uninstall command on your Connectware on Kubernetes installation:
helm uninstall -n ${NAMESPACE} ${INSTALLATION_NAME}Replace ${NAMESPACE} with the namespace of your Connectware installation and ${INSTALLATION_NAME} with the name of your Connectware installation.
Cleaning up Leftover Resources
Some resources will intentionally not be removed, like some PersistentVolumeClaims, and potentially ConfigMaps and secrets manually created for mTLS.
If you want to completely clean up, for example for a fresh install, use this command to identify the resources:
kubectl -n ${NAMESPACE} get all,cm,secret,pvcKeep in mind that some resources are part of a standard Kubernetes namespace, for example configmap/kube-root-ca.crt or service/kubernetes. After identifying the resources for cleanup, use this command to remove them:
kubectl -n ${NAMESPACE} delete <resource-1> <resource-2> <resource-n>Example
Switch to the root user and navigate to your installation directory:
Stop and remove all Docker containers, networks, and volumes associated with Connectware:
Navigate up one directory level and delete the installation directory:
If you have installed Connectware via systemd, proceed with the next steps.
systemd installations only: Disable the Connectware service.
Remove the service file:
Last updated
Was this helpful?

