Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use helm v3 and latest Kind version #297

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ PROJECT_ROOT = $(shell git rev-parse --show-toplevel)
PLATFORMS ?= linux_amd64 linux_arm64
-include build/makelib/common.mk

KIND_VERSION ?= $(shell curl -s https://api.github.com/repos/kubernetes-sigs/kind/releases/latest | jq -r .tag_name)

# Generate chainsaw e2e tests for the following kind node versions
# TEST_KIND_NODES is not intended to be updated manually.
# Please edit LATEST_KIND_NODE instead and run 'make update-kind-nodes'.
Expand All @@ -32,6 +34,9 @@ WEBHOOK_SUBDOMAIN ?= $(PROJECT_NAME)-$(shell git rev-parse --short HEAD)-$(shell

WEBHOOK_TYPE ?= stock

# Set this value to enforce use of Helm v3.
USE_HELM3 ?= true

# ====================================================================================
# Setup Output

Expand Down
Loading