Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.15 KB

README.md

File metadata and controls

44 lines (31 loc) · 1.15 KB

Traefik

This Helm chart will install Traefik (docs, code) and is based from the official Helm chart (blog, examples).

How to update the chart

# 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

How to deploy manually

# 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

How to investigate

# checks existings resources
#TODO