[stable/kube-state-metrics] Add imagePullSecrets in serviceAccount (#11405)

* [stable/kube-state-metrics] Add imagePullSecrets in serviceAccount

Signed-off-by: Tanguy Buchier <tanguy.buchier@gmail.com>

* [stable/kube-state-metrics] Add imagePullSecrets in serviceAccount

Signed-off-by: Tanguy Buchier <tanguy.buchier@gmail.com>

* [stable/kube-state-metrics] Add imagePullSecrets in serviceAccount

Signed-off-by: Tanguy Buchier <tanguy.buchier@gmail.com>
This commit is contained in:
Tanguy Buchier
2019-03-13 17:36:47 -07:00
committed by Kubernetes Prow Robot
parent fc869801c0
commit 18df047bdf
6 changed files with 34 additions and 5 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ keywords:
- metric
- monitoring
- prometheus
version: 0.14.1
version: 0.15.0
appVersion: 1.5.0
home: https://github.com/kubernetes/kube-state-metrics/
sources:
+3 -1
View File
@@ -20,9 +20,11 @@ $ helm install stable/kube-state-metrics
| `service.port` | The port of the container | 8080 |
| `prometheusScrape` | Whether or not enable prom scrape | true |
| `rbac.create` | If true, create & use RBAC resources | true |
| `serviceAccount.create` | If true, and rbac true, create & use serviceAccount | true |
| `serviceAccount.name` | If not set & create is true, use template fullname | |
| `serviceAccount.imagePullSecrets` | Specify image pull secrets field | `[]` |
| `podSecurityPolicy.enabled` | If true, create & use PodSecurityPolicy resources | false |
| `podSecurityPolicy.annotations` | Specify pod annotations in the pod security policy | {} |
| `rbac.serviceAccountName` | ServiceAccount to be used (ignored if rbac.create=true) | default |
| `securityContext.enabled` | Enable security context | `true` |
| `securityContext.fsGroup` | Group ID for the container | `65534` |
| `securityContext.runAsUser` | User ID for the container | `65534` |
@@ -23,3 +23,14 @@ If release name contains chart name it will be used as a full name.
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Create the name of the service account to use
*/}}
{{- define "kube-state-metrics.serviceAccountName" -}}
{{- if .Values.serviceAccount.create -}}
{{ default (include "kube-state-metrics.fullname" .) .Values.serviceAccount.name }}
{{- else -}}
{{ default "default" .Values.serviceAccount.name }}
{{- end -}}
{{- end -}}
@@ -19,7 +19,9 @@ spec:
{{ toYaml .Values.podAnnotations | indent 8 }}
{{- end }}
spec:
serviceAccountName: {{ if .Values.rbac.create }}{{ template "kube-state-metrics.fullname" . }}{{ else }}"{{ .Values.rbac.serviceAccountName }}"{{ end }}
{{ if .Values.rbac.create }}
serviceAccountName: {{ template "kube-state-metrics.serviceAccountName" . }}
{{ end }}
{{- if .Values.securityContext.enabled }}
securityContext:
fsGroup: {{ .Values.securityContext.fsGroup }}
@@ -1,4 +1,5 @@
{{- if .Values.rbac.create -}}
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
@@ -8,4 +9,7 @@ metadata:
heritage: {{ .Release.Service }}
release: {{ .Release.Name }}
name: {{ template "kube-state-metrics.fullname" . }}
imagePullSecrets:
{{ toYaml .Values.serviceAccount.imagePullSecrets | indent 2 }}
{{- end -}}
{{- end -}}
+12 -2
View File
@@ -4,17 +4,27 @@ image:
repository: k8s.gcr.io/kube-state-metrics
tag: v1.5.0
pullPolicy: IfNotPresent
service:
port: 8080
# Default to clusterIP for backward compatibility
type: ClusterIP
nodePort: 0
loadBalancerIP: ""
rbac:
# If true, create & use RBAC resources
create: true
# Ignored if rbac.create is true
serviceAccountName: default
serviceAccount:
# Specifies whether a ServiceAccount should be created, require rbac true
create: true
# The name of the ServiceAccount to use.
# If not set and create is true, a name is generated using the fullname template
name:
# Reference to one or more secrets to be used when pulling images
# ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
imagePullSecrets: []
## Specify if a Pod Security Policy for kube-state-metrics must be created
## Ref: https://kubernetes.io/docs/concepts/policy/pod-security-policy/