feat(infra): Make relay containers privileged (#8529)

This is needed to load eBPF programs.

Related: #8496
This commit is contained in:
Jamil
2025-03-27 13:36:40 -07:00
committed by GitHub
parent 3c7ac084c0
commit b618eb31e8

View File

@@ -241,6 +241,9 @@ resource "google_compute_instance_template" "application" {
volumes = []
# For loading eBPF programs
privileged = true
restartPolicy = "Always"
}
})