Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/e2e_loader.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
test-knative:
name: Test Knative Deployment
env:
KIND_VERSION: v0.22.0
K8S_VERSION: v1.29
KIND_VERSION: v0.30.0
K8S_VERSION: v1.34.3
YAML_DIR: workloads/container
runs-on: ubuntu-24.04
strategy:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e_multi_loader.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
test-multi-loader:
name: Test Multi-Loader with Knative Deployment
env:
KIND_VERSION: v0.22.0
K8S_VERSION: v1.29
KIND_VERSION: v0.30.0
K8S_VERSION: v1.34.3
YAML_DIR: workloads/container
runs-on: ubuntu-24.04
strategy:
Expand Down Expand Up @@ -69,8 +69,8 @@ jobs:
adv-log-collection:
name: Test Multi-Loader Advanced Log Collection
env:
KIND_VERSION: v0.22.0
K8S_VERSION: v1.29
KIND_VERSION: v0.30.0
K8S_VERSION: v1.34.3
YAML_DIR: workloads/container
runs-on: ubuntu-24.04
strategy:
Expand Down
4 changes: 2 additions & 2 deletions config/kube.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"K8sVersion": "1.29.1",
"K8sVersion": "1.34.3",
"AlternativeImageRepo": "",
"ApiserverAdvertiseAddress": "",
"PodNetworkCidr": "10.168.0.0/16",
"ApiserverPort": "6443",
"ApiserverToken": "",
"ApiserverTokenHash": "",
"CalicoVersion": "3.27.2"
"CalicoVersion": "3.31.0"
}
2 changes: 1 addition & 1 deletion config/kubeadm_init.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ etcd:
extraArgs:
listen-metrics-urls: http://0.0.0.0:2381
imageRepository: registry.k8s.io
kubernetesVersion: v1.29.1
kubernetesVersion: v1.34.3
networking:
dnsDomain: cluster.local
podSubnet: 10.168.0.0/16
Expand Down
2 changes: 1 addition & 1 deletion scripts/konk-ci/01-kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
set -eo pipefail

kindVersion=$(kind version);
K8S_VERSION=${k8sVersion:-v1.29.1}
K8S_VERSION=${k8sVersion:-v1.34.3}
KIND_BASE=${KIND_BASE:-kindest/node}
CLUSTER_NAME=${KIND_CLUSTER_NAME:-knative}

Expand Down
2 changes: 1 addition & 1 deletion scripts/konk-ci/02-kourier.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
set -eo pipefail
set -u

KNATIVE_NET_KOURIER_VERSION=${KNATIVE_NET_KOURIER_VERSION:-1.13.0}
KNATIVE_NET_KOURIER_VERSION=${KNATIVE_NET_KOURIER_VERSION:-1.19.6}

## INSTALL KOURIER
n=0
Expand Down
2 changes: 1 addition & 1 deletion scripts/konk-ci/02-serving.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
set -eo pipefail
set -u

KNATIVE_VERSION=${KNATIVE_VERSION:-1.13.0}
KNATIVE_VERSION=${KNATIVE_VERSION:-1.19.6}

wget -q https://github.com/knative/client/releases/download/knative-v${KNATIVE_VERSION}/kn-linux-amd64
mv kn-linux-amd64 kn && chmod +x kn
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup/expose_infra_metrics.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ server_exec() {
server_exec "curl -sL $commit_version/config/configmap-serving-dashboard.json | sed 's/"namespace": "knative-serving"/"namespace": "monitoring"/g' | kubectl apply -f -"

#* Bind addresses of the control manager and scheduler to "0.0.0.0" so that prometheus can scrape them from any domains.
server_exec 'cd loader; sudo kubeadm upgrade apply --config config/kubeadm_init.yaml --ignore-preflight-errors all --force --v=7'
server_exec 'cd loader; sudo kubeadm upgrade apply --config config/kubeadm_init.yaml --ignore-preflight-errors all --yes --v=7'

#* Restart the kube-proxy to apply the changes.
server_exec 'kubectl delete pod -l k8s-app=kube-proxy -n kube-system'
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VHIVE_REPO='https://github.com/vhive-serverless/vhive'
VHIVE_BRANCH='v1.8'
VHIVE_BRANCH='v1.8.2'
LOADER_REPO='https://github.com/vhive-serverless/invitro'
LOADER_BRANCH='main'
CLUSTER_MODE='container' # choose from {container, firecracker, firecracker_snapshots}
Expand Down
Loading