helm-charts icon indicating copy to clipboard operation
helm-charts copied to clipboard

[ISSUE] Uninstall is not removing config service

Open pand-app opened this issue 4 years ago • 2 comments

Describe the bug When I try to uninstall an instance created with loadBalancer.enabled parameter set to false, service timescaledb-config is not removed.

To Reproduce

  1. helm install timescaledb timescale/timescaledb-single --set "loadBalancer.enabled"=false
  2. helm uninstall timescaledb
  3. kubectl get service | grep config

Expected behavior config service should be removed.

pand-app avatar Mar 11 '21 16:03 pand-app

The config service is recreated by Patroni, and therefore can exist afterwards.

To fully purge all objects belonging to a cluster, see:

https://github.com/timescale/timescaledb-kubernetes/blob/master/charts/timescaledb-single/admin-guide.md#cleanup

feikesteenbergen avatar Mar 17 '21 09:03 feikesteenbergen

For information, we're using terraform in our workflow, so the uninstall is triggered by terraform too, not expected to have to cleanup it manually :/

pand-app avatar Mar 22 '21 10:03 pand-app