Merge pull request #4559 from afbjorklund/markdownlint-new

Make markdownlint happy about whitespace
pull/4571/head
Thomas Strömberg 2019-06-24 10:37:01 +08:00 committed by GitHub
commit fa54e2ab9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 16 additions and 22 deletions

View File

@ -1,6 +1,6 @@
# Minikube Release Notes # Minikube Release Notes
# Version 1.1.1 - 2019-06-07 ## Version 1.1.1 - 2019-06-07
* Upgrade to kubernetes 1.14.3 [#4444](https://github.com/kubernetes/minikube/pull/4444) * Upgrade to kubernetes 1.14.3 [#4444](https://github.com/kubernetes/minikube/pull/4444)
* fix ShowDriverDeprecationNotification config setting [#4431](https://github.com/kubernetes/minikube/pull/4431) * fix ShowDriverDeprecationNotification config setting [#4431](https://github.com/kubernetes/minikube/pull/4431)
@ -28,6 +28,7 @@
* Skip kvm network deletion if private network doesn't exist [#4331](https://github.com/kubernetes/minikube/pull/4331) * Skip kvm network deletion if private network doesn't exist [#4331](https://github.com/kubernetes/minikube/pull/4331)
Huge thank you for this release towards our contributors: Huge thank you for this release towards our contributors:
- Abdulla Bin Mustaqeem - Abdulla Bin Mustaqeem
- Anders Björklund - Anders Björklund
- Andy Daniels - Andy Daniels
@ -169,6 +170,7 @@ Thank you to the contributors whose work made v1.1 into something we could all b
* ```#compdef``` must be the first line [#4015](https://github.com/kubernetes/minikube/pull/4015) * ```#compdef``` must be the first line [#4015](https://github.com/kubernetes/minikube/pull/4015)
Huge thank you for this release towards our contributors: Huge thank you for this release towards our contributors:
- Abdulla Bin Mustaqeem - Abdulla Bin Mustaqeem
- Anders F Björklund - Anders F Björklund
- Andy Daniels - Andy Daniels

View File

@ -5,7 +5,6 @@ To use this feature, you can use the `--extra-config` flag on the `minikube star
This flag is repeated, so you can pass it several times with several different values to set multiple options. This flag is repeated, so you can pass it several times with several different values to set multiple options.
## Selecting a Kubernetes version ## Selecting a Kubernetes version
minikube defaults to the latest stable version of Kubernetes. You may select a different Kubernetes release by using the `--kubernetes-version` flag, for example: minikube defaults to the latest stable version of Kubernetes. You may select a different Kubernetes release by using the `--kubernetes-version` flag, for example:

View File

@ -96,7 +96,7 @@ Verify release checksums by running`make check-release`
## Update minikube frontpage ## Update minikube frontpage
We document the last 3 releases on our frontpage. Please add it to the list: https://github.com/kubernetes/minikube/blob/master/README.md We document the last 3 releases on our frontpage. Please add it to the list: <https://github.com/kubernetes/minikube/blob/master/README.md>
## Update official Kubernetes docs ## Update official Kubernetes docs

View File

@ -29,7 +29,6 @@ Check your installed virsh version:
If your version of virsh is newer than 1.3.1 (January 2016), you may download our pre-built driver: If your version of virsh is newer than 1.3.1 (January 2016), you may download our pre-built driver:
```shell ```shell
curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-kvm2 \ curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-kvm2 \
&& sudo install docker-machine-driver-kvm2 /usr/local/bin/ && sudo install docker-machine-driver-kvm2 /usr/local/bin/
@ -37,12 +36,13 @@ curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-
If your version of virsh is older than 1.3.1 (Januarry 2016), you may build your own driver binary if you have go 1.12+ installed. If your version of virsh is older than 1.3.1 (Januarry 2016), you may build your own driver binary if you have go 1.12+ installed.
```shell ```console
$ sudo apt install libvirt-dev $ sudo apt install libvirt-dev
$ git clone https://github.com/kubernetes/minikube.git $ git clone https://github.com/kubernetes/minikube.git
$ cd minikube $ cd minikube
$ make out/docker-machine-driver-kvm2 $ make out/docker-machine-driver-kvm2
$ sudo install out/docker-machine-driver-kvm2 /usr/local/bin $ sudo install out/docker-machine-driver-kvm2 /usr/local/bin
$
``` ```
To finish the kvm installation, start and verify the `libvirtd` service To finish the kvm installation, start and verify the `libvirtd` service
@ -191,7 +191,7 @@ and run minikube as usual:
minikube start minikube start
``` ```
# Troubleshooting ## Troubleshooting
minikube is currently unable to display the error message received back from the VM driver. Users can however reveal the error by passing `--alsologtostderr -v=8` to `minikube start`. For instance: minikube is currently unable to display the error message received back from the VM driver. Users can however reveal the error by passing `--alsologtostderr -v=8` to `minikube start`. For instance:
@ -201,7 +201,7 @@ minikube start --vm-driver=kvm2 --alsologtostderr -v=8
Output: Output:
``` ```text
Found binary path at /usr/local/bin/docker-machine-driver-kvm2 Found binary path at /usr/local/bin/docker-machine-driver-kvm2
Launching plugin server for driver kvm2 Launching plugin server for driver kvm2
Error starting plugin binary: fork/exec /usr/local/bin/docker-machine-driver-kvm2: exec format error Error starting plugin binary: fork/exec /usr/local/bin/docker-machine-driver-kvm2: exec format error

View File

@ -44,7 +44,6 @@ To set these environment variables permanently, consider adding these to your [s
As of v1.0, minikube automatically configures the Docker instance inside of the VM to use the proxy environment variables, unless you have specified a `--docker-env` override. If you need to manually configure Docker for a set of proxies, use: As of v1.0, minikube automatically configures the Docker instance inside of the VM to use the proxy environment variables, unless you have specified a `--docker-env` override. If you need to manually configure Docker for a set of proxies, use:
```shell ```shell
minikube start \ minikube start \
--docker-env=HTTP_PROXY=$HTTP_PROXY \ --docker-env=HTTP_PROXY=$HTTP_PROXY \

View File

@ -22,7 +22,6 @@ We also have a shortcut for fetching the minikube IP and a service's `NodePort`:
`minikube service --url $SERVICE` `minikube service --url $SERVICE`
### Increasing the NodePort range ### Increasing the NodePort range
By default, minikube only exposes ports 30000-32767. If this is not enough, you can configure the apiserver to allow all ports using: By default, minikube only exposes ports 30000-32767. If this is not enough, you can configure the apiserver to allow all ports using:
@ -31,7 +30,6 @@ By default, minikube only exposes ports 30000-32767. If this is not enough, you
This flag also accepts a comma separated list of ports and port ranges. This flag also accepts a comma separated list of ports and port ranges.
## Access to LoadBalancer services using `minikube tunnel` ## Access to LoadBalancer services using `minikube tunnel`
Services of type `LoadBalancer` can be exposed via the `minikube tunnel` command. Services of type `LoadBalancer` can be exposed via the `minikube tunnel` command.
@ -77,5 +75,4 @@ minikube tunnel --cleanup
If you want to avoid entering the root password, consider setting NOPASSWD for "ip" and "route" commands: If you want to avoid entering the root password, consider setting NOPASSWD for "ip" and "route" commands:
https://superuser.com/questions/1328452/sudoers-nopasswd-for-single-executable-but-allowing-others <https://superuser.com/questions/1328452/sudoers-nopasswd-for-single-executable-but-allowing-others>

View File

@ -18,7 +18,7 @@ As of v1.0, `minikube start` is offline compatible out of the box. Here are some
For offline use on other hosts, one can copy the contents of `~/.minikube/cache`. As of the v1.0 release, this directory For offline use on other hosts, one can copy the contents of `~/.minikube/cache`. As of the v1.0 release, this directory
contains 685MB of data: contains 685MB of data:
``` ```text
cache/iso/minikube-v1.0.0.iso cache/iso/minikube-v1.0.0.iso
cache/images/gcr.io/k8s-minikube/storage-provisioner_v1.8.1 cache/images/gcr.io/k8s-minikube/storage-provisioner_v1.8.1
cache/images/k8s.gcr.io/k8s-dns-sidecar-amd64_1.14.13 cache/images/k8s.gcr.io/k8s-dns-sidecar-amd64_1.14.13
@ -38,5 +38,3 @@ cache/v1.14.0/kubelet
``` ```
If any of these files exist, minikube will use copy them into the VM directly rather than pulling them from the internet. If any of these files exist, minikube will use copy them into the VM directly rather than pulling them from the internet.

View File

@ -6,8 +6,7 @@ As soon as a VM is created, minikube will populate the root filesystem with any
For example, running the following commands will result in `/etc/OMG` being added with the contents of `hello` into the minikube VM: For example, running the following commands will result in `/etc/OMG` being added with the contents of `hello` into the minikube VM:
```shell
```
mkdir -p ~/.minikube/files/etc mkdir -p ~/.minikube/files/etc
echo hello > ~/.minikube/files/etc/OMG echo hello > ~/.minikube/files/etc/OMG
minikube start minikube start