From cbb97958eba42c68d7af26f8abf5d85748add68f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lena=20Br=C3=BCder?= Date: Wed, 7 Mar 2018 10:02:44 +0100 Subject: [PATCH 1/3] deactivated hsts by default HSTS has been deactivated explicitly by default for the ingress controller in minikube, because it causes trouble for local development. Minikube is intended for local development, so this feature should not be turned on by default. --- deploy/addons/ingress/ingress-configmap.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy/addons/ingress/ingress-configmap.yaml b/deploy/addons/ingress/ingress-configmap.yaml index decde72c3096..bccb6091c334 100644 --- a/deploy/addons/ingress/ingress-configmap.yaml +++ b/deploy/addons/ingress/ingress-configmap.yaml @@ -15,6 +15,7 @@ apiVersion: v1 data: map-hash-bucket-size: "128" + hsts: "false" kind: ConfigMap metadata: name: nginx-load-balancer-conf From 1c46c11a810e8f24df7406e402af42f676dcdc6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lena=20Br=C3=BCder?= Date: Thu, 8 Mar 2018 10:14:58 +0100 Subject: [PATCH 2/3] note about plugin default config Added note about where to find plugin configuration. --- docs/addons.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/addons.md b/docs/addons.md index 95c3e0d58f17..cc181e817457 100644 --- a/docs/addons.md +++ b/docs/addons.md @@ -40,3 +40,5 @@ The currently supported addons include: If you would like to have minikube properly start/restart custom addons, place the addon(s) you wish to be launched with minikube in the `.minikube/addons` directory. Addons in this folder will be moved to the minikube VM and launched each time minikube is started/restarted. If you have a request for an addon in minikube, please open an issue with the name and preferably a link to the addon with a description of its purpose and why it should be added. You can also attempt to add the addon to minikube by following the guide at [Adding an Addon](contributors/adding_an_addon.md) + +**Note:** If you want to have a look at the default configuration for the addons, see [deploy/addons](/~https://github.com/kubernetes/minikube/tree/master/deploy/addons). From d8d4f613e45ff36a04c52b926c6b9d1ca22f81ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lena=20Br=C3=BCder?= Date: Thu, 8 Mar 2018 10:20:33 +0100 Subject: [PATCH 3/3] note about where to find more docs --- deploy/addons/ingress/ingress-configmap.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy/addons/ingress/ingress-configmap.yaml b/deploy/addons/ingress/ingress-configmap.yaml index bccb6091c334..da60d2172b84 100644 --- a/deploy/addons/ingress/ingress-configmap.yaml +++ b/deploy/addons/ingress/ingress-configmap.yaml @@ -14,6 +14,7 @@ apiVersion: v1 data: + # see /~https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/configmap.md for all possible options and their description map-hash-bucket-size: "128" hsts: "false" kind: ConfigMap