summaryrefslogtreecommitdiffstats
path: root/development/minikube/README
diff options
context:
space:
mode:
Diffstat (limited to 'development/minikube/README')
-rw-r--r--development/minikube/README24
1 files changed, 24 insertions, 0 deletions
diff --git a/development/minikube/README b/development/minikube/README
new file mode 100644
index 0000000000..ab22eab510
--- /dev/null
+++ b/development/minikube/README
@@ -0,0 +1,24 @@
+minikube
+
+Local Kubernetes, focused on application development & education
+
+As of today bare-metal runs are only supported on systemd enabled
+systems. You will need either docker, virtualbox or podman
+(experimental) to run minikube VMs.
+
+Depending on the driver of choice run it as either:
+
+ minikube start --driver=docker
+
+or
+
+ minikube start --driver=virtualbox
+
+or (experimental)
+
+ minikube start --driver=podman --container-runtime=cri-o
+
+as a non-root user.
+
+kubectl is required to administer your cluster but is not required for
+the installation.