You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ipExcluded:=proxy.IsIPExcluded(ip) // Skip warning if minikube ip is already in NO_PROXY
750
750
k=strings.ToUpper(k) // for http_proxy & https_proxy
751
751
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})
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)
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/")
150
150
}
151
151
152
152
// Make sure all the unbound devices are in IOMMU groups that only contain unbound devices.
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/")
Copy file name to clipboardExpand all lines: site/content/en/docs/Overview/_index.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -8,25 +8,25 @@ description: >
8
8
9
9
minikube implements a local Kubernetes cluster on macOS, Linux, and Windows.
10
10
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.
12
12
13
13
minikube runs the latest stable release of Kubernetes, with support for standard Kubernetes features like:
14
14
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`
16
16
* Multi-cluster - using `minikube start -p <name>`
*[Configure apiserver and kubelet options](https://github.com/kubernetes/minikube/blob/master/docs/configuring_kubernetes.md) via command-line flags
*[Configure apiserver and kubelet options](https://minikube.sigs.k8s.io/docs/reference/configuration/kubernetes/) via command-line flags
24
24
25
25
As well as developer-friendly features:
26
26
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
Copy file name to clipboardExpand all lines: site/content/en/docs/Tasks/docker_registry.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,11 @@ As an alternative to [reusing the Docker daemon](docker_daemon.md), you may enab
11
11
12
12
Steps are as follows:
13
13
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.
15
15
16
16
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.
17
17
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..
Copy file name to clipboardExpand all lines: site/content/en/docs/Tutorials/openid_connect_auth.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Read more about OpenID Connect Authentication for Kubernetes here: <https://kube
13
13
14
14
## Configuring the API Server
15
15
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.
17
17
18
18
The following example configures your Minikube cluster to support RBAC and OIDC:
Copy file name to clipboardExpand all lines: translations/fr-FR.json
+2-2
Original file line number
Diff line number
Diff line change
@@ -321,7 +321,7 @@
321
321
"The time interval for each check that wait performs in seconds": "",
322
322
"The value passed to --format is invalid": "",
323
323
"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]": "",
325
325
"There's a new version for '{{.driver_executable}}'. Please consider upgrading. {{.documentation_url}}": "",
326
326
"These changes will take effect upon a minikube delete and then a minikube start": "",
327
327
"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 @@
377
377
"Waiting for the host to be provisioned ...": "",
378
378
"Waiting for:": "",
379
379
"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": "",
381
381
"You can delete them using the following command(s): ": "",
382
382
"You must specify a service name": "",
383
383
"Your host does not support KVM virtualization. Ensure that qemu-kvm is installed, and run 'virt-host-validate' to debug the problem": "",
Copy file name to clipboardExpand all lines: translations/zh-CN.json
+2-2
Original file line number
Diff line number
Diff line change
@@ -322,7 +322,7 @@
322
322
"The time interval for each check that wait performs in seconds": "",
323
323
"The value passed to --format is invalid": "",
324
324
"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]": "",
326
326
"There's a new version for '{{.driver_executable}}'. Please consider upgrading. {{.documentation_url}}": "",
327
327
"These changes will take effect upon a minikube delete and then a minikube start": "",
328
328
"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 @@
377
377
"Waiting for the host to be provisioned ...": "",
378
378
"Waiting for:": "",
379
379
"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": "",
381
381
"You can delete them using the following command(s): ": "",
382
382
"You must specify a service name": "",
383
383
"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