From a85485626e38dbb835fdbfc22901857ec65b8a10 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Fri, 10 Oct 2025 18:56:10 -0400 Subject: [PATCH] enable injection in operators --- main.tf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.tf b/main.tf index 5bd657a..c1d68ae 100644 --- a/main.tf +++ b/main.tf @@ -83,6 +83,9 @@ resource "kubernetes_storage_class" "efs_sc" { resource "kubernetes_namespace" "operators" { metadata { name = var.operators_ns + labels = { + istio-injection = "enabled" + } } }