https://github.com/traefik/traefikee-helm-chart
This chart installs the Traefik Enterprise on a Kubernetes cluster, an optional subchart of Traefik Mesh is also bundled
https://github.com/traefik/traefikee-helm-chart
helm-chart traefik-enterprise
Last synced: 5 months ago
JSON representation
This chart installs the Traefik Enterprise on a Kubernetes cluster, an optional subchart of Traefik Mesh is also bundled
- Host: GitHub
- URL: https://github.com/traefik/traefikee-helm-chart
- Owner: traefik
- License: apache-2.0
- Created: 2021-10-27T07:01:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-11-20T17:56:38.000Z (7 months ago)
- Last Synced: 2026-01-20T01:06:12.365Z (5 months ago)
- Topics: helm-chart, traefik-enterprise
- Language: Smarty
- Homepage: https://doc.traefik.io/traefik-enterprise/
- Size: 362 KB
- Stars: 3
- Watchers: 8
- Forks: 12
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Traefik Enterprise Helm Chart
## Introduction
This chart installs Traefik Enterprise on a Kubernetes cluster.
### Prerequisites
- 
- 
You can check your Helm version by running `helm version`.
## Installation
Please check the [detailed installation page](https://doc.traefik.io/traefik-enterprise/installing/kubernetes/helm/) in the Traefik Enterprise documentation.
## Upgrading
Before you upgrade, make sure to check the [changelog](./traefikee/Changelog.md) and the [release notes](https://doc.traefik.io/traefik-enterprise/kb/release-notes/).
New major version indicates that there is an incompatible breaking change.
### 1. Upgrading CRDs (When it's needed)
With Helm v3, CRDs created by this chart can not be updated, please consult the [Helm documentation about CRDs](https://helm.sh/docs/chart_best_practices/custom_resource_definitions) for more information.
> Please read carefully release notes of this chart before upgrading CRDs!
```shell
kubectl apply --server-side --force-conflicts -k https://github.com/traefik/traefikee-helm-chart/traefikee/crds/
```
### 2. Upgrade the Helm chart
Update the Helm chart repository:
```shell
helm repo update
```
Validate the current versions of the chart and Traefik Enterprise:
```shell
helm search repo traefik/traefikee
```
Upgrade Traefik Enterprise:
```shell
helm upgrade traefikee traefik/traefikee
```
## Uninstall
```shell
helm uninstall traefikee
```
If Traefik Enterprise was installed in a specific namespace (for example `traefikee`)
```shell
helm uninstall traefikee --namespace traefikee
```
For complete uninstall, secrets and pvc created by Traefik Enterprise should be also cleaned:
```shell
k delete pvc data-$CLUSTERNAME-controller-0
k delete pvc plugin-data-$CLUSTERNAME-controller-0
k delete secret $CLUSTERNAME-registry-token
k delete secret $CLUSTERNAME-tokens
```
## License
Distributed under the Apache v2 License.
See [LICENSE](./LICENSE) for more information.