From 961eb4d9f36f6eed1cfe8c51152ccd6253483cc2 Mon Sep 17 00:00:00 2001 From: Manan Gupta Date: Thu, 18 Jul 2024 15:52:33 +0530 Subject: [PATCH] feat: update kind version and the mysql image to be used Signed-off-by: Manan Gupta --- examples/operator/101_initial_cluster.yaml | 2 +- tools/get_kubectl_kind.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/operator/101_initial_cluster.yaml b/examples/operator/101_initial_cluster.yaml index 23369d060bd..4a4f478adac 100644 --- a/examples/operator/101_initial_cluster.yaml +++ b/examples/operator/101_initial_cluster.yaml @@ -15,7 +15,7 @@ spec: vtbackup: vitess/lite:latest vtorc: vitess/lite:latest mysqld: - mysql80Compatible: vitess/lite:latest + mysql80Compatible: mysql:8.0.30 mysqldExporter: prom/mysqld-exporter:v0.11.0 cells: - name: zone1 diff --git a/tools/get_kubectl_kind.sh b/tools/get_kubectl_kind.sh index 57df414fdd8..89b50b222b0 100755 --- a/tools/get_kubectl_kind.sh +++ b/tools/get_kubectl_kind.sh @@ -28,7 +28,7 @@ ln -sf "kubectl-${KUBE_VERSION}" kubectl if ! command -v kind &> /dev/null then echo "Downloading kind..." - curl -L https://kind.sigs.k8s.io/dl/v0.12.0/kind-linux-amd64 > "kind" + curl -L https://kind.sigs.k8s.io/dl/v0.20.0/kind-linux-amd64 > "kind" chmod +x "kind" echo "Installed kind" else