Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release/v1.5] Move the kubeone-e2e image to Quay #2464

Merged
merged 2 commits into from
Nov 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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:
- ^master$
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.25
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