Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion stacks/apps/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ locals {
{
name = "CAPABILITY_IMPLEMENTATIONS"
value = jsonencode({
docker = "rootless"
docker = "privileged"
})
},
{
Expand Down
5 changes: 5 additions & 0 deletions stacks/platform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1482,6 +1482,11 @@ resource "kubernetes_namespace" "platform" {
resource "kubernetes_namespace_v1" "agyn_workloads" {
metadata {
name = "agyn-workloads"
labels = {
"pod-security.kubernetes.io/enforce" = "privileged"
"pod-security.kubernetes.io/audit" = "privileged"
"pod-security.kubernetes.io/warn" = "privileged"
}
}
}

Expand Down
Loading