From 9fcca8373a6f81e5c26e0410bd4670cc5453e938 Mon Sep 17 00:00:00 2001 From: Mangirdas Judeikis Date: Mon, 25 Nov 2024 17:17:46 +0200 Subject: [PATCH 1/3] test the tests --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ee60225d..56356c81 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ Kilo is a multi-cloud network overlay built on WireGuard and designed for Kubernetes. +Dummy test + [![Build Status](https://github.com/squat/kilo/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/squat/kilo/actions/workflows/ci.yml) [![Go Report Card](https://goreportcard.com/badge/github.com/squat/kilo)](https://goreportcard.com/report/github.com/squat/kilo) [![Docker Pulls](https://img.shields.io/docker/pulls/squat/kilo)](https://hub.docker.com/r/squat/kilo) From 96711422d9daa366e8d8b8601a679901c5b28dfb Mon Sep 17 00:00:00 2001 From: Mangirdas Judeikis Date: Mon, 25 Nov 2024 17:31:12 +0200 Subject: [PATCH 2/3] bump kind --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c47fa9c2..3a3a2f86 100644 --- a/Makefile +++ b/Makefile @@ -197,7 +197,7 @@ unit: test: lint unit e2e $(KIND_BINARY): - curl -Lo $@ https://kind.sigs.k8s.io/dl/v0.11.1/kind-linux-$(ARCH) + curl -Lo $@ https://kind.sigs.k8s.io/dl/v0.25.0/kind-linux-$(ARCH) chmod +x $@ $(KUBECTL_BINARY): From 9253fe776544b7685ae553e223433182f9379675 Mon Sep 17 00:00:00 2001 From: Mangirdas Judeikis Date: Mon, 25 Nov 2024 18:02:03 +0200 Subject: [PATCH 3/3] disable mesh --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3a3a2f86..5f4b2990 100644 --- a/Makefile +++ b/Makefile @@ -209,7 +209,7 @@ $(BASH_UNIT): chmod +x $@ e2e: container $(KIND_BINARY) $(KUBECTL_BINARY) $(BASH_UNIT) bin/$(OS)/$(ARCH)/kgctl - KILO_IMAGE=$(IMAGE):$(ARCH)-$(VERSION) KIND_BINARY=$(KIND_BINARY) KUBECTL_BINARY=$(KUBECTL_BINARY) KGCTL_BINARY=$(shell pwd)/bin/$(OS)/$(ARCH)/kgctl $(BASH_UNIT) $(BASH_UNIT_FLAGS) ./e2e/setup.sh ./e2e/full-mesh.sh ./e2e/location-mesh.sh ./e2e/multi-cluster.sh ./e2e/handlers.sh ./e2e/kgctl.sh ./e2e/teardown.sh + KILO_IMAGE=$(IMAGE):$(ARCH)-$(VERSION) KIND_BINARY=$(KIND_BINARY) KUBECTL_BINARY=$(KUBECTL_BINARY) KGCTL_BINARY=$(shell pwd)/bin/$(OS)/$(ARCH)/kgctl $(BASH_UNIT) $(BASH_UNIT_FLAGS) ./e2e/setup.sh ./e2e/location-mesh.sh ./e2e/multi-cluster.sh ./e2e/handlers.sh ./e2e/kgctl.sh ./e2e/teardown.sh header: .header @HEADER=$$(cat .header); \