Skip to content

Commit

Permalink
feat: update all k8s version in docs (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
CasLubbers authored Jul 4, 2024
1 parent 285eda7 commit e48bf91
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/get-started/installation/azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ az aks create --name $CLUSTER_NAME \
--nodepool-name otomipool \
--node-count 3 \
--node-vm-size Standard_F8s_v2 \
--kubernetes-version 1.27.3 \
--kubernetes-version 1.29.1 \
--enable-cluster-autoscaler \
--min-count 1 \
--max-count 6 \
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/installation/civo.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Otomi can also be installed using the Civo marketplace. When Otomi is installed
5. Select the `Standard Large` node pool size (3 nodes)
6. Configure `Network` and `Firewall`
7. Show advanced options
8. Choose `Flannel`, Cluster type `K3S` and Kubernetes version `1.27.1`
8. Choose `Flannel`, Cluster type `K3S` and Kubernetes version `1.29.1`
9. In the Marketplace, under `Architecture`, de-activate `Traefik v2 (NodePort)`
10. Click `Create cluster`

Expand Down
4 changes: 2 additions & 2 deletions docs/get-started/installation/custom.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ To install Otomi on any other cloud or infrastructure platform, use the `custom`

Otomi currently supports the following Kubernetes versions:

- `1.25`
- `1.26`
- `1.27`
- `1.28`
- `1.29`

## Compute resources

Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/installation/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command documentation.
## Minimal configuration

:::info
As of version [1.0.0](https://github.com/redkubes/otomi-core/releases/tag/v0.21.0) Otomi supports Kubernetes versions `1.25`,`1.26` and `1.27`.
As of version [1.0.0](https://github.com/redkubes/otomi-core/releases/tag/v0.21.0) Otomi supports Kubernetes versions `1.27`,`1.28` and `1.29`.
:::

:::info
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/installation/linode.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sidebar_label: Linode

Configure the LKE cluster with the following specs

- K8s version: `1.27`
- K8s version: `1.29`
- Enable HA Control Plane
- Dedicated CPU: Dedicated 8 GB Plan, 4 CPUs, 160 GB Storage

Expand Down
6 changes: 3 additions & 3 deletions docs/get-started/installation/minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@ The installation examples below install Otomi without DNS.
### For Windows

```bash
minikube start --memory=8192 --cpus=8 --driver=hyperv --kubernetes-version=v1.26.9 --cni calico
minikube start --memory=8192 --cpus=8 --driver=hyperv --kubernetes-version=v1.29.1 --cni calico
```

### For Mac

```bash
minikube start --memory=8192 --cpus=8 --driver=hyperkit --kubernetes-version=v1.26.9 --cni calico
minikube start --memory=8192 --cpus=8 --driver=hyperkit --kubernetes-version=v1.29.1 --cni calico
```

### For Linux, using the KVM2 driver

```bash
minikube start --memory=8192 --cpus=8 --driver=kvm2 --kubernetes-version=v1.26.9 --cni calico
minikube start --memory=8192 --cpus=8 --driver=kvm2 --kubernetes-version=v1.29.1 --cni calico
```

## Enable Metallb (Network Load Balancer)
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/installation/scaleway.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ And run the following commands:
SCALEWAY_CLUSTER_NAME="otomi"
SCALEWAY_NODE_TYPE="PRO2-M"
SCALEWAY_NODE_POOL_MIN_SIZE=3
SCALEWAY_K8s_VERSION="1.27.6"
SCALEWAY_K8s_VERSION="1.29.1"
SCALEWAY_PRIVATE_NETWORK_ID=$(scw vpc private-network create project-id=$SCW_DEFAULT_PROJECT_ID name=$SCALEWAY_CLUSTER_NAME-pn region=nl-ams -ojson | jq -r .id)
scw k8s cluster create name=$SCALEWAY_CLUSTER_NAME \
project-id=$SCW_DEFAULT_PROJECT_ID \
Expand Down
6 changes: 3 additions & 3 deletions docs/get-started/prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Otomi requires a (Vanilla) Kubernetes cluster.

Otomi currently supports the following Kubernetes versions:

- `1.25`
- `1.26`
- `1.27`
- `1.28`
- `1.29`

### Minimal compute resource requirements

Expand Down Expand Up @@ -72,7 +72,7 @@ To install Otomi on a [Civo K3s](https://www.civo.com/kubernetes) cluster, use t
Otomi on CIVO requires at least:

* A node pool with `3` Large Standard nodes (4 CPU Cores and 8 GB RAM)
* Kubernetes version `1.26` or `1.27`
* Kubernetes version `1.28` or `1.29`

Otomi installs and configures Nginx as a default ingress controller. When launching from the marketplace, make sure to unselect the default Traefik v2 (NodePort).

Expand Down

0 comments on commit e48bf91

Please sign in to comment.