Skip to content

Commit

Permalink
update fields for latest helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam-D-Lewis committed May 2, 2024
1 parent 6ee3c86 commit 1ccc0fb
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource "helm_release" "argo-workflows" {
namespace = var.namespace
repository = "https://argoproj.github.io/argo-helm"
chart = "argo-workflows"
version = "0.22.9"
version = "0.41.4"

values = concat([
file("${path.module}/values.yaml"),
Expand All @@ -34,12 +34,14 @@ resource "helm_release" "argo-workflows" {

server = {
# `sso` for OIDC/OAuth
extraArgs = ["--auth-mode=sso", "--auth-mode=client", "--insecure-skip-verify"]
extraArgs = ["--insecure-skip-verify"]
authModes = ["sso", "client"]
# to enable TLS, `secure = true`
secure = false
baseHref = "/${local.argo-workflows-prefix}/"

sso = {
enabled = true
insecureSkipVerify = true
issuer = "https://${var.external-url}/auth/realms/${var.realm_id}"
clientId = {
Expand Down

0 comments on commit 1ccc0fb

Please sign in to comment.