Skip to content

Managing external resources through traefik #26

Discussion options

You must be logged in to vote

@RovoMe

Hello my friend,

I have suffered through the same issue trying to setup external services through traefik in the k3s cluster.

Turns out... traefik does not allow external services by default and any ingresses referring to services you setup that point to external stuff will never show up in the traefik dashboard...

UNLESS...

You toggle these flags here in the values.yaml file when installing traefik with helm.

providers:
  kubernetesCRD:
    allowExternalNameServices: true # added this line
  kubernetesIngress:
    enabled: true
    allowExternalNameServices: true # added this line

You can reinstall with the updated values.yaml file using helm upgrade --namespace=traefik traefik t…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by timothystewart6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #18 on November 13, 2022 22:26.