Skip to content

Commit

Permalink
Move the kubeone-e2e image to Quay (#2463)
Browse files Browse the repository at this point in the history
* Move the kubeone-e2e image to Quay

Signed-off-by: Marko Mudrinić <mudrinic.mare@gmail.com>

* Update jobs to use quay.io/kubermatic/kubeone-e2e

Signed-off-by: Marko Mudrinić <mudrinic.mare@gmail.com>

Signed-off-by: Marko Mudrinić <mudrinic.mare@gmail.com>
  • Loading branch information
xmudrii authored Nov 8, 2022
1 parent 976f7f3 commit bed3be2
Show file tree
Hide file tree
Showing 4 changed files with 939 additions and 939 deletions.
8 changes: 4 additions & 4 deletions .prow/postsubmits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ postsubmits:
branches:
- ^main$
labels:
preset-docker-push: "true"
preset-docker-push-kubermatic: "true"
spec:
containers:
- image: quay.io/kubermatic/build:go-1.19-node-18-kind-0.17-4
Expand All @@ -19,7 +19,7 @@ postsubmits:
- |
set -euo pipefail
start-docker.sh
docker login -u $DOCKERHUB_USERNAME -p $DOCKERHUB_PASSWORD
docker login -u "$QUAY_IO_USERNAME" -p "$QUAY_IO_PASSWORD" quay.io
cd ./hack/images/kubeone-e2e
./release.sh
# docker-in-docker needs privileged mode
Expand Down Expand Up @@ -68,7 +68,7 @@ postsubmits:
containers:
# This must match the go version used for building, else go will rightfully
# not use the cache
- image: kubermatic/kubeone-e2e:v0.1.26
- image: quay.io/kubermatic/kubeone-e2e:v0.1.27
command:
- ./hack/ci/upload-gocache.sh
resources:
Expand All @@ -87,7 +87,7 @@ postsubmits:
containers:
# This must match the go version used for building, else go will rightfully
# not use the cache
- image: kubermatic/kubeone-e2e:v0.1.26
- image: quay.io/kubermatic/kubeone-e2e:v0.1.27
command:
- ./hack/ci/upload-gocache.sh
env:
Expand Down
6 changes: 3 additions & 3 deletions hack/images/kubeone-e2e/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

set -euox pipefail

TAG=v0.1.26
TAG=v0.1.27

docker build --build-arg version=${TAG} --pull -t kubermatic/kubeone-e2e:${TAG} .
docker push kubermatic/kubeone-e2e:${TAG}
docker build --build-arg version=${TAG} --pull -t quay.io/kubermatic/kubeone-e2e:${TAG} .
docker push quay.io/kubermatic/kubeone-e2e:${TAG}
2 changes: 1 addition & 1 deletion test/e2e/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ import (

const (
labelControlPlaneNode = "node-role.kubernetes.io/control-plane"
prowImage = "kubermatic/kubeone-e2e:v0.1.26"
prowImage = "quay.io/kubermatic/kubeone-e2e:v0.1.27"
k1CloneURI = "ssh://git@github.com/kubermatic/kubeone.git"
)

Expand Down
Loading

0 comments on commit bed3be2

Please sign in to comment.