Skip to content

Commit e8824b7

Browse files
authored
Merge pull request #5052 from tstromberg/doc-redirect
Update code references to new documentation URL's
2 parents 4f1dd95 + f2acb4a commit e8824b7

File tree

14 files changed

+39
-39
lines changed

14 files changed

+39
-39
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ Huge Thank You for this release to our contributors:
11331133
* Added a `minikube dashboard` command to open the Kubernetes Dashboard.
11341134
* Updated Docker to version 1.11.1.
11351135
* Updated Kubernetes components to v1.3.0-alpha.5-330-g760c563.
1136-
* Generated documentation for all commands. Documentation [is here](https://github.com/kubernetes/minikube/blob/master/docs/minikube.md).
1136+
* Generated documentation for all commands. Documentation [is here](https://minikube.sigs.k8s.io/docs/).
11371137

11381138
## Version 0.2.0 - 6/3/2016
11391139

cmd/minikube/cmd/start.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ func prepareNone(vmDriver string) {
686686
out.T(out.Empty, "")
687687
out.WarningT("The 'none' driver provides limited isolation and may reduce system security and reliability.")
688688
out.WarningT("For more information, see:")
689-
out.T(out.URL, "https://github.com/kubernetes/minikube/blob/master/docs/vmdriver-none.md")
689+
out.T(out.URL, "https://minikube.sigs.k8s.io/docs/reference/drivers/none/")
690690
out.T(out.Empty, "")
691691
}
692692

@@ -749,7 +749,7 @@ func validateNetwork(h *host.Host) string {
749749
ipExcluded := proxy.IsIPExcluded(ip) // Skip warning if minikube ip is already in NO_PROXY
750750
k = strings.ToUpper(k) // for http_proxy & https_proxy
751751
if (k == "HTTP_PROXY" || k == "HTTPS_PROXY") && !ipExcluded && !warnedOnce {
752-
out.WarningT("You appear to be using a proxy, but your NO_PROXY environment does not include the minikube IP ({{.ip_address}}). Please see https://github.com/kubernetes/minikube/blob/master/docs/http_proxy.md for more details", out.V{"ip_address": ip})
752+
out.WarningT("You appear to be using a proxy, but your NO_PROXY environment does not include the minikube IP ({{.ip_address}}). Please see https://minikube.sigs.k8s.io/docs/reference/networking/proxy/ for more details", out.V{"ip_address": ip})
753753
warnedOnce = true
754754
}
755755
}

hack/conformance_tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ name: minikube
5656
version: ${version}
5757
website_url: https://github.com/kubernetes/minikube
5858
repo_url: https://github.com/kubernetes/minikube
59-
documentation_url: https://github.com/kubernetes/minikube/blob/master/docs/README.md
59+
documentation_url: https://minikube.sigs.k8s.io/docs/
6060
product_logo_url: https://raw.githubusercontent.com/kubernetes/minikube/master/images/logo/logo.svg
6161
type: installer
6262
description: minikube runs a local Kubernetes cluster on macOS, Linux, and Windows.

pkg/drivers/kvm/gpu.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ func getPassthroughableNVIDIADevices() ([]string, error) {
110110
return []string{}, fmt.Errorf("error reading %q: %v", sysKernelIOMMUGroupsPath, err)
111111
}
112112
if len(iommuGroups) == 0 {
113-
return []string{}, fmt.Errorf("no IOMMU groups found at %q. Make sure your host supports IOMMU. See instructions at https://github.com/kubernetes/minikube/blob/master/docs/gpu.md", sysKernelIOMMUGroupsPath)
113+
return []string{}, fmt.Errorf("no IOMMU groups found at %q. Make sure your host supports IOMMU. See instructions at https://minikube.sigs.k8s.io/docs/tutorials/nvidia_gpu/", sysKernelIOMMUGroupsPath)
114114
}
115115

116116
// Get list of PCI devices
@@ -146,7 +146,7 @@ func getPassthroughableNVIDIADevices() ([]string, error) {
146146
return []string{}, fmt.Errorf("no NVIDIA devices found")
147147
}
148148
if len(unboundNVIDIADevices) == 0 {
149-
return []string{}, fmt.Errorf("some NVIDIA devices were found but none of them were unbound. See instructions at https://github.com/kubernetes/minikube/blob/master/docs/gpu.md")
149+
return []string{}, fmt.Errorf("some NVIDIA devices were found but none of them were unbound. See instructions at https://minikube.sigs.k8s.io/docs/tutorials/nvidia_gpu/")
150150
}
151151

152152
// Make sure all the unbound devices are in IOMMU groups that only contain unbound devices.
@@ -161,7 +161,7 @@ func getPassthroughableNVIDIADevices() ([]string, error) {
161161
}
162162
}
163163
if len(isolatedNVIDIADevices) == 0 {
164-
return []string{}, fmt.Errorf("some unbound NVIDIA devices were found but they had other devices in their IOMMU group that were bound. See instructoins at https://github.com/kubernetes/minikube/blob/master/docs/gpu.md")
164+
return []string{}, fmt.Errorf("some unbound NVIDIA devices were found but they had other devices in their IOMMU group that were bound. See instructoins at https://minikube.sigs.k8s.io/docs/tutorials/nvidia_gpu/")
165165
}
166166

167167
return isolatedNVIDIADevices, nil

pkg/drivers/none/none.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var cleanupPaths = []string{
4444
}
4545

4646
// Driver is a driver designed to run kubeadm w/o VM management, and assumes systemctl.
47-
// https://github.com/kubernetes/minikube/blob/master/docs/vmdriver-none.md
47+
// https://minikube.sigs.k8s.io/docs/reference/drivers/none/
4848
type Driver struct {
4949
*drivers.BaseDriver
5050
*pkgdrivers.CommonDriver

pkg/minikube/cluster/cluster.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ func createHost(api libmachine.API, config cfg.MachineConfig) (*host.Host, error
414414
if config.VMDriver == constants.DriverVmwareFusion && viper.GetBool(cfg.ShowDriverDeprecationNotification) {
415415
out.WarningT(`The vmwarefusion driver is deprecated and support for it will be removed in a future release.
416416
Please consider switching to the new vmware unified driver, which is intended to replace the vmwarefusion driver.
417-
See https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#vmware-unified-driver for more information.
417+
See https://minikube.sigs.k8s.io/docs/reference/drivers/vmware/ for more information.
418418
To disable this message, run [minikube config set ShowDriverDeprecationNotification false]`)
419419
}
420420
if !localDriver(config.VMDriver) {

pkg/minikube/constants/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -424,5 +424,5 @@ const (
424424

425425
const (
426426
// DriverDocumentation the documentation of the KVM driver
427-
DriverDocumentation = "https://github.com/kubernetes/minikube/blob/master/docs/drivers.md"
427+
DriverDocumentation = "https://minikube.sigs.k8s.io/docs/reference/drivers/"
428428
)

pkg/minikube/problem/err_map.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var vmProblems = map[string]match{
3333
"HYPERKIT_NO_IP": {
3434
Regexp: re(`IP address never found in dhcp leases file Temporary Error: Could not find an IP address for`),
3535
Advice: "Install the latest minikube hyperkit driver, and run 'minikube delete'",
36-
URL: "https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#hyperkit-driver",
36+
URL: "https://minikube.sigs.k8s.io/docs/reference/drivers/hyperkit/",
3737
Issues: []int{1926, 4206},
3838
},
3939
"VBOX_NOT_FOUND": {
@@ -89,12 +89,12 @@ var vmProblems = map[string]match{
8989
"KVM2_NOT_FOUND": {
9090
Regexp: re(`Driver "kvm2" not found. Do you have the plugin binary .* accessible in your PATH`),
9191
Advice: "Please install the minikube kvm2 VM driver, or select an alternative --vm-driver",
92-
URL: "https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#kvm2-driver",
92+
URL: "https://minikube.sigs.k8s.io/docs/reference/drivers/kvm2/",
9393
},
9494
"HYPERKIT_NOT_FOUND": {
9595
Regexp: re(`Driver "hyperkit" not found. Do you have the plugin binary .* accessible in your PATH?`),
9696
Advice: "Please install the minikube hyperkit VM driver, or select an alternative --vm-driver",
97-
URL: "https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#hyperkit-driver",
97+
URL: "https://minikube.sigs.k8s.io/docs/reference/drivers/hyperkit/",
9898
},
9999
"KVM2_RESTART_NO_IP": {
100100
Regexp: re(`Error starting stopped host: Machine didn't return an IP after 120 seconds`),
@@ -104,7 +104,7 @@ var vmProblems = map[string]match{
104104
"KVM2_START_NO_IP": {
105105
Regexp: re(`Error in driver during machine creation: Machine didn't return an IP after 120 seconds`),
106106
Advice: "Install the latest kvm2 driver and run 'virt-host-validate'",
107-
URL: "https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#kvm2-driver",
107+
URL: "https://minikube.sigs.k8s.io/docs/reference/drivers/kvm2/",
108108
Issues: []int{4249, 3566},
109109
},
110110
"KVM2_NETWORK_DEFINE_XML": {
@@ -127,17 +127,17 @@ var vmProblems = map[string]match{
127127
"KVM_CONNECTION_ERROR": {
128128
Regexp: re(`error connecting to libvirt socket`),
129129
Advice: "Have you set up libvirt correctly?",
130-
URL: "https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#kvm2-driver",
130+
URL: "https://minikube.sigs.k8s.io/docs/reference/drivers/kvm2/",
131131
},
132132
"DRIVER_CRASHED": {
133133
Regexp: re(`Error attempting to get plugin server address for RPC`),
134134
Advice: "The VM driver exited with an error, and may be corrupt. Run 'minikube start' with --alsologtostderr -v=8 to see the error",
135-
URL: "https://github.com/kubernetes/minikube/blob/master/docs/drivers.md",
135+
URL: "https://minikube.sigs.k8s.io/docs/reference/drivers/",
136136
},
137137
"DRIVER_EXITED": {
138138
Regexp: re(`Unable to start VM: create: creating: exit status 1`),
139139
Advice: "Re-run 'minikube start' with --alsologtostderr -v=8 to see the VM driver error message",
140-
URL: "https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#troubleshooting",
140+
URL: "https://minikube.sigs.k8s.io/docs/reference/drivers/#troubleshooting",
141141
},
142142
"VM_BOOT_FAILED_HYPERV_ENABLED": {
143143
Regexp: re(`VirtualBox won't boot a 64bits VM when Hyper-V is activated`),
@@ -173,7 +173,7 @@ var vmProblems = map[string]match{
173173
}
174174

175175
// proxyDoc is the URL to proxy documentation
176-
const proxyDoc = "https://github.com/kubernetes/minikube/blob/master/docs/http_proxy.md"
176+
const proxyDoc = "https://minikube.sigs.k8s.io/docs/reference/networking/proxy/"
177177

178178
// netProblems are network related problems.
179179
var netProblems = map[string]match{
@@ -262,7 +262,7 @@ var osProblems = map[string]match{
262262
"SYSTEMCTL_EXIT_1": {
263263
Regexp: re(`Failed to enable container runtime: .*sudo systemctl start docker: exit status 1`),
264264
Advice: "If using the none driver, ensure that systemctl is installed",
265-
URL: "https://github.com/kubernetes/minikube/blob/master/docs/vmdriver-none.md",
265+
URL: "https://minikube.sigs.k8s.io/docs/reference/drivers/none/",
266266
Issues: []int{2704},
267267
},
268268
}

site/content/en/_index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ <h3>Highlights</h3>
5757

5858
{{< blocks/section color="white" >}}
5959
{{% blocks/feature icon="fa-star" title="Developer focused" %}}
60-
- [LoadBalancer emulation](https://github.com/kubernetes/minikube/blob/master/docs/tunnel.md)
61-
- [Addons Marketplace](https://github.com/kubernetes/minikube/blob/master/docs/addons.md)
62-
- [Integrated Dashboard](https://github.com/kubernetes/minikube/blob/master/docs/dashboard.md)
63-
- [GPU support](https://github.com/kubernetes/minikube/blob/master/docs/gpu.md)
60+
- [LoadBalancer emulation](https://minikube.sigs.k8s.io/docs/tasks/loadbalancer/)
61+
- [Addons Marketplace](https://minikube.sigs.k8s.io/docs/tasks/addons/)
62+
- [Integrated Dashboard](https://minikube.sigs.k8s.io/docs/tasks/dashboard/)
63+
- [GPU support](https://minikube.sigs.k8s.io/docs/tutorials/nvidia_gpu/)
6464
- Reusable Docker daemon
6565
{{% /blocks/feature %}}
6666

site/content/en/docs/Overview/_index.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@ description: >
88

99
minikube implements a local Kubernetes cluster on macOS, Linux, and Windows.
1010

11-
minikube's [primary goals](https://github.com/kubernetes/minikube/blob/master/docs/contributors/principles.md) are to be the best tool for local Kubernetes application development and to support all Kubernetes features that fit.
11+
minikube's [primary goals](https://minikube.sigs.k8s.io/docs/concepts/principles/) are to be the best tool for local Kubernetes application development and to support all Kubernetes features that fit.
1212

1313
minikube runs the latest stable release of Kubernetes, with support for standard Kubernetes features like:
1414

15-
* [LoadBalancer](https://github.com/kubernetes/minikube/blob/master/docs/tunnel.md) - using `minikube tunnel`
15+
* [LoadBalancer](https://minikube.sigs.k8s.io/docs/tasks/loadbalancer/) - using `minikube tunnel`
1616
* Multi-cluster - using `minikube start -p <name>`
1717
* NodePorts - using `minikube service`
18-
* [Persistent Volumes](https://github.com/kubernetes/minikube/blob/master/docs/persistent_volumes.md)
18+
* [Persistent Volumes](https://minikube.sigs.k8s.io/docs/reference/persistent_volumes/)
1919
* Ingress
2020
* RBAC
21-
* [Dashboard](https://github.com/kubernetes/minikube/blob/master/docs/dashboard.md) - `minikube dashboard`
22-
* [Container runtimes](https://github.com/kubernetes/minikube/blob/master/docs/alternative_runtimes.md) - `start --container-runtime`
23-
* [Configure apiserver and kubelet options](https://github.com/kubernetes/minikube/blob/master/docs/configuring_kubernetes.md) via command-line flags
21+
* [Dashboard](https://minikube.sigs.k8s.io/docs/tasks/dashboard/) - `minikube dashboard`
22+
* [Container runtimes](https://minikube.sigs.k8s.io/docs/reference/runtimes/) - `start --container-runtime`
23+
* [Configure apiserver and kubelet options](https://minikube.sigs.k8s.io/docs/reference/configuration/kubernetes/) via command-line flags
2424

2525
As well as developer-friendly features:
2626

27-
* [Addons](https://github.com/kubernetes/minikube/blob/master/docs/addons.md) - a marketplace for developers to share configurations for running services on minikube
28-
* [GPU support](https://github.com/kubernetes/minikube/blob/master/docs/gpu.md) - for machine learning
29-
* [Filesystem mounts](https://github.com/kubernetes/minikube/blob/master/docs/host_folder_mount.md)
27+
* [Addons](https://minikube.sigs.k8s.io/docs/tasks/addons/) - a marketplace for developers to share configurations for running services on minikube
28+
* [GPU support](https://minikube.sigs.k8s.io/docs/tutorials/nvidia_gpu/) - for machine learning
29+
* [Filesystem mounts](https://minikube.sigs.k8s.io/docs/tasks/mount/)
3030
* Automatic failure analysis
3131

3232
## Why do I want it?

site/content/en/docs/Tasks/docker_registry.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ As an alternative to [reusing the Docker daemon](docker_daemon.md), you may enab
1111

1212
Steps are as follows:
1313

14-
For illustration purpose, we will assume that minikube VM has one of the ip from `192.168.39.0/24` subnet. If you have not overridden these subnets as per [networking guide](https://github.com/kubernetes/minikube/blob/master/docs/networking.md), you can find out default subnet being used by minikube for a specific OS and driver combination [here](https://github.com/kubernetes/minikube/blob/dfd9b6b83d0ca2eeab55588a16032688bc26c348/pkg/minikube/cluster/cluster.go#L408) which is subject to change. Replace `192.168.39.0/24` with appropriate values for your environment wherever applicable.
14+
For illustration purpose, we will assume that minikube VM has one of the ip from `192.168.39.0/24` subnet. If you have not overridden these subnets as per [networking guide](https://minikube.sigs.k8s.io/docs/reference/networking/), you can find out default subnet being used by minikube for a specific OS and driver combination [here](https://github.com/kubernetes/minikube/blob/dfd9b6b83d0ca2eeab55588a16032688bc26c348/pkg/minikube/cluster/cluster.go#L408) which is subject to change. Replace `192.168.39.0/24` with appropriate values for your environment wherever applicable.
1515

1616
Ensure that docker is configured to use `192.168.39.0/24` as insecure registry. Refer [here](https://docs.docker.com/registry/insecure/) for instructions.
1717

18-
Ensure that `192.168.39.0/24` is enabled as insecure registry in minikube. Refer [here](https://github.com/kubernetes/minikube/blob/master/docs/insecure_registry.md) for instructions..
18+
Ensure that `192.168.39.0/24` is enabled as insecure registry in minikube. Refer [here](https://minikube.sigs.k8s.io/docs/tasks/registry/insecure/) for instructions..
1919

2020
Enable minikube registry addon:
2121

site/content/en/docs/Tutorials/openid_connect_auth.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Read more about OpenID Connect Authentication for Kubernetes here: <https://kube
1313

1414
## Configuring the API Server
1515

16-
Configuration values can be passed to the API server using the `--extra-config` flag on the `minikube start` command. See [configuring_kubernetes.md](https://github.com/kubernetes/minikube/blob/master/docs/configuring_kubernetes.md) for more details.
16+
Configuration values can be passed to the API server using the `--extra-config` flag on the `minikube start` command. See [configuring_kubernetes.md](https://minikube.sigs.k8s.io/docs/reference/configuration/kubernetes/) for more details.
1717

1818
The following example configures your Minikube cluster to support RBAC and OIDC:
1919

translations/fr-FR.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@
321321
"The time interval for each check that wait performs in seconds": "",
322322
"The value passed to --format is invalid": "",
323323
"The value passed to --format is invalid: {{.error}}": "",
324-
"The vmwarefusion driver is deprecated and support for it will be removed in a future release.\n\t\t\tPlease consider switching to the new vmware unified driver, which is intended to replace the vmwarefusion driver.\n\t\t\tSee https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#vmware-unified-driver for more information.\n\t\t\tTo disable this message, run [minikube config set ShowDriverDeprecationNotification false]": "",
324+
"The vmwarefusion driver is deprecated and support for it will be removed in a future release.\n\t\t\tPlease consider switching to the new vmware unified driver, which is intended to replace the vmwarefusion driver.\n\t\t\tSee https://minikube.sigs.k8s.io/docs/reference/drivers/vmware/ for more information.\n\t\t\tTo disable this message, run [minikube config set ShowDriverDeprecationNotification false]": "",
325325
"There's a new version for '{{.driver_executable}}'. Please consider upgrading. {{.documentation_url}}": "",
326326
"These changes will take effect upon a minikube delete and then a minikube start": "",
327327
"This addon does not have an endpoint defined for the 'addons open' command.\nYou can add one by annotating a service with the label {{.labelName}}:{{.addonName}}": "",
@@ -377,7 +377,7 @@
377377
"Waiting for the host to be provisioned ...": "",
378378
"Waiting for:": "",
379379
"Where to root the NFS Shares (defaults to /nfsshares, only supported with hyperkit now)": "",
380-
"You appear to be using a proxy, but your NO_PROXY environment does not include the minikube IP ({{.ip_address}}). Please see https://github.com/kubernetes/minikube/blob/master/docs/http_proxy.md for more details": "",
380+
"You appear to be using a proxy, but your NO_PROXY environment does not include the minikube IP ({{.ip_address}}). Please see https://minikube.sigs.k8s.io/docs/reference/networking/proxy/ for more details": "",
381381
"You can delete them using the following command(s): ": "",
382382
"You must specify a service name": "",
383383
"Your host does not support KVM virtualization. Ensure that qemu-kvm is installed, and run 'virt-host-validate' to debug the problem": "",

translations/zh-CN.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@
322322
"The time interval for each check that wait performs in seconds": "",
323323
"The value passed to --format is invalid": "",
324324
"The value passed to --format is invalid: {{.error}}": "",
325-
"The vmwarefusion driver is deprecated and support for it will be removed in a future release.\n\t\t\tPlease consider switching to the new vmware unified driver, which is intended to replace the vmwarefusion driver.\n\t\t\tSee https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#vmware-unified-driver for more information.\n\t\t\tTo disable this message, run [minikube config set ShowDriverDeprecationNotification false]": "",
325+
"The vmwarefusion driver is deprecated and support for it will be removed in a future release.\n\t\t\tPlease consider switching to the new vmware unified driver, which is intended to replace the vmwarefusion driver.\n\t\t\tSee https://minikube.sigs.k8s.io/docs/reference/drivers/vmware/ for more information.\n\t\t\tTo disable this message, run [minikube config set ShowDriverDeprecationNotification false]": "",
326326
"There's a new version for '{{.driver_executable}}'. Please consider upgrading. {{.documentation_url}}": "",
327327
"These changes will take effect upon a minikube delete and then a minikube start": "",
328328
"This addon does not have an endpoint defined for the 'addons open' command.\nYou can add one by annotating a service with the label {{.labelName}}:{{.addonName}}": "",
@@ -377,7 +377,7 @@
377377
"Waiting for the host to be provisioned ...": "",
378378
"Waiting for:": "",
379379
"Where to root the NFS Shares (defaults to /nfsshares, only supported with hyperkit now)": "",
380-
"You appear to be using a proxy, but your NO_PROXY environment does not include the minikube IP ({{.ip_address}}). Please see https://github.com/kubernetes/minikube/blob/master/docs/http_proxy.md for more details": "",
380+
"You appear to be using a proxy, but your NO_PROXY environment does not include the minikube IP ({{.ip_address}}). Please see https://minikube.sigs.k8s.io/docs/reference/networking/proxy/ for more details": "",
381381
"You can delete them using the following command(s): ": "",
382382
"You must specify a service name": "",
383383
"Your host does not support KVM virtualization. Ensure that qemu-kvm is installed, and run 'virt-host-validate' to debug the problem": "",

0 commit comments

Comments
 (0)