-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update community to v0.24.0-beta.0 (#2616) Add networking squad as code owners (release 1.24) (#2519) Auto-create armada-ansible BOM PR (release 1.24) (#2582)
- Loading branch information
1 parent
2da4c69
commit 36bfb24
Showing
5 changed files
with
145 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ OSS_FILES := go.mod | |
GOLANGCI_LINT_VERSION := 1.45.0 | ||
GOLANGCI_LINT_EXISTS := $(shell golangci-lint --version 2>/dev/null) | ||
|
||
HUB_RLS ?= 2.14.2 | ||
REGISTRY ?= armada-master | ||
TAG ?= v1.24.0-alpha.4 | ||
VPCCTL_SOURCE=$(shell cat addons/vpcctl.yml | awk '/^source:/{print $$2}') | ||
|
@@ -232,8 +233,25 @@ runfvt: kubectlcli vpcctlcli | |
push-images: | ||
cd vagrant-kube-build/provisioning && ./push_image.sh ${ALT_REGISTRY} ${ALT_NAMESPACE} ibm-cloud-controller-manager | ||
|
||
.PHONY: hub-install | ||
hub-install: | ||
ifdef ARTIFACTORY_API_KEY | ||
@echo "installing hub" | ||
@curl -H "X-JFrog-Art-Api:${ARTIFACTORY_API_KEY}" -OL "https://na.artifactory.swg-devops.com/artifactory/wcp-alchemy-containers-team-github-generic-remote/github/hub/releases/download/v$(HUB_RLS)/hub-linux-amd64-$(HUB_RLS).tgz" ; \ | ||
tar -xzvf hub-linux-amd64-$(HUB_RLS).tgz ; \ | ||
rm -f hub-linux-amd64-$(HUB_RLS).tgz ; \ | ||
cd hub-linux-amd64-$(HUB_RLS) ; \ | ||
sudo ./install ; \ | ||
cd ..; rm -rf hub-linux-amd64-$(HUB_RLS) ; \ | ||
git config --global --add hub.host github.ibm.com ; \ | ||
git config --global user.email "[email protected]" ; \ | ||
git config --global user.name "iksroch1" | ||
else | ||
@echo "hub was not installed" | ||
endif | ||
|
||
.PHONY: deploy | ||
deploy: | ||
deploy: hub-install | ||
scripts/deploy.sh ${REGISTRY}/ibm-cloud-controller-manager ${BUILD_TAG} | ||
|
||
.PHONY: clean | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters