File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
website/content/en/docs/examples/containers/kubernetes Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ Container orchestration:
6060- [ ` k0s ` ] ( ./k0s.yaml ) : [ k0s] ( https://k0sproject.io/ ) Zero Friction Kubernetes
6161- [ ` k3s ` ] ( ./k3s.yaml ) : Kubernetes via k3s
6262- [ ` k8s ` ] ( ./k8s.yaml ) : ⭐Kubernetes via kubeadm
63+ - [ ` experimental/rke2 ` ] ( ./experimental/rke2.yaml ) : RKE2
6364- [ ` experimental/u7s ` ] ( ./experimental/u7s.yaml ) : [ Usernetes] ( https://github.com/rootless-containers/usernetes ) : Rootless Kubernetes
6465
6566Optional feature enablers:
Original file line number Diff line number Diff line change @@ -39,6 +39,16 @@ kubectl create service nodeport nginx --node-port=31080 --tcp=80:80
3939
4040See also < https://docs.k0sproject.io/ > .
4141{{% /tab %}}
42+ {{% tab header="RKE2" %}}
43+ ``` bash
44+ limactl start template://experimental/rke2
45+ export KUBECONFIG=$( limactl list rke2 --format ' unix://{{.Dir}}/copied-from-guest/kubeconfig.yaml' )
46+ kubectl create deployment nginx --image nginx:alpine
47+ kubectl create service nodeport nginx --node-port=31080 --tcp=80:80
48+ ```
49+
50+ See also < https://docs.rke2.io/ > .
51+ {{% /tab %}}
4252{{% tab header="Usernetes" %}}
4353``` bash
4454limactl start template://experimental/u7s
You can’t perform that action at this time.
0 commit comments