Skip to content

Commit 1deb1b8

Browse files
committed
last migration steps, prep for new release
1 parent 1da3899 commit 1deb1b8

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ CAPI_KIND_CLUSTER_NAME ?= capi-test
231231
# It is set by Prow GIT_TAG, a git-based tag of the form vYYYYMMDD-hash, e.g., v20210120-v0.3.10-308-gc61521971
232232

233233
# Next release is: v1.0.0-alpha
234-
TAG ?= v1.0.0-alpha.2
234+
TAG ?= v1.0.0-alpha.3
235235
ARCH ?= $(shell go env GOARCH)
236236
ALL_ARCH = amd64 arm arm64
237237

config/default/manager_image_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ spec:
77
template:
88
spec:
99
containers:
10-
- image: ghcr.io/eitco/cluster-api-addon-provider-cdk8s/cluster-api-cdk8s-controller:v1.0.0-alpha.2
10+
- image: ghcr.io/eitco/cluster-api-addon-provider-cdk8s/cluster-api-cdk8s-controller:v1.0.0-alpha.3
1111
name: manager

config/default/manager_image_patch.yaml-e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ spec:
77
template:
88
spec:
99
containers:
10-
- image: ghcr.io/eitco/cluster-api-addon-provider-cdk8s/cluster-api-cdk8s-controller-arm64:v1.0.0-alpha.2
10+
- image: ghcr.io/eitco/cluster-api-addon-provider-cdk8s/cluster-api-cdk8s-controller:v1.0.0-alpha.3
1111
name: manager

config/default/manager_pull_policy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ spec:
88
spec:
99
containers:
1010
- name: manager
11-
imagePullPolicy: Always
11+
imagePullPolicy: IfNotPresent

hack/verify-container-images.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ chmod +x ${TOOL_BIN}/trivy
5353
rm ${TOOL_BIN}/trivy.tar.gz
5454

5555
# Builds all the container images to be scanned and cleans up changes to ./*manager_image_patch.yaml ./*manager_pull_policy.yaml.
56-
make REGISTRY=ghcr.io/patricklaabs/cluster-api-addon-provider-cdk8s/cluster-api-cdk8s-controller PULL_POLICY=IfNotPresent TAG=dev docker-build
56+
make REGISTRY=ghcr.io/eitco/cluster-api-addon-provider-cdk8s/cluster-api-cdk8s-controller PULL_POLICY=IfNotPresent TAG=dev docker-build
5757
make clean-release-git
5858

5959
# Scan the images
60-
${TOOL_BIN}/trivy image -q --exit-code 1 --ignore-unfixed --severity MEDIUM,HIGH,CRITICAL ghcr.io/patricklaabs/cluster-api-addon-provider-cdk8s/cluster-api-cdk8s-controller-"${GO_ARCH}":dev && R5=$? || R5=$?
60+
${TOOL_BIN}/trivy image -q --exit-code 1 --ignore-unfixed --severity MEDIUM,HIGH,CRITICAL ghcr.io/eitco/cluster-api-addon-provider-cdk8s/cluster-api-cdk8s-controller-"${GO_ARCH}":dev && R5=$? || R5=$?
6161

6262
echo ""
6363
BRed='\033[1;31m'

scripts/ci-e2e-lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ capi:buildDockerImages () {
2222
# please ensure the generated image name matches image names used in the E2E_CONF_FILE;
2323
# also the same settings must be set in Makefile, docker-build-e2e target.
2424
ARCH="$(go env GOARCH)"
25-
export REGISTRY=ghcr.io/patricklaabs/cluster-api-addon-provider-cdk8s
25+
export REGISTRY=ghcr.io/eitco/cluster-api-addon-provider-cdk8s
2626
export TAG=dev
2727
export ARCH
2828

tilt-provider.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: cdk8s
22
config:
3-
image: ghcr.io/patricklaabs/k8s-staging-cluster-api-cdk8s/cluster-api-cdk8s-controller
3+
image: ghcr.io/eitco/k8s-staging-cluster-api-cdk8s/cluster-api-cdk8s-controller
44
live_reload_deps:
55
- main.go
66
- go.mod

0 commit comments

Comments
 (0)