Skip to content

Commit 6ddf5ba

Browse files
committed
upgrade versions: antrea, cilium, kind, agnhost
1 parent 5142c48 commit 6ddf5ba

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

cmd/worker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM k8s.gcr.io/e2e-test-images/agnhost:2.28
1+
FROM k8s.gcr.io/e2e-test-images/agnhost:2.36
22

33
ENTRYPOINT ["/worker"]
44

docs/developer-guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
- set up a KinD cluster with a CNI that supports network policies
1212

1313
pushd hack/kind/calico
14-
./setup.sh
14+
./setup-kind.sh
1515
popd
1616

1717
- run cyclonus

hack/kind/antrea/setup-kind.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -xv
44
set -e
55

66
CLUSTER=${CLUSTER:-netpol-antrea}
7-
VERSION=${VERSION:-v0.13.1}
7+
VERSION=${VERSION:-v1.7.0}
88
ANTREA_DIR=antrea-repo
99
IMG_NAME="projects.registry.vmware.com/antrea/antrea-ubuntu"
1010

hack/kind/cilium/setup-kind.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
set -xv
55

66
CLUSTER=${CLUSTER:-netpol-cilium}
7-
CILIUM_VERSION=${CILIUM_VERSION:-"v1.9.5"}
7+
CILIUM_VERSION=${CILIUM_VERSION:-"v1.11.6"}
88
IMAGE=quay.io/cilium/cilium:${CILIUM_VERSION}
99

1010
kind create cluster --name="$CLUSTER" --config=kind-config.yaml

hack/kind/run-cyclonus.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -xv
44
set -euo pipefail
55

6-
KIND_VERSION=${KIND_VERSION:-v0.11.0}
6+
KIND_VERSION=${KIND_VERSION:-v0.14.0}
77
CNI=${CNI:-calico}
88
CLUSTER_NAME="netpol-$CNI"
99
RUN_FROM_SOURCE=${RUN_FROM_SOURCE:-true}
@@ -27,8 +27,8 @@ pushd "$CNI"
2727
popd
2828

2929
# preload agnhost image
30-
docker pull k8s.gcr.io/e2e-test-images/agnhost:2.28
31-
kind load docker-image k8s.gcr.io/e2e-test-images/agnhost:2.28 --name "$CLUSTER_NAME"
30+
docker pull k8s.gcr.io/e2e-test-images/agnhost:2.36
31+
kind load docker-image k8s.gcr.io/e2e-test-images/agnhost:2.36 --name "$CLUSTER_NAME"
3232

3333
# make sure that the new kind cluster is the current kubectl context
3434
kind get clusters

pkg/connectivity/probe/pod.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
const (
14-
agnhostImage = "k8s.gcr.io/e2e-test-images/agnhost:2.28"
14+
agnhostImage = "k8s.gcr.io/e2e-test-images/agnhost:2.36"
1515
cyclonusWorkerImage = "mfenwick100/cyclonus-worker:latest"
1616
)
1717

0 commit comments

Comments
 (0)