add priorityClassName, upgrade kube2iam (#9092)

Signed-off-by: Taehyun Kim <kgyoo8232@gmail.com>
This commit is contained in:
Taehyun Kim
2019-01-27 15:21:31 -08:00
committed by Kubernetes Prow Robot
parent 4cd05638a1
commit edbc986dac
4 changed files with 10 additions and 4 deletions
+2 -2
View File
@@ -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
+2 -1
View File
@@ -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 | `{}`
+3
View File
@@ -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 }}
+3 -1
View File
@@ -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