def uninstall()

in subcommands/uninstall.py [0:0]


def uninstall(config_manager):
    """Uninstall the monitoring setup.

    Arguments:
        config_manager {AbstractConfigManager} -- ConfigManager that contains the
          configuration of the monitoring setup to be uninstalled.
    """
    namespace = config_manager.get_config()["namespace"]
    for chart in HELM_CHARTS:
        _remove_helm_deployment(chart, namespace)
    _delete_namespace(namespace)