-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add placeholder for docs for the generic driver
But most of it is identical to the "none" driver
- Loading branch information
1 parent
e4ebaea
commit fb6cf6b
Showing
3 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
title: "generic" | ||
weight: 3 | ||
description: > | ||
Linux generic (remote) driver | ||
aliases: | ||
- /docs/reference/drivers/generic | ||
--- | ||
|
||
## Overview | ||
|
||
This document is written for system integrators who wish to run minikube within a customized VM environment. The `generic` driver allows advanced minikube users to skip VM creation, allowing minikube to be run on a user-supplied VM. | ||
|
||
{{% readfile file="/docs/drivers/includes/generic_usage.inc" %}} | ||
|
||
## Issues | ||
|
||
* [Full list of open 'generic' driver issues](https://github.com/kubernetes/minikube/labels/co%2Fgeneric-driver) | ||
|
||
## Troubleshooting | ||
|
||
* Run `minikube start --alsologtostderr -v=4` to debug crashes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## Requirements | ||
|
||
A Linux VM with the following: | ||
|
||
* systemd or OpenRC | ||
* a container runtime, such as Docker or CRIO | ||
|
||
This VM must also meet the [kubeadm requirements](https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/install-kubeadm/), such as: | ||
|
||
* 2 CPU's | ||
* 2GB RAM | ||
* iptables (in legacy mode) | ||
* conntrack | ||
* crictl | ||
* SELinux permissive | ||
* cgroups v1 (v2 is not yet supported by Kubernetes) | ||
## Usage | ||
The generic driver requires the IP address of the VM to use. | ||
```shell | ||
minikube start --driver=generic --generic-ip-address=vm.example.com | ||
``` | ||