Skip to content

Commit eed1a73

Browse files
committed
Upgrade k8s to v1.25.3 and istio to v1.16.0
Signed-off-by: Anshal Shukla <[email protected]>
1 parent 77c8364 commit eed1a73

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
### Added
2727

2828
### Changed
29-
- Bumped Containerd to v1.6, Knative to v1.9, Go to v1.18, Kubernetes to v1.23, Istio to 1.12, protoc to 3.19, runc to 1.1.
29+
- Bumped Containerd to v1.6, Knative to v1.9, Go to v1.18, Kubernetes to v1.25.3, Istio to 1.16.0, protoc to 3.19, runc to 1.1.
3030

3131
### Fixed
3232

configs/kind/kubeadm.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: kubeadm.k8s.io/v1beta3
22
kind: ClusterConfiguration
3-
kubernetesVersion: v1.23.5
3+
kubernetesVersion: v1.25.3
44
networking:
55
podSubnet: 192.168.0.0/16
66
scheduler:

docs/developers_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ Here are some useful commands (there are plenty of Zipkin tutorials online):
185185
of our [fork](https://github.com/vhive-serverless/firecracker-containerd) of the upstream repository.
186186
Currently, we are in the process of upstreaming VM snapshots support to the upstream repository.
187187

188-
* Current Firecracker version is 0.24.0, Knative 1.9, Kubernetes 1.23.5, gVisor 20210622.0, and Istio 1.12.5.
188+
* Current Firecracker version is 0.24.0, Knative 1.9, Kubernetes 1.25.3, gVisor 20210622.0, and Istio 1.16.0.
189189
We plan to keep our code loosely up to date with the upstream Firecracker repository.
190190

191191
* vHive uses a [fork](https://github.com/ease-lab/kind) of [kind](https://github.com/kubernetes-sigs/kind)

scripts/cluster/setup_master_node.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ kubectl apply -f $ROOT/configs/metallb/metallb-configmap.yaml
4343

4444
# istio
4545
cd $ROOT
46-
curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.12.5 TARGET_ARCH=x86_64 sh -
47-
export PATH=$PATH:$ROOT/istio-1.12.5/bin
48-
sudo sh -c "echo 'export PATH=\$PATH:$ROOT/istio-1.12.5/bin' >> /etc/profile"
46+
curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.16.0 TARGET_ARCH=x86_64 sh -
47+
export PATH=$PATH:$ROOT/istio-1.16.0/bin
48+
sudo sh -c "echo 'export PATH=\$PATH:$ROOT/istio-1.16.0/bin' >> /etc/profile"
4949
istioctl install -y -f $ROOT/configs/istio/istio-minimal-operator.yaml
5050

5151
KNATIVE_VERSION="knative-v1.9.0"
@@ -67,7 +67,7 @@ kubectl apply --filename $ROOT/configs/registry/repository-update-hosts.yaml
6767
# magic DNS
6868
kubectl apply --filename $ROOT/configs/knative_yamls/serving-default-domain.yaml
6969

70-
kubectl apply --filename https://github.com/knative/net-istio/releases/download/$KNATIVE_VERSION/release.yaml
70+
kubectl apply --filename https://github.com/knative/net-istio/releases/download/$KNATIVE_VERSION/net-istio.yaml
7171

7272
# install knative eventing
7373
kubectl apply --filename https://github.com/knative/eventing/releases/download/$KNATIVE_VERSION/eventing-crds.yaml

scripts/github_runner/Dockerfile.cri_dev_env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
# SOFTWARE.
2222

23-
FROM kindest/node:v1.23.5
23+
FROM kindest/node:v1.25.3
2424

2525
RUN apt-get update && \
2626
apt-get upgrade --yes && \

scripts/install_stock.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ containerd --version || echo "failed to build containerd"
4545

4646

4747
# Install k8s
48-
K8S_VERSION=1.23.5-00
48+
K8S_VERSION=1.25.3-00
4949
curl --silent --show-error https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
5050
sudo sh -c "echo 'deb http://apt.kubernetes.io/ kubernetes-xenial main' > /etc/apt/sources.list.d/kubernetes.list"
5151
sudo apt-get update >> /dev/null

scripts/setup_zipkin.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
set -e
2626
# install zipkin pods
27-
kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.12/samples/addons/extras/zipkin.yaml
27+
kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.16/samples/addons/extras/zipkin.yaml
2828

2929
sleep 10s
3030

0 commit comments

Comments
 (0)