Hi,
I install the Traefik by using Helm Charts as the following: -
helm repo add traefik https://helm.traefik.io/traefik
helm repo update
helm install traefik traefik/traefik
After that I've tried to uninstall by using the following command: -
helm uninstall traefik
Anyhow there are some resources existing after the uninstalling as the following: -
kubectl get crd | grep traefik
# Example output
ingressroutes.traefik.containo.us 2021-07-30T06:28:16Z
ingressroutetcps.traefik.containo.us 2021-07-30T06:28:16Z
ingressrouteudps.traefik.containo.us 2021-07-30T06:28:16Z
middlewares.traefik.containo.us 2021-07-30T06:28:16Z
middlewaretcps.traefik.containo.us 2021-07-30T06:28:16Z
serverstransports.traefik.containo.us 2021-07-30T06:28:16Z
tlsoptions.traefik.containo.us 2021-07-30T06:28:16Z
tlsstores.traefik.containo.us 2021-07-30T06:28:16Z
traefikservices.traefik.containo.us 2021-07-30T09:52:23Z
kubectl api-resources | grep traefik
# Example output
ingressroutes traefik.containo.us/v1alpha1 true IngressRoute
ingressroutetcps traefik.containo.us/v1alpha1 true IngressRouteTCP
ingressrouteudps traefik.containo.us/v1alpha1 true IngressRouteUDP
middlewares traefik.containo.us/v1alpha1 true Middleware
middlewaretcps traefik.containo.us/v1alpha1 true MiddlewareTCP
serverstransports traefik.containo.us/v1alpha1 true ServersTransport
tlsoptions traefik.containo.us/v1alpha1 true TLSOption
tlsstores traefik.containo.us/v1alpha1 true TLSStore
traefikservices traefik.containo.us/v1alpha1 true TraefikService
Could you please help to advise the proper way to uninstall and clean up the Traefik Helm Charts?
Regards,
Charlee Ch.