diff --git a/deploy/addons/ingress/ingress-configmap.yaml b/deploy/addons/ingress/ingress-configmap.yaml index decde72c3096b5f727ec852ef9a98eb7636a133f..da60d2172b84abdb984bccbec0f575f831e6f7be 100644 --- a/deploy/addons/ingress/ingress-configmap.yaml +++ b/deploy/addons/ingress/ingress-configmap.yaml @@ -14,7 +14,9 @@ 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 metadata: name: nginx-load-balancer-conf diff --git a/docs/addons.md b/docs/addons.md index 95c3e0d58f178f23089cf43b61c33b5de0c72996..cc181e817457ad2dd8d063451573eb73bd630c9f 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).