Skip to content

Commit b5b0d0a

Browse files
authored
Changelog (#12)
* Release V0.1.0 * Fix release path for MAAS * Fix release path for MAAS * Fix release path for MAAS * changelog addition * changelog addition
1 parent 4294b8c commit b5b0d0a

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Version v0.1.1
2+
Tue Aug 10 05:40:00 UTC 2021
3+
4+
* Commit: Fix release path for MAAS; author: zulfilee
5+
* Commit: Merge branch 'main' of https://github.com/spectrocloud/cluster-api-provider-maas into main; author: zulfilee
6+
* Commit: dns record use uuid in domain name (#10); author: GitHub
7+
* Commit: Merge branch 'main' of https://github.com/spectrocloud/cluster-api-provider-maas into main; author: zulfilee
8+
* Commit: Release V0.1.0; author: zulfilee

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ RELEASE_DIR := _build/release
1313
DEV_DIR := _build/dev
1414

1515
# Image URL to use all building/pushing image targets
16-
IMAGE_NAME := cluster-api-provider-maas
16+
IMAGE_NAME := cluster-api-provider-maas-controller
1717
IMG_URL ?= gcr.io/$(shell gcloud config get-value project)/${USER}
1818
IMG_TAG ?= latest
1919
IMG ?= ${IMG_URL}/cluster-api-provider-maas:${IMG_TAG}
2020

2121

2222
# Release images
2323
# Release docker variables
24-
RELEASE_REGISTRY := gcr.io/spectro-images-public/release
24+
RELEASE_REGISTRY := gcr.io/spectro-images-public/release/cluster-api-provider-maas
2525
RELEASE_CONTROLLER_IMG := $(RELEASE_REGISTRY)/$(IMAGE_NAME)
2626

2727
# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
@@ -149,7 +149,7 @@ clean-release:
149149
rm -rf $(RELEASE_DIR)
150150

151151
release: release-manifests
152-
# $(MAKE) docker-build IMG=$(RELEASE_CONTROLLER_IMG):$(VERSION)
152+
$(MAKE) docker-build IMG=$(RELEASE_CONTROLLER_IMG):$(VERSION)
153153
$(MAKE) docker-push IMG=$(RELEASE_CONTROLLER_IMG):$(VERSION)
154154

155155
version: ## Prints version of current make

clusterctl-settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "infrastructure-maas",
33
"config": {
44
"componentsFile": "infrastructure-components.yaml",
5-
"nextVersion": "v0.1.0"
5+
"nextVersion": "v0.1.1"
66
}
77
}

prow/functions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ set_image_tag() {
3535
fi
3636
if [[ ${SPECTRO_RELEASE} ]] && [[ ${SPECTRO_RELEASE} == "yes" ]]; then
3737
export VERSION_SUFFIX=""
38-
IMG_LOC='release'
38+
IMG_LOC='release/cluster-api-provider-maas'
3939
IMG_TAG=$(make version)
4040
PROD_BUILD_ID=$(date +%Y%m%d.%H%M)
4141
IMG_PATH=spectro-images-public/${IMG_LOC}
@@ -180,5 +180,5 @@ create_release_manifest() {
180180

181181
export REPO_NAME=cluster-api-provider-maas
182182
set_image_tag
183-
export IMG=${DOCKER_REGISTRY}/${IMG_LOC}/cluster-api-provider-maas:${IMG_TAG}
183+
export IMG=${DOCKER_REGISTRY}/${IMG_LOC}/cluster-api-provider-maas-controller:${IMG_TAG}
184184
IMAGES_LIST="${IMG}"

0 commit comments

Comments
 (0)