Skip to content

Commit e55e169

Browse files
Merge pull request #366 from alexander-demicev/cherrypickorgnamechange
[release-0.4] Change organisation name in Makefile
2 parents f89c820 + c1eb76e commit e55e169

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export KREW_ROOT := $(abspath $(TOOLS_BIN_DIR))
5252
export PATH := $(KREW_ROOT)/bin:$(PATH)
5353

5454
# Set --output-base for conversion-gen if we are not within GOPATH
55-
ifneq ($(abspath $(ROOT_DIR)),$(shell go env GOPATH)/src/github.com/rancher-sandbox/cluster-api-provider-rke2)
55+
ifneq ($(abspath $(ROOT_DIR)),$(shell go env GOPATH)/src/github.com/rancher/cluster-api-provider-rke2)
5656
CONVERSION_GEN_OUTPUT_BASE_CAPRKE2 := --output-base=$(ROOT_DIR)/$(CAPRKE2_DIR)
5757
CONVERSION_GEN_OUTPUT_BASE_CAPBPR := --output-base=$(ROOT_DIR)/$(CAPBPR_DIR)
5858
else
@@ -115,7 +115,7 @@ TAG ?= dev
115115
ARCH ?= $(shell go env GOARCH)
116116
ALL_ARCH = amd64 arm arm64 ppc64le s390x
117117
REGISTRY ?= ghcr.io
118-
ORG ?= rancher-sandbox
118+
ORG ?= rancher
119119
CONTROLLER_IMAGE_NAME := cluster-api-provider-rke2
120120
BOOTSTRAP_IMAGE_NAME := $(CONTROLLER_IMAGE_NAME)-bootstrap
121121
CONTROLPLANE_IMAGE_NAME = $(CONTROLLER_IMAGE_NAME)-controlplane
@@ -500,7 +500,7 @@ release-manifests: $(RELEASE_DIR) $(KUSTOMIZE) ## Build the manifests to publish
500500
.PHONY: release-notes
501501
release-notes: $(RELEASE_DIR) $(GH)
502502
if [ -n "${PRE_RELEASE}" ]; then \
503-
echo ":rotating_light: This is a RELEASE CANDIDATE. Use it only for testing purposes. If you find any bugs, file an [issue](https://github.com/rancher-sandbox/cluster-api-provider-rke2/issues/new)." > $(RELEASE_DIR)/CHANGELOG.md; \
503+
echo ":rotating_light: This is a RELEASE CANDIDATE. Use it only for testing purposes. If you find any bugs, file an [issue](https://github.com/rancher/cluster-api-provider-rke2/issues/new)." > $(RELEASE_DIR)/CHANGELOG.md; \
504504
else \
505505
$(GH) api repos/$(ORG)/$(GH_REPO_NAME)/releases/generate-notes -F tag_name=$(VERSION) -F previous_tag_name=$(PREVIOUS_VERSION) --jq '.body' > $(RELEASE_DIR)/CHANGELOG.md; \
506506
fi

bootstrap/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/rancher-sandbox/cluster-api-provider-rke2-bootstrap:dev
10+
- image: ghcr.io/rancher/cluster-api-provider-rke2-bootstrap:dev
1111
name: manager

controlplane/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/rancher-sandbox/cluster-api-provider-rke2-controlplane:dev
10+
- image: ghcr.io/rancher/cluster-api-provider-rke2-controlplane:dev
1111
name: manager

test/e2e/config/e2e_conf.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ images:
55
loadBehavior: tryLoad
66
- name: ghcr.io/rancher-sandbox/cluster-api-provider-rke2-controlplane:v0.4.0
77
loadBehavior: tryLoad
8-
- name: ghcr.io/rancher-sandbox/cluster-api-provider-rke2-bootstrap:dev
8+
- name: ghcr.io/rancher/cluster-api-provider-rke2-bootstrap:dev
99
loadBehavior: mustLoad
10-
- name: ghcr.io/rancher-sandbox/cluster-api-provider-rke2-controlplane:dev
10+
- name: ghcr.io/rancher/cluster-api-provider-rke2-controlplane:dev
1111
loadBehavior: mustLoad
1212
- name: quay.io/jetstack/cert-manager-cainjector:v1.14.4
1313
loadBehavior: tryLoad

tilt-provider.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "rke2-control-plane",
44
"config": {
55
"context": "controlplane",
6-
"image": "ghcr.io/rancher-sandbox/cluster-api-provider-rke2-controlplane:dev",
6+
"image": "ghcr.io/rancher/cluster-api-provider-rke2-controlplane:dev",
77
"live_reload_deps": [
88
"main.go",
99
"go.mod",
@@ -21,7 +21,7 @@
2121
"name": "rke2-bootstrap",
2222
"config": {
2323
"context": "bootstrap",
24-
"image": "ghcr.io/rancher-sandbox/cluster-api-provider-rke2-bootstrap:dev",
24+
"image": "ghcr.io/rancher/cluster-api-provider-rke2-bootstrap:dev",
2525
"live_reload_deps": [
2626
"main.go",
2727
"go.mod",

0 commit comments

Comments
 (0)