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
1 change: 1 addition & 0 deletions templates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ Container orchestration:
- [`k0s`](./k0s.yaml): [k0s](https://k0sproject.io/) Zero Friction Kubernetes
- [`k3s`](./k3s.yaml): Kubernetes via k3s
- [`k8s`](./k8s.yaml): ⭐Kubernetes via kubeadm
- [`experimental/rke2`](./experimental/rke2.yaml): RKE2
- [`experimental/u7s`](./experimental/u7s.yaml): [Usernetes](https://github.com/rootless-containers/usernetes): Rootless Kubernetes

Optional feature enablers:
Expand Down
10 changes: 10 additions & 0 deletions website/content/en/docs/examples/containers/kubernetes/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@ kubectl create service nodeport nginx --node-port=31080 --tcp=80:80

See also <https://docs.k0sproject.io/>.
{{% /tab %}}
{{% tab header="RKE2" %}}
```bash
limactl start template://experimental/rke2
export KUBECONFIG=$(limactl list rke2 --format 'unix://{{.Dir}}/copied-from-guest/kubeconfig.yaml')
kubectl create deployment nginx --image nginx:alpine
kubectl create service nodeport nginx --node-port=31080 --tcp=80:80
```

See also <https://docs.rke2.io/>.
{{% /tab %}}
{{% tab header="Usernetes" %}}
```bash
limactl start template://experimental/u7s
Expand Down