Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stable/provazio/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: Iguazio provisioner
name: provazio
version: 1.1.3
version: 1.1.4
appVersion: 0.24.37
icon: https://github.com/nuclio/nuclio/raw/master/docs/assets/images/logo.png
home: https://iguazio.com
Expand Down
4 changes: 4 additions & 0 deletions stable/provazio/templates/dashboard-service-account.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,9 @@ metadata:
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
component: dashboard
{{- with .Values.dashboard.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}

{{- end }}
4 changes: 4 additions & 0 deletions stable/provazio/templates/vault-service-account.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,9 @@ metadata:
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
component: vault
{{- with .Values.vault.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}

{{- end }}
16 changes: 16 additions & 0 deletions stable/provazio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,14 @@ dashboard:

podAnnotations: {}

## Service account configuration
## Used for IRSA (IAM Roles for Service Accounts) on EKS
serviceAccount:
annotations: {}
# Example for IRSA:
# annotations:
# eks.amazonaws.com/role-arn: arn:aws:iam::123456789012:role/my-irsa-role

## List of node taints to tolerate (requires Kubernetes >= 1.6)
tolerations: []
# - key: "key"
Expand Down Expand Up @@ -212,6 +220,14 @@ vault:

podAnnotations: {}

## Service account configuration
## Used for IRSA (IAM Roles for Service Accounts) on EKS
serviceAccount:
annotations: {}
# Example for IRSA:
# annotations:
# eks.amazonaws.com/role-arn: arn:aws:iam::123456789012:role/my-irsa-role

## List of node taints to tolerate (requires Kubernetes >= 1.6)
tolerations: []
# - key: "key"
Expand Down