Skip to content

Commit

Permalink
[#77] Fix argo sa annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitriy Karbyshev committed Apr 6, 2021
1 parent 9704d50 commit 147bc4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion terraform/modules/k8s/argo/main/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ locals {
namespace = local.workflows_namespace
serviceAccount = {
create = true
"iam.gke.io/gcp-service-account" = var.workflows_sa
annotations = {
"iam.gke.io/gcp-service-account" = var.workflows_sa
}
}
rbac = {
create = true
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/k8s/argo/main/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ variable "tls_secret_key" {

variable "argo_wf_helm_chart_version" {
type = string
default = "0.16.6"
default = "0.16.7"
description = "version of Argo Forkflows helm chart"
}

Expand Down

0 comments on commit 147bc4c

Please sign in to comment.