Skip to content

Commit

Permalink
update builder image to 1.1.0 and include helm
Browse files Browse the repository at this point in the history
Signed-off-by: kranurag7 <[email protected]>

update release workflow as per new builder image

Signed-off-by: kranurag7 <[email protected]>

fix linting error and add lychee

Signed-off-by: kranurag7 <[email protected]>
  • Loading branch information
kranurag7 committed Mar 3, 2024
1 parent dfe69b5 commit a8ed7f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .builder-image-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.1.0
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,12 @@ $(CTLPTL):

KUBECTL := $(abspath $(TOOLS_BIN_DIR)/kubectl)


HELM := $(abspath $(TOOLS_BIN_DIR)/helm)
helm: $(HELM) ## Build a local copy of helm
$(HELM):
curl -sSL https://get.helm.sh/helm-v3.12.2-linux-amd64.tar.gz | tar xz -C $(TOOLS_BIN_DIR) --strip-components=1 linux-amd64/helm
chmod a+rx $(HELM)

MOCKERY := $(abspath $(TOOLS_BIN_DIR)/mockery)
mockery: $(MOCKERY) ## Download and extract mockery binary from github releases page
Expand Down Expand Up @@ -530,7 +535,7 @@ create-workload-cluster-docker: $(ENVSUBST) $(KUBECTL)
cat .cluster.yaml | $(ENVSUBST) - | $(KUBECTL) apply -f -

.PHONY: tilt-up
tilt-up: env-vars-for-wl-cluster $(ENVSUBST) $(KUBECTL) $(KUSTOMIZE) $(TILT) cluster ## Start a mgt-cluster & Tilt. Installs the CRDs and deploys the controllers
tilt-up: env-vars-for-wl-cluster get-dependencies $(ENVSUBST) $(TILT) cluster ## Start a mgt-cluster & Tilt. Installs the CRDs and deploys the controllers
EXP_CLUSTER_RESOURCE_SET=true $(TILT) up --port=10351

BINARIES = clusterctl controller-gen helm kind kubectl kustomize trivy
Expand Down

0 comments on commit a8ed7f3

Please sign in to comment.