Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ So that the `kubectl` and `helm` commands are available on your local system.
For docker we recommend that you have [Docker Desktop](https://www.docker.com/products/docker-desktop) installed
and configured with at least 8GB of RAM.
For kubernetes [minikube](https://minikube.sigs.k8s.io/docs/start/) is our choice, at the time of writing this we are
using version v1.25.3 (end-to-end tests are using the same version). You can start a cluster with the following command:
using version v1.28.0 (end-to-end tests are using the same version). You can start a cluster with the following command:

```bash
minikube start --kubernetes-version=v1.25.3
minikube start --kubernetes-version=v1.28.0
😄 minikube v1.28.0 on Darwin 13.0.1
✨ Automatically selected the docker driver. Other choices: hyperkit, ssh
📌 Using Docker Desktop driver with root privileges
👍 Starting control plane node minikube in cluster minikube
🚜 Pulling base image ...
🔥 Creating docker container (CPUs=2, Memory=4000MB) ...
🐳 Preparing Kubernetes v1.25.3 on Docker 20.10.20 ...
🐳 Preparing Kubernetes v1.28.0 on Docker 20.10.20 ...
▪ Generating certificates and keys ...
▪ Booting up control plane ...
▪ Configuring RBAC rules ...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ So that the `kubectl` and `helm` commands are available on your local system.
For docker we recommend that you have [Docker Desktop](https://www.docker.com/products/docker-desktop) installed
and configured with at least 8GB of RAM.
For kubernetes [minikube](https://minikube.sigs.k8s.io/docs/start/) is our choice, at the time of writing this we are
using version v1.25.3 (end-to-end tests are using the same version). You can start a cluster with the following command:
using version v1.28.0 (end-to-end tests are using the same version). You can start a cluster with the following command:

```bash
minikube start --kubernetes-version=v1.25.3
minikube start --kubernetes-version=v1.28.0
😄 minikube v1.28.0 on Darwin 13.0.1
✨ Automatically selected the docker driver. Other choices: hyperkit, ssh
📌 Using Docker Desktop driver with root privileges
👍 Starting control plane node minikube in cluster minikube
🚜 Pulling base image ...
🔥 Creating docker container (CPUs=2, Memory=4000MB) ...
🐳 Preparing Kubernetes v1.25.3 on Docker 20.10.20 ...
🐳 Preparing Kubernetes v1.28.0 on Docker 20.10.20 ...
▪ Generating certificates and keys ...
▪ Booting up control plane ...
▪ Configuring RBAC rules ...
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ function start_minikube_if_not_running {
echo "Starting minikube ..."
# Please update tbe docs when changing kubernetes version
minikube start \
--kubernetes-version=v1.25.3 \
--kubernetes-version=v1.28.0 \
--extra-config=kubelet.image-gc-high-threshold=99 \
--extra-config=kubelet.image-gc-low-threshold=98 \
--extra-config=kubelet.minimum-container-ttl-duration=120m \
Expand Down
2 changes: 1 addition & 1 deletion tools/olm/utils.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN export ARCH=$(case $(uname -m) in x86_64) echo -n amd64 ;; aarch64) echo -n
# operator-sdk
RUN export ARCH=$(case $(uname -m) in x86_64) echo -n amd64 ;; aarch64) echo -n arm64 ;; *) echo -n $(uname -m) ;; esac); \
export OS=$(uname | awk '{print tolower($0)}'); \
export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.25.3 && \
export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.28.0 && \
curl -LO ${OPERATOR_SDK_DL_URL}/operator-sdk_${OS}_${ARCH} && \
chmod +x operator-sdk_${OS}_${ARCH} && \
mv operator-sdk_${OS}_${ARCH} /usr/local/bin/operator-sdk
Expand Down