Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
add priorityClassName, upgrade kube2iam
Browse files Browse the repository at this point in the history
Signed-off-by: Taehyun Kim <kgyoo8232@gmail.com>
  • Loading branch information
kimxogus committed Dec 24, 2018
1 parent 254f214 commit 9aa4e6b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions stable/kube2iam/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion stable/kube2iam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | `{}`
Expand Down
3 changes: 3 additions & 0 deletions stable/kube2iam/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 3 additions & 1 deletion stable/kube2iam/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -39,6 +39,8 @@ affinity: {}
##
podAnnotations: {}

priorityClassName: ""

podLabels: {}

probe: true
Expand Down

0 comments on commit 9aa4e6b

Please sign in to comment.