Skip to content

Commit

Permalink
Update ubuntu image for e2e test infra job; add ginkgo prerequisite f…
Browse files Browse the repository at this point in the history
…or `make test-e2e` (gardener#933)
  • Loading branch information
shreyas-s-rao authored Nov 25, 2024
1 parent 34a96c8 commit ae8a54d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ test-cov-clean:
@$(HACK_DIR)/test-cover-clean.sh

.PHONY: test-e2e
test-e2e: $(KUBECTL) $(HELM) $(SKAFFOLD) $(KUSTOMIZE)
test-e2e: $(KUBECTL) $(HELM) $(SKAFFOLD) $(KUSTOMIZE) $(GINKGO)
@VERSION=$(VERSION) GIT_SHA=$(GIT_SHA) $(HACK_DIR)/e2e-test/run-e2e-test.sh $(PROVIDERS)

.PHONY: ci-e2e-kind
Expand Down
2 changes: 1 addition & 1 deletion hack/e2e-test/infrastructure/base/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
spec:
containers:
- name: infra
image: ubuntu:23.10
image: ubuntu:24.04
command: ["/bin/bash"]
args: ["-c", "/var/lib/infra/data/run/run.sh"]
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ func getPurgeLocalSnapstoreJob(storeContainer, storePrefix string) *batchv1.Job
Containers: []corev1.Container{
{
Name: "infra",
Image: "ubuntu:23.10",
Image: "ubuntu:24.04",
Command: []string{"/bin/bash"},
Args: []string{"-c",
fmt.Sprintf("rm -rf /host-dir-etc/gardener/local-backupbuckets/%s/%s/*", storeContainer, storePrefix),
Expand Down

0 comments on commit ae8a54d

Please sign in to comment.