mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/metrics-server] Metrics server command arguments (#6620)
* stable/metrics-server: Make metrics-server arguments customizable * stable/metrics-server: Bump version. As this chart is in stable, we might as well start with 1.0.0 now * stable/metrics-server: Changing version from 1.0.0 to 0.1.0 as per review comment
This commit is contained in:
committed by
k8s-ci-robot
parent
e4d4178b83
commit
c488642dfe
@@ -2,7 +2,7 @@ apiVersion: v1
|
||||
appVersion: 0.2.1
|
||||
description: Metrics Server is a cluster-wide aggregator of resource usage data.
|
||||
name: metrics-server
|
||||
version: 1.0.2
|
||||
version: 1.1.0
|
||||
keywords:
|
||||
- metrics-server
|
||||
home: https://github.com/kubernetes-incubator/metrics-server
|
||||
|
||||
@@ -13,6 +13,7 @@ Parameter | Description | Default
|
||||
`image.repository` | Image repository | `gcr.io/google_containers/metrics-server-amd64`
|
||||
`image.tag` | Image tag | `v0.2.1`
|
||||
`image.pullPolicy` | Image pull policy | `IfNotPresent`
|
||||
`args` | Command line arguments | --source=kubernetes.summary_api:''
|
||||
`resources` | CPU/Memory resource requests/limits. | `{}`
|
||||
`tolerations` | List of node taints to tolerate (requires Kubernetes >=1.6) | `[]`
|
||||
`nodeSelector` | Node labels for pod assignment | `{}`
|
||||
|
||||
@@ -25,7 +25,9 @@ spec:
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
command:
|
||||
- /metrics-server
|
||||
- --source=kubernetes.summary_api:''
|
||||
{{- range .Values.args }}
|
||||
- {{ . | quote }}
|
||||
{{- end }}
|
||||
{{- with .Values.resources }}
|
||||
resources:
|
||||
{{ toYaml . | indent 12 }}
|
||||
|
||||
@@ -22,6 +22,9 @@ image:
|
||||
tag: v0.2.1
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
args:
|
||||
- --source=kubernetes.summary_api:''
|
||||
|
||||
resources: {}
|
||||
|
||||
nodeSelector: {}
|
||||
|
||||
Reference in New Issue
Block a user