Skip to content

Commit

Permalink
bump k8s to 1.23.17 (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
freeznet authored Jul 20, 2023
1 parent a79e4bb commit 84b6ac0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .ci/helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ FUNCTION_NAME=$1

function ci::create_cluster() {
echo "Creating a kind cluster ..."
${FUNCTION_MESH_HOME}/hack/kind-cluster-build.sh --name sn-platform-"${CLUSTER_ID}" -c 3 -v 10 -k v1.22.15
${FUNCTION_MESH_HOME}/hack/kind-cluster-build.sh --name sn-platform-"${CLUSTER_ID}" -c 3 -v 10 -k v1.23.17
echo "Successfully created a kind cluster."
}

Expand Down
2 changes: 1 addition & 1 deletion .ci/tests/kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kubeadmConfigPatchesJSON6902:
nodes:
# the control plane node (worker) config
- role: control-plane
image: kindest/node:v1.22.15
image: kindest/node:v1.23.17
extraPortMappings:
- containerPort: 31234
hostPort: 31234
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/olm-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Kubernetes KinD Cluster
uses: container-tools/kind-action@v1
with:
node_image: kindest/node:v1.22.15
node_image: kindest/node:v1.23.17

- name: Build RedHat certificated bundle And Publish to Quay
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-helm-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
if: steps.list-changed.outputs.changed == 'true'

- name: Create kind cluster
run: hack/kind-cluster-build.sh --name chart-testing -c 1 -v 10 --k8sVersion v1.22.15
run: hack/kind-cluster-build.sh --name chart-testing -c 1 -v 10 --k8sVersion v1.23.17
if: steps.list-changed.outputs.changed == 'true'

- name: Set up GO 1.20.4
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ OPTIONS:
-c --crd The path of the crd files.
--kind-version Version of the Kind tool, default value: v0.7.0
--node-num The count of the cluster nodes, default value: 2
--k8s-version Version of the Kubernetes cluster, default value: v1.22.15
--k8s-version Version of the Kubernetes cluster, default value: v1.23.17
--volume-num The volumes number of each kubernetes node, default value: 2
--release-name Release name of function-mesh, default value: function-mesh
--namespace Namespace of function-mesh, default value: default
Expand All @@ -60,7 +60,7 @@ main() {
local kind_name="kind"
local kind_version="v0.7.0"
local node_num=2
local k8s_version="v1.22.15"
local k8s_version="v1.23.17"
local volume_num=2
local release_name="function-mesh"
local namespace="default"
Expand Down

0 comments on commit 84b6ac0

Please sign in to comment.