I've installed Traefik in a Kubernetes cluster using Helm charts. Till now all the EntryPoints were defined in the values.yaml file of the chart, so all of them were created after installing Traefik. I was wondering if it is possible to create EntryPoints manually in a Kubernetes cluster in the same way you can create Routers (IngressRoutes) or Middlewares.
You can create new entrypoints by setting new ports in the values.yaml file loaded by helm.
Moreover, it is not possible to create entrypoints dynamically. They are part of the traefik static configuration unlike routers, services and middlewares.