Deploying a K3S cluster and used the below command to deploy without traefik.
curl -sfL https://get.k3s.io | K3S_KUBECONFIG_MODE="644" INSTALL_K3S_EXEC="server --disable=traefik" sh -
The command worked for the most part except there is still (1) lingering pod and (1) job.batch:
pod/helm-install-traefik-crd-k4l7r
job.batch/helm-install-traefik-crd
Is there any method to fully remove all remnants of traefik? Note I’ve ensured to delete both the traefik.yaml and the traefik helm charts:
$ sudo ls -al /var/lib/rancher/k3s/server/manifests/
total 32
drwx------ 3 root root 4096 Nov 27 00:48 .
drwx------ 7 root root 4096 Nov 27 00:42 ..
-rw------- 1 root root 1108 Nov 27 00:42 ccm.yaml
-rw------- 1 root root 4372 Nov 27 00:42 coredns.yaml
-rw------- 1 root root 3636 Nov 27 00:42 local-storage.yaml
drwx------ 2 root root 4096 Nov 25 15:06 metrics-server
-rw------- 1 root root 1039 Nov 27 00:42 rolebindings.yaml
$ kubectl api-resources --api-group=helm.cattle.io
NAME SHORTNAMES APIVERSION NAMESPACED KIND
helmchartconfigs helm.cattle.io/v1 true HelmChartConfig
helmcharts helm.cattle.io/v1 true HelmChart