diff --git a/stable/traefik/Chart.yaml b/stable/traefik/Chart.yaml index c9dd087a37..af6ed78048 100755 --- a/stable/traefik/Chart.yaml +++ b/stable/traefik/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: traefik # Lock step with the Traefik version, appended with -a, -b, etc. to denote versions of the chart -version: 1.1.2-g +version: 1.1.2-h description: A Traefik based Kubernetes ingress controller with Let's Encrypt support keywords: - traefik diff --git a/stable/traefik/README.md b/stable/traefik/README.md index bbf4fcd20e..f06f3b2c9a 100644 --- a/stable/traefik/README.md +++ b/stable/traefik/README.md @@ -68,6 +68,7 @@ The following tables lists the configurable parameters of the Traefik chart and | Parameter | Description | Default | | ------------------------------- | -------------------------------------------------------------------- | ----------------------------------------- | +| `image` | Traefik image name | `traefik` | | `imageTag` | The version of the official Traefik image to use | `v1.1.2` | | `serviceType` | A valid Kubernetes service type | `LoadBalancer` | | `replicas` | The number of replicas to run; __NOTE:__ Full Traefik clustering with leader election is not yet supported, which can affect any configured Let's Encrypt setup; see Clustering section | `1` | diff --git a/stable/traefik/templates/deployment.yaml b/stable/traefik/templates/deployment.yaml index d54ac53952..6eff0d7593 100644 --- a/stable/traefik/templates/deployment.yaml +++ b/stable/traefik/templates/deployment.yaml @@ -22,7 +22,7 @@ spec: spec: terminationGracePeriodSeconds: 60 containers: - - image: traefik:{{ .Values.imageTag }} + - image: {{ .Values.image }}:{{ .Values.imageTag }} name: {{ template "fullname" . }} resources: requests: diff --git a/stable/traefik/values.yaml b/stable/traefik/values.yaml index efc1f5f9fa..27320099fe 100644 --- a/stable/traefik/values.yaml +++ b/stable/traefik/values.yaml @@ -1,4 +1,5 @@ # Default values for Traefik +image: traefik imageTag: v1.1.2 serviceType: LoadBalancer replicas: 1