Skip to content

Commit c0f1e74

Browse files
chore: move to Traefik organization.
Co-authored-by: Romain <[email protected]>
1 parent 9df89e6 commit c0f1e74

File tree

421 files changed

+5249
-5270
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

421 files changed

+5249
-5270
lines changed

.github/CODEOWNERS

-24
This file was deleted.

.goreleaser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ builds:
1111
env:
1212
- CGO_ENABLED=0
1313
ldflags:
14-
- -s -w -X github.com/containous/traefik/v2/pkg/version.Version={{.Version}} -X github.com/containous/traefik/v2/pkg/version.Codename={{.Env.CODENAME}} -X github.com/containous/traefik/v2/pkg/version.BuildDate={{.Date}}
14+
- -s -w -X github.com/traefik/traefik/v2/pkg/version.Version={{.Version}} -X github.com/traefik/traefik/v2/pkg/version.Codename={{.Env.CODENAME}} -X github.com/traefik/traefik/v2/pkg/version.BuildDate={{.Date}}
1515

1616
goos:
1717
- linux

.semaphoreci/setup.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# For personnal CI
2-
# mv /home/runner/workspace/src/github.com/<username>/ /home/runner/workspace/src/github.com/containous/
3-
# cd /home/runner/workspace/src/github.com/containous/traefik/
2+
# mv /home/runner/workspace/src/github.com/<username>/ /home/runner/workspace/src/github.com/traefik/
3+
# cd /home/runner/workspace/src/github.com/traefik/traefik/
44
for s in apache2 cassandra elasticsearch memcached mysql mongod postgresql sphinxsearch rethinkdb rabbitmq-server redis-server; do sudo service $s stop; done
55
sudo swapoff -a
66
sudo dd if=/dev/zero of=/swapfile bs=1M count=3072
@@ -10,7 +10,7 @@ sudo rm -rf /home/runner/.rbenv
1010
sudo rm -rf /usr/local/golang/{1.4.3,1.5.4,1.6.4,1.7.6,1.8.6,1.9.7,1.10.3,1.11}
1111
#export DOCKER_VERSION=18.06.3
1212
source .semaphoreci/vars
13-
if [ -z "${PULL_REQUEST_NUMBER}" ]; then SHOULD_TEST="-*-"; else TEMP_STORAGE=$(curl --silent https://patch-diff.githubusercontent.com/raw/containous/traefik/pull/${PULL_REQUEST_NUMBER}.diff | patch --dry-run -p1 -R || true); fi
13+
if [ -z "${PULL_REQUEST_NUMBER}" ]; then SHOULD_TEST="-*-"; else TEMP_STORAGE=$(curl --silent https://patch-diff.githubusercontent.com/raw/traefik/traefik/pull/${PULL_REQUEST_NUMBER}.diff | patch --dry-run -p1 -R || true); fi
1414
echo ${SHOULD_TEST}
1515
if [ -n "$TEMP_STORAGE" ]; then SHOULD_TEST=$(echo "$TEMP_STORAGE" | grep -Ev '(.md|.yaml|.yml)' || :); fi
1616
echo ${TEMP_STORAGE}

.semaphoreci/vars

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -e
33

4-
export REPO='containous/traefik'
4+
export REPO='traefik/traefik'
55

66
if VERSION=$(git describe --exact-match --abbrev=0 --tags);
77
then

.travis.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ before_deploy:
2929
if [ "$TRAVIS_TAG" ]; then
3030
make release-packages;
3131
fi;
32-
curl -sfL https://raw.githubusercontent.com/containous/structor/master/godownloader.sh | bash -s -- -b "${GOPATH}/bin" ${STRUCTOR_VERSION}
32+
curl -sfL https://raw.githubusercontent.com/traefik/structor/master/godownloader.sh | bash -s -- -b "${GOPATH}/bin" ${STRUCTOR_VERSION}
3333
curl -sSfL https://raw.githubusercontent.com/traefik/mixtus/master/godownloader.sh | sh -s -- -b "${GOPATH}/bin" ${MIXTUS_VERSION}
34-
structor -o containous -r traefik --dockerfile-url="https://raw.githubusercontent.com/containous/traefik/v1.7/docs.Dockerfile" --menu.js-url="https://raw.githubusercontent.com/containous/structor/master/traefik-menu.js.gotmpl" --rqts-url="https://raw.githubusercontent.com/containous/structor/master/requirements-override.txt" --force-edit-url --exp-branch=master --debug;
35-
mixtus --dst-doc-path="./traefik" --dst-owner=traefik --dst-repo-name=doc --git-user-email="[email protected]" --git-user-name=traefiker --src-doc-path="./site" --src-owner=containous --src-repo-name=traefik;
34+
structor -o traefik -r traefik --dockerfile-url="https://raw.githubusercontent.com/traefik/traefik/v1.7/docs.Dockerfile" --menu.js-url="https://raw.githubusercontent.com/traefik/structor/master/traefik-menu.js.gotmpl" --rqts-url="https://raw.githubusercontent.com/traefik/structor/master/requirements-override.txt" --force-edit-url --exp-branch=master --debug;
35+
mixtus --dst-doc-path="./traefik" --dst-owner=traefik --dst-repo-name=doc --git-user-email="[email protected]" --git-user-name=traefiker --src-doc-path="./site" --src-owner=traefik --src-repo-name=traefik;
3636
fi
3737
3838
deploy:
@@ -42,19 +42,19 @@ deploy:
4242
skip_cleanup: true
4343
file_glob: true
4444
on:
45-
repo: containous/traefik
45+
repo: traefik/traefik
4646
tags: true
4747
- provider: script
4848
script: sh script/deploy.sh
4949
skip_cleanup: true
5050
on:
51-
repo: containous/traefik
51+
repo: traefik/traefik
5252
tags: true
5353
- provider: pages
5454
edge: false
5555
github_token: ${GITHUB_TOKEN}
5656
local_dir: site
5757
skip_cleanup: true
5858
on:
59-
repo: containous/traefik
59+
repo: traefik/traefik
6060
all_branches: true

.travis/traefiker_rsa.enc

1.67 KB
Binary file not shown.

0 commit comments

Comments
 (0)