diff --git a/.circleci/config.yml b/.circleci/config.yml index 0e2ab403..39f30353 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -160,6 +160,18 @@ jobs: - run: test/e2e-skipper-tests.sh - run: test/e2e-skipper-cleanup.sh + e2e-traefik-testing: + machine: true + steps: + - checkout + - attach_workspace: + at: /tmp/bin + - run: test/container-build.sh + - run: test/e2e-kind.sh + - run: test/e2e-traefik.sh + - run: test/e2e-traefik-tests.sh + - run: test/e2e-skipper-cleanup.sh + push-helm-charts: docker: - image: circleci/golang:1.14 @@ -232,6 +244,9 @@ workflows: - e2e-skipper-testing: requires: - build-binary + - e2e-traefik-testing: + requires: + - build-binary - push-container: requires: - build-binary @@ -241,6 +256,7 @@ workflows: - e2e-nginx-testing - e2e-linkerd-testing - e2e-skipper-testing + - e2e-traefik-testing filters: branches: only: diff --git a/test/e2e-traefik.sh b/test/e2e-traefik.sh index 74b9ec9d..5405465c 100755 --- a/test/e2e-traefik.sh +++ b/test/e2e-traefik.sh @@ -9,7 +9,7 @@ echo '>>> Creating traefik namespace' kubectl create ns traefik echo '>>> Installing Traefik' -# helm repo add traefik https://helm.traefik.io/traefik +helm repo add traefik https://helm.traefik.io/traefik cat <