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

Updates: container-hooks to v0.6.0 #3353

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion runner/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ OS_IMAGE ?= ubuntu-22.04
TARGETPLATFORM ?= $(shell arch)

RUNNER_VERSION ?= 2.314.1
RUNNER_CONTAINER_HOOKS_VERSION ?= 0.5.1
RUNNER_CONTAINER_HOOKS_VERSION ?= 0.6.0
DOCKER_VERSION ?= 24.0.7

# default list of platforms for which multiarch image is built
Expand Down
2 changes: 1 addition & 1 deletion runner/VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
RUNNER_VERSION=2.314.1
RUNNER_CONTAINER_HOOKS_VERSION=0.5.1
RUNNER_CONTAINER_HOOKS_VERSION=0.6.0
12 changes: 4 additions & 8 deletions test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var (
testResultCMNamePrefix = "test-result-"

RunnerVersion = "2.314.1"
RunnerContainerHooksVersion = "0.5.1"
RunnerContainerHooksVersion = "0.6.0"
)

// If you're willing to run this test via VS Code "run test" or "debug test",
Expand Down Expand Up @@ -93,7 +93,7 @@ func TestE2E(t *testing.T) {
os.Getenv("UBUNTU_VERSION"),
)

var testedVersions = []struct {
testedVersions := []struct {
label string
controller, controllerVer string
chart, chartVer string
Expand Down Expand Up @@ -154,9 +154,7 @@ func TestE2E(t *testing.T) {
t.Skip("RunnerSets test has been skipped due to ARC_E2E_SKIP_RUNNERSETS")
}

var (
testID string
)
var testID string

t.Run("get or generate test ID", func(t *testing.T) {
testID = env.GetOrGenerateTestID(t)
Expand Down Expand Up @@ -268,9 +266,7 @@ func TestE2E(t *testing.T) {
t.Skip("RunnerSets test has been skipped due to ARC_E2E_SKIP_RUNNERSETS")
}

var (
testID string
)
var testID string

t.Run("get or generate test ID", func(t *testing.T) {
testID = env.GetOrGenerateTestID(t)
Expand Down