Skip to content

Commit 3c6e9e1

Browse files
authored
Various version updates (#601)
1 parent bb1173b commit 3c6e9e1

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

config/vagrant/scripts/bootstrap-cluster.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sudo curl -Lo /usr/bin/kind https://github.com/kubernetes-sigs/kind/releases/dow
66
sudo chmod +x /usr/bin/kind
77

88
# download the latest openshift client at a certain release level
9-
RELEASE_LEVEL="4.17"
9+
RELEASE_LEVEL="4.19"
1010
VERSIONS=($(sudo curl -sH 'Accept: application/json' "https://api.openshift.com/api/upgrades_info/v1/graph?channel=stable-${RELEASE_LEVEL}&arch=amd64" | jq -r '.nodes[].version' | sort))
1111
IFS=$'\n' SORTED_VERSIONS=($(sort -V <<<"${VERSIONS[*]}")); unset IFS
1212
OPENSHIFT_VERSION=${SORTED_VERSIONS[${#SORTED_VERSIONS[@]} - 1]}

scripts/delete-calico.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -x
33

44
# Download the calico YAML and change the image source to quay
5-
curl https://raw.githubusercontent.com/projectcalico/calico/v3.30.2/manifests/calico.yaml |
5+
curl https://raw.githubusercontent.com/projectcalico/calico/v3.30.3/manifests/calico.yaml |
66
sed s/docker.io/quay.io/g >temp-calico.yaml
77

88
# Delete calico (not needed but more feature rich - for future use)

scripts/delete-istio.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SCRIPT_DIR=$(dirname "$0")
66
# shellcheck disable=SC1091 # Not following.
77
source "$SCRIPT_DIR"/init-env.sh
88

9-
ISTIO_VERSION=1.25.2
9+
ISTIO_VERSION=1.27.1
1010
ISTIO_DIR=istio-$ISTIO_VERSION
1111

1212
# Check if required environment variables are set

scripts/deploy-calico.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -x
33

44
# Download the calico YAML and change the image source to quay
5-
curl https://raw.githubusercontent.com/projectcalico/calico/v3.30.2/manifests/calico.yaml |
5+
curl https://raw.githubusercontent.com/projectcalico/calico/v3.30.3/manifests/calico.yaml |
66
sed s/docker.io/quay.io/g >temp-calico.yaml
77

88
# Deploy calico

scripts/install-istio.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SCRIPT_DIR=$(dirname "$0")
66
# shellcheck disable=SC1091 # File not following.
77
source "$SCRIPT_DIR"/init-env.sh
88

9-
ISTIO_VERSION=1.25.2
9+
ISTIO_VERSION=1.27.1
1010
ISTIO_DIR=istio-$ISTIO_VERSION
1111
ISTIO_PROFILE=demo
1212

scripts/preload-images.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ IMAGES_TO_PRELOAD=(
2323
quay.io/testnetworkfunction/debug-partner:latest
2424
quay.io/testnetworkfunction/cr-scale-operator:latest
2525
gcr.io/distroless/static:nonroot
26-
quay.io/calico/node:v3.30.2
26+
quay.io/calico/node:v3.30.3
2727
quay.io/testnetworkfunction/nginx-operator-bundle:v0.0.1
2828
ghcr.io/k8snetworkplumbingwg/multus-cni:snapshot
2929
registry.access.redhat.com/ubi9/ubi:latest

0 commit comments

Comments
 (0)