Adding entrypoints to a helm-deployed Traefik on K3s

based on that, you don't use Traefik installed together with K3S, so you don't have to use HelmChartConfig.

I would recommend following the following workshops: Getting started with Traefik on K8S

Here, in detail, we explain how to deploy Traefik by using the official Helm Chart.

Please ensure that you deploy K3S without Traefik.

For my testing purposes, I use K3D on my local workstation and use the following command to spin up a test K3S cluster in docker.

 k3d cluster create testing-traefik --k3s-arg "--disable=traefik@server:0"  -p 80:80@loadbalancer -p 443:443@loadbalancer  --agents 1

then you can create a dedicated namespace and deploy Traefik by using the Helm command you shared.

Hope that helps.