Skip to content

Commit

Permalink
Merge pull request #14 from SCT-Engineering/ironbank
Browse files Browse the repository at this point in the history
Ironbank
  • Loading branch information
nangu001 committed Mar 6, 2026
2 parents 350191c + 27deec0 commit fdaa8a2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 4 additions & 4 deletions copy_images.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ locals {
enabled = true
dest_path = null
name = "istio-tools/kiali-operator"
source_image = "kiali/kiali-operator"
source_registry = format("%v/%v", local.ent_ecr_source, "quay")
source_image = "opensource/kiali/kiali-operator"
source_registry = format("%v/%v", local.ent_ecr_source, "ironbank")
source_tag = var.kiali_application_version
tag = var.kiali_application_version
},
{
enabled = true
dest_path = null
name = "istio-tools/kiali"
source_image = "kiali/kiali"
source_registry = format("%v/%v", local.ent_ecr_source, "quay")
source_image = "opensource/kiali/kiali"
source_registry = format("%v/%v", local.ent_ecr_source, "ironbank")
source_tag = var.kiali_application_version
tag = var.kiali_application_version
},
Expand Down
8 changes: 8 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ resource "helm_release" "kiali_operator" {
namespace = var.namespace

set = [
{
name = "securityContext.runAsUser"
value = 2001
},
{
name = "securityContext.runAsGroup"
value = 2001
},
{
name = "image.repo"
value = format("%v/%v",
Expand Down

0 comments on commit fdaa8a2

Please sign in to comment.