Skip to content

Commit cdb6c46

Browse files
mxmferenc-csaky
authored andcommitted
Update Minikube version
(cherry picked from commit 525b459)
1 parent d691488 commit cdb6c46

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

β€Ždocs/content.zh/docs/try-flink-kubernetes-operator/quick-start.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ So that the `kubectl` and `helm` commands are available on your local system.
4242
For docker we recommend that you have [Docker Desktop](https://www.docker.com/products/docker-desktop) installed
4343
and configured with at least 8GB of RAM.
4444
For kubernetes [minikube](https://minikube.sigs.k8s.io/docs/start/) is our choice, at the time of writing this we are
45-
using version v1.25.3 (end-to-end tests are using the same version). You can start a cluster with the following command:
45+
using version v1.28.0 (end-to-end tests are using the same version). You can start a cluster with the following command:
4646

4747
```bash
48-
minikube start --kubernetes-version=v1.25.3
48+
minikube start --kubernetes-version=v1.28.0
4949
πŸ˜„ minikube v1.28.0 on Darwin 13.0.1
5050
✨ Automatically selected the docker driver. Other choices: hyperkit, ssh
5151
πŸ“Œ Using Docker Desktop driver with root privileges
5252
πŸ‘ Starting control plane node minikube in cluster minikube
5353
🚜 Pulling base image ...
5454
πŸ”₯ Creating docker container (CPUs=2, Memory=4000MB) ...
55-
🐳 Preparing Kubernetes v1.25.3 on Docker 20.10.20 ...
55+
🐳 Preparing Kubernetes v1.28.0 on Docker 20.10.20 ...
5656
β–ͺ Generating certificates and keys ...
5757
β–ͺ Booting up control plane ...
5858
β–ͺ Configuring RBAC rules ...

β€Ždocs/content/docs/try-flink-kubernetes-operator/quick-start.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ So that the `kubectl` and `helm` commands are available on your local system.
4242
For docker we recommend that you have [Docker Desktop](https://www.docker.com/products/docker-desktop) installed
4343
and configured with at least 8GB of RAM.
4444
For kubernetes [minikube](https://minikube.sigs.k8s.io/docs/start/) is our choice, at the time of writing this we are
45-
using version v1.25.3 (end-to-end tests are using the same version). You can start a cluster with the following command:
45+
using version v1.28.0 (end-to-end tests are using the same version). You can start a cluster with the following command:
4646

4747
```bash
48-
minikube start --kubernetes-version=v1.25.3
48+
minikube start --kubernetes-version=v1.28.0
4949
πŸ˜„ minikube v1.28.0 on Darwin 13.0.1
5050
✨ Automatically selected the docker driver. Other choices: hyperkit, ssh
5151
πŸ“Œ Using Docker Desktop driver with root privileges
5252
πŸ‘ Starting control plane node minikube in cluster minikube
5353
🚜 Pulling base image ...
5454
πŸ”₯ Creating docker container (CPUs=2, Memory=4000MB) ...
55-
🐳 Preparing Kubernetes v1.25.3 on Docker 20.10.20 ...
55+
🐳 Preparing Kubernetes v1.28.0 on Docker 20.10.20 ...
5656
β–ͺ Generating certificates and keys ...
5757
β–ͺ Booting up control plane ...
5858
β–ͺ Configuring RBAC rules ...

β€Že2e-tests/utils.shβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ function start_minikube_if_not_running {
304304
echo "Starting minikube ..."
305305
# Please update tbe docs when changing kubernetes version
306306
minikube start \
307-
--kubernetes-version=v1.25.3 \
307+
--kubernetes-version=v1.28.0 \
308308
--extra-config=kubelet.image-gc-high-threshold=99 \
309309
--extra-config=kubelet.image-gc-low-threshold=98 \
310310
--extra-config=kubelet.minimum-container-ttl-duration=120m \

β€Žtools/olm/utils.Dockerfileβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN export ARCH=$(case $(uname -m) in x86_64) echo -n amd64 ;; aarch64) echo -n
3232
# operator-sdk
3333
RUN export ARCH=$(case $(uname -m) in x86_64) echo -n amd64 ;; aarch64) echo -n arm64 ;; *) echo -n $(uname -m) ;; esac); \
3434
export OS=$(uname | awk '{print tolower($0)}'); \
35-
export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.25.3 && \
35+
export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.28.0 && \
3636
curl -LO ${OPERATOR_SDK_DL_URL}/operator-sdk_${OS}_${ARCH} && \
3737
chmod +x operator-sdk_${OS}_${ARCH} && \
3838
mv operator-sdk_${OS}_${ARCH} /usr/local/bin/operator-sdk

0 commit comments

Comments
Β (0)