Skip to content

Ironbank #14

Merged
merged 2 commits into from
Mar 6, 2026
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
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