This chart installs the Hub agent in a Kubernetes cluster. The agent consists of two deployments: a controller and multiple authentication servers.
- Helm v3 installed:
helm version
kubectl create secret generic hub-agent-token --from-literal=token=XXXX
helm upgrade --install traefik-hub traefik/traefik-hub
You can customize the installation with a values
file.
Complete documentation on all parameters is in the default file
One can check what has changed in the Releases.
# Update repository
helm repo update
# See current Chart & Traefik-Hub version
helm search repo traefik/traefik-hub
# Upgrade Traefik-Hub
helm upgrade traefik-hub traefik/traefik-hub
With Helm v3, CRDs created by this chart can not be updated, cf the Helm Documentation on CRDs. Please read carefully release notes of this chart before upgrading CRDs.
kubectl apply --server-side --force-conflicts -k https://github.com/traefik/traefik-hub-helm-chart/traefik-hub/crds/
helm uninstall traefik-hub
If traefik-hub was installed in a specific namespace
helm uninstall traefik-hub --namespace my-namespace
We use Semantic Versioning.
Pull requests must bump the version
of the chart specified in Chart.yaml:
- The new version must be an alpha pre-release (e.g. 1.6.0-alpha.1)
- The new version must reflect the nature of the change, according to Semver specification.
A chart can be made available publicly by removing the pre-release suffix, this must be done on a separate PR by a maintainer.
Every version bump are published on the Helm Chart Registry.
The latest pre-release version of the Chart can be used by specifying --devel
on the install
and upgrade
commands.
make test