Skip to content

Commit

Permalink
fix(main.tf) enable runAsUser and runAsGroup for non-root users
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Jan 26, 2026
1 parent 8b9ee30 commit 27deec0
Showing 1 changed file with 8 additions and 0 deletions.
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 27deec0

Please sign in to comment.