diff --git a/stable/kube2iam/Chart.yaml b/stable/kube2iam/Chart.yaml index 9eef058514f3..4e5ce56feb53 100644 --- a/stable/kube2iam/Chart.yaml +++ b/stable/kube2iam/Chart.yaml @@ -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 diff --git a/stable/kube2iam/README.md b/stable/kube2iam/README.md index 17e90005bd2e..3f57093d5cf4 100644 --- a/stable/kube2iam/README.md +++ b/stable/kube2iam/README.md @@ -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 | `{}` diff --git a/stable/kube2iam/templates/daemonset.yaml b/stable/kube2iam/templates/daemonset.yaml index 40a305a92823..815eb276848b 100644 --- a/stable/kube2iam/templates/daemonset.yaml +++ b/stable/kube2iam/templates/daemonset.yaml @@ -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 }} diff --git a/stable/kube2iam/values.yaml b/stable/kube2iam/values.yaml index 5d92fbd08f00..f8c24e579874 100644 --- a/stable/kube2iam/values.yaml +++ b/stable/kube2iam/values.yaml @@ -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