Further requested changes from alemorcuq

This commit is contained in:
George Baird
2019-08-21 09:59:20 -04:00
parent 9ee123d8b5
commit ca22656e90
2 changed files with 6 additions and 5 deletions

View File

@@ -58,7 +58,7 @@ The following tables lists the configurable parameters of the Metrics Server cha
| `nameOverride` | String to partially override metrics-server.fullname template with a string (will prepend the release name) | `nil` |
| `fullnameOverride` | String to fully override metrics-server.fullname template with a string | `nil` |
| `securePort` | Port where metrics-server will be running | `8443` |
| `extraArgs` | Extra arguments to pass to metrics-server on start up | [] |
| `extraArgs` | Extra arguments to pass to metrics-server on start up | {} |
| `service.type` | Kubernetes Service type | `ClusterIP` |
| `service.port` | Kubernetes Service port | `443` |
| `service.annotations` | Annotations for the Service | {} |

View File

@@ -58,12 +58,13 @@ apiService:
securePort: 8443
## Extra arguments to pass to the metrics-server
## ref: https://github.com/kubernetes-incubator/metrics-server/blob/master/README.md#flags
##
## extraArgs:
## kubelet-insecure-tls: true
## kubelet-preferred-address-types: InternalIP
##
extraArgs: {}
# To specify extra arguments, uncomment the following lines, adjust them as necessary,
# and remove the curly braces after 'extraArgs:'.
# kubelet-insecure-tls: true
# kubelet-preferred-address-types: InternalIP
service:
type: ClusterIP