mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
add priorityClassName, upgrade kube2iam (#9092)
Signed-off-by: Taehyun Kim <kgyoo8232@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
4cd05638a1
commit
edbc986dac
@@ -1,6 +1,6 @@
|
||||
name: kube2iam
|
||||
version: 0.9.1
|
||||
appVersion: 0.10.0
|
||||
version: 0.10.0
|
||||
appVersion: 0.10.4
|
||||
description: Provide IAM credentials to pods based on annotations.
|
||||
keywords:
|
||||
- kube2iam
|
||||
|
||||
@@ -48,10 +48,11 @@ Parameter | Description | Default
|
||||
`host.iptables` | Add iptables rule | `false`
|
||||
`host.interface` | Host interface for proxying AWS metadata | `docker0`
|
||||
`image.repository` | Image | `jtblin/kube2iam`
|
||||
`image.tag` | Image tag | `0.6.4`
|
||||
`image.tag` | Image tag | `0.10.4`
|
||||
`image.pullPolicy` | Image pull policy | `IfNotPresent`
|
||||
`nodeSelector` | node labels for pod assignment | `{}`
|
||||
`podAnnotations` | annotations to be added to pods | `{}`
|
||||
`priorityClassName` | priorityClassName to be added to pods | `{}`
|
||||
`rbac.create` | If true, create & use RBAC resources | `false`
|
||||
`rbac.serviceAccountName` | existing ServiceAccount to use (ignored if rbac.create=true) | `default`
|
||||
`resources` | pod resource requests & limits | `{}`
|
||||
|
||||
@@ -97,6 +97,9 @@ spec:
|
||||
nodeSelector:
|
||||
{{ toYaml .Values.nodeSelector | indent 8 }}
|
||||
{{- end }}
|
||||
{{- if .Values.priorityClassName }}
|
||||
priorityClassName: {{ .Values.priorityClassName }}
|
||||
{{- end }}
|
||||
{{- if .Values.affinity }}
|
||||
affinity:
|
||||
{{ toYaml .Values.affinity | indent 8 }}
|
||||
|
||||
@@ -16,7 +16,7 @@ host:
|
||||
|
||||
image:
|
||||
repository: jtblin/kube2iam
|
||||
tag: 0.10.0
|
||||
tag: 0.10.4
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
# AWS Access keys to inject as environment variables
|
||||
@@ -39,6 +39,8 @@ affinity: {}
|
||||
##
|
||||
podAnnotations: {}
|
||||
|
||||
priorityClassName: ""
|
||||
|
||||
podLabels: {}
|
||||
|
||||
probe: true
|
||||
|
||||
Reference in New Issue
Block a user