Skip to content

Commit 13ebd2c

Browse files
authored
Update version references.
1 parent 16c4807 commit 13ebd2c

File tree

16 files changed

+20
-20
lines changed

16 files changed

+20
-20
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ PLEASE READ THIS MESSAGE.
33
44
Documentation fixes or enhancements:
55
- for Traefik v1: use branch v1.7
6-
- for Traefik v2: use branch v2.1
6+
- for Traefik v2: use branch v2.2
77
88
Bug fixes:
99
- for Traefik v1: use branch v1.7
10-
- for Traefik v2: use branch v2.1
10+
- for Traefik v2: use branch v2.2
1111
1212
Enhancements:
1313
- for Traefik v1: we only accept bug fixes

.semaphoreci/vars

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ else
1010
export VERSION=''
1111
fi
1212

13-
export CODENAME=cantal
13+
export CODENAME=chevrotin
1414

1515
export N_MAKE_JOBS=2
1616

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
global:
1212
- REPO=$TRAVIS_REPO_SLUG
1313
- VERSION=$TRAVIS_TAG
14-
- CODENAME=cantal
14+
- CODENAME=chevrotin
1515
- GO111MODULE=on
1616

1717
script:

docs/content/getting-started/install-traefik.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ You can install Traefik with the following flavors:
99

1010
## Use the Official Docker Image
1111

12-
Choose one of the [official Docker images](https://hub.docker.com/_/traefik) and run it with the [sample configuration file](https://raw.githubusercontent.com/containous/traefik/v2.1/traefik.sample.toml):
12+
Choose one of the [official Docker images](https://hub.docker.com/_/traefik) and run it with the [sample configuration file](https://raw.githubusercontent.com/containous/traefik/v2.2/traefik.sample.toml):
1313

1414
```bash
1515
docker run -d -p 8080:8080 -p 80:80 \
16-
-v $PWD/traefik.toml:/etc/traefik/traefik.toml traefik:v2.1
16+
-v $PWD/traefik.toml:/etc/traefik/traefik.toml traefik:v2.2
1717
```
1818

1919
For more details, go to the [Docker provider documentation](../providers/docker.md)

docs/content/getting-started/quick-start.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ version: '3'
1515
services:
1616
reverse-proxy:
1717
# The official v2 Traefik docker image
18-
image: traefik:v2.1
18+
image: traefik:v2.2
1919
# Enables the web UI and tells Traefik to listen to docker
2020
command: --api.insecure=true --providers.docker
2121
ports:

docs/content/migration/v1-to-v2.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Then any router can refer to an instance of the wanted middleware.
104104

105105
```yaml tab="K8s IngressRoute"
106106
# The definitions below require the definitions for the Middleware and IngressRoute kinds.
107-
# https://docs.traefik.io/v2.1/reference/dynamic-configuration/kubernetes-crd/#definitions
107+
# https://docs.traefik.io/v2.2/reference/dynamic-configuration/kubernetes-crd/#definitions
108108
apiVersion: traefik.containo.us/v1alpha1
109109
kind: Middleware
110110
metadata:
@@ -275,7 +275,7 @@ Then, a [router's TLS field](../routing/routers/index.md#tls) can refer to one o
275275

276276
```yaml tab="K8s IngressRoute"
277277
# The definitions below require the definitions for the TLSOption and IngressRoute kinds.
278-
# https://docs.traefik.io/v2.1/reference/dynamic-configuration/kubernetes-crd/#definitions
278+
# https://docs.traefik.io/v2.2/reference/dynamic-configuration/kubernetes-crd/#definitions
279279
apiVersion: traefik.containo.us/v1alpha1
280280
kind: TLSOption
281281
metadata:
@@ -355,7 +355,7 @@ To apply a redirection, one of the redirect middlewares, [RedirectRegex](../midd
355355
```yaml tab="Docker"
356356
# ...
357357
traefik:
358-
image: traefik:v2.1
358+
image: traefik:v2.2
359359
command:
360360
- --entrypoints.web.address=:80
361361
- --entrypoints.websecure.address=:443

docs/content/providers/docker.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ See the sections [Docker API Access](#docker-api-access) and [Docker Swarm API A
261261
262262
services:
263263
traefik:
264-
image: traefik:v2.1 # The official v2 Traefik docker image
264+
image: traefik:v2.2 # The official v2 Traefik docker image
265265
ports:
266266
- "80:80"
267267
volumes:

docs/content/providers/kubernetes-ingress.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ providers:
357357
### Further
358358

359359
If one wants to know more about the various aspects of the Ingress spec that Traefik supports,
360-
many examples of Ingresses definitions are located in the tests [data](https://github.com/containous/traefik/tree/v2.1/pkg/provider/kubernetes/ingress/fixtures) of the Traefik repository.
360+
many examples of Ingresses definitions are located in the tests [data](https://github.com/containous/traefik/tree/v2.2/pkg/provider/kubernetes/ingress/fixtures) of the Traefik repository.
361361

362362
## LetsEncrypt Support with the Ingress Provider
363363

docs/content/routing/providers/kubernetes-crd.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The Kubernetes Ingress Controller, The Custom Resource Way.
4343
serviceAccountName: traefik-ingress-controller
4444
containers:
4545
- name: traefik
46-
image: traefik:v2.1
46+
image: traefik:v2.2
4747
args:
4848
- --log.level=DEBUG
4949
- --api

docs/content/user-guides/crd-acme/03-deployments.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
serviceAccountName: traefik-ingress-controller
2727
containers:
2828
- name: traefik
29-
image: traefik:v2.1
29+
image: traefik:v2.2
3030
args:
3131
- --api.insecure
3232
- --accesslog

docs/content/user-guides/crd-acme/k3s.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ node:
2626
- K3S_CLUSTER_SECRET=somethingtotallyrandom
2727
volumes:
2828
# this is where you would place a alternative traefik image (saved as a .tar file with
29-
# 'docker save'), if you want to use it, instead of the traefik:v2.1 image.
29+
# 'docker save'), if you want to use it, instead of the traefik:v2.2 image.
3030
- /sowewhere/on/your/host/custom-image:/var/lib/rancher/k3s/agent/images

docs/content/user-guides/docker-compose/acme-dns/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.3"
33
services:
44

55
traefik:
6-
image: "traefik:v2.1"
6+
image: "traefik:v2.2"
77
container_name: "traefik"
88
command:
99
#- "--log.level=DEBUG"

docs/content/user-guides/docker-compose/acme-dns/docker-compose_secrets.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ secrets:
1313
services:
1414

1515
traefik:
16-
image: "traefik:v2.1"
16+
image: "traefik:v2.2"
1717
container_name: "traefik"
1818
command:
1919
#- "--log.level=DEBUG"

docs/content/user-guides/docker-compose/acme-http/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.3"
33
services:
44

55
traefik:
6-
image: "traefik:v2.1"
6+
image: "traefik:v2.2"
77
container_name: "traefik"
88
command:
99
#- "--log.level=DEBUG"

docs/content/user-guides/docker-compose/acme-tls/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.3"
33
services:
44

55
traefik:
6-
image: "traefik:v2.1"
6+
image: "traefik:v2.2"
77
container_name: "traefik"
88
command:
99
#- "--log.level=DEBUG"

docs/content/user-guides/docker-compose/basic-example/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.3"
33
services:
44

55
traefik:
6-
image: "traefik:v2.1"
6+
image: "traefik:v2.2"
77
container_name: "traefik"
88
command:
99
#- "--log.level=DEBUG"

0 commit comments

Comments
 (0)