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.
4242For docker we recommend that you have [ Docker Desktop] ( https://www.docker.com/products/docker-desktop )  installed
4343and configured with at least 8GB of RAM.
4444For 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 ...
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.
4242For docker we recommend that you have [ Docker Desktop] ( https://www.docker.com/products/docker-desktop )  installed
4343and configured with at least 8GB of RAM.
4444For 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 ...
Original file line number Diff line number Diff 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 \
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
3232#  operator-sdk
3333RUN  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
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You canβt perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments