This message was deleted.
# k3s
a
This message was deleted.
c
use values from the values file, the example has probably gotten stale
👀 1
q
While attempting to enable the dashboard, I made changes in the
traefik-custom.yaml
file by adding
dashboard.enabled: true
(as depicted in the screenshot). However, it appears that there is no dashboard option present in the YAML file. If
valuesContent
is derived from that YAML, then
dashboard.enabled: true
should not function as expected since the option isn't defined. What might I be overlooking here?
c
don’t edit the HelmChart resource itself, it’ll go back to default whenever k3s is restarted. You should create a HelmChartConfig resource as described in the docs
the dashboard values are now under ingressRoute.dashboard. it is enabled by default, but only on the
traefik
entrypoint, because the dashboard should not be externally exposed. https://github.com/traefik/traefik-helm-chart/blob/v25.0.0/traefik/values.yaml#L157
👀 1