This Helm chart will install Traefik (docs, code) and is based from the official Helm chart (blog, examples).
# adds helm chart repository
helm repo add traefik https://traefik.github.io/charts
helm repo update
# searches for the latest version
helm search repo -l traefik
# manual: update version number in Chart.yaml
# updates Chart.lock
helm dependency update
# checks the Kubernetes objects generated from the chart
helm template . -f values.yaml > temp.yaml
# applies the manifest (add "--debug > output.yaml" in case of issue)
helm upgrade --install -f values.yaml --create-namespace \
--namespace traefik traefik .
# checks everything is ok
#TODO
# if needed, deletes the chart
helm uninstall traefik -n traefik
# checks existings resources
#TODO