Skip to content

traefik/traefikee-helm-chart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation



Traefik Enterprise Helm Chart

Introduction

This chart installs Traefik Enterprise on a Kubernetes cluster.

Prerequisites

  • Kubernetes: >= 1.14.0-0
  • Helm: v3

You can check your Helm version by running helm version.

Installation

Please check the detailed installation page in the Traefik Enterprise documentation.

(back to top)

Upgrading

Before you upgrade, make sure to check the changelog and the 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 for more information.

Please read carefully release notes of this chart before upgrading CRDs!

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:

helm repo update

Validate the current versions of the chart and Traefik Enterprise:

helm search repo traefik/traefikee

Upgrade Traefik Enterprise:

helm upgrade traefikee traefik/traefikee

(back to top)

Uninstall

helm uninstall traefikee

If Traefik Enterprise was installed in a specific namespace (for example traefikee)

helm uninstall traefikee --namespace traefikee

For complete uninstall, secrets and pvc created by Traefik Enterprise should be also cleaned:

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

(back to top)

License

Distributed under the Apache v2 License. See LICENSE for more information.

(back to top)