File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
content.zh/docs/try-flink-kubernetes-operator
content/docs/try-flink-kubernetes-operator Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -42,17 +42,17 @@ So that the `kubectl` and `helm` commands are available on your local system.
42
42
For docker we recommend that you have [ Docker Desktop] ( https://www.docker.com/products/docker-desktop ) installed
43
43
and configured with at least 8GB of RAM.
44
44
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:
46
46
47
47
``` bash
48
- minikube start --kubernetes-version=v1.25.3
48
+ minikube start --kubernetes-version=v1.28.0
49
49
π minikube v1.28.0 on Darwin 13.0.1
50
50
β¨ Automatically selected the docker driver. Other choices: hyperkit, ssh
51
51
π Using Docker Desktop driver with root privileges
52
52
π Starting control plane node minikube in cluster minikube
53
53
π Pulling base image ...
54
54
π₯ 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 ...
56
56
βͺ Generating certificates and keys ...
57
57
βͺ Booting up control plane ...
58
58
βͺ Configuring RBAC rules ...
Original file line number Diff line number Diff line change @@ -42,17 +42,17 @@ So that the `kubectl` and `helm` commands are available on your local system.
42
42
For docker we recommend that you have [ Docker Desktop] ( https://www.docker.com/products/docker-desktop ) installed
43
43
and configured with at least 8GB of RAM.
44
44
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:
46
46
47
47
``` bash
48
- minikube start --kubernetes-version=v1.25.3
48
+ minikube start --kubernetes-version=v1.28.0
49
49
π minikube v1.28.0 on Darwin 13.0.1
50
50
β¨ Automatically selected the docker driver. Other choices: hyperkit, ssh
51
51
π Using Docker Desktop driver with root privileges
52
52
π Starting control plane node minikube in cluster minikube
53
53
π Pulling base image ...
54
54
π₯ 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 ...
56
56
βͺ Generating certificates and keys ...
57
57
βͺ Booting up control plane ...
58
58
βͺ Configuring RBAC rules ...
Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ function start_minikube_if_not_running {
304
304
echo " Starting minikube ..."
305
305
# Please update tbe docs when changing kubernetes version
306
306
minikube start \
307
- --kubernetes-version=v1.25.3 \
307
+ --kubernetes-version=v1.28.0 \
308
308
--extra-config=kubelet.image-gc-high-threshold=99 \
309
309
--extra-config=kubelet.image-gc-low-threshold=98 \
310
310
--extra-config=kubelet.minimum-container-ttl-duration=120m \
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ RUN export ARCH=$(case $(uname -m) in x86_64) echo -n amd64 ;; aarch64) echo -n
32
32
# operator-sdk
33
33
RUN export ARCH=$(case $(uname -m) in x86_64) echo -n amd64 ;; aarch64) echo -n arm64 ;; *) echo -n $(uname -m) ;; esac); \
34
34
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 && \
36
36
curl -LO ${OPERATOR_SDK_DL_URL}/operator-sdk_${OS}_${ARCH} && \
37
37
chmod +x operator-sdk_${OS}_${ARCH} && \
38
38
mv operator-sdk_${OS}_${ARCH} /usr/local/bin/operator-sdk
You canβt perform that action at this time.
0 commit comments