mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 23:29:33 +01:00
7b8a51070f
* With the new component system, these components can be managed independent from the cluster and rolled or edited in advanced ways
16 lines
347 B
HCL
16 lines
347 B
HCL
resource "kubernetes_service_account" "operator" {
|
|
metadata {
|
|
name = "cilium-operator"
|
|
namespace = "kube-system"
|
|
}
|
|
automount_service_account_token = false
|
|
}
|
|
|
|
resource "kubernetes_service_account" "agent" {
|
|
metadata {
|
|
name = "cilium-agent"
|
|
namespace = "kube-system"
|
|
}
|
|
automount_service_account_token = false
|
|
}
|