mirror of
https://github.com/prometheus-operator/prometheus-operator.git
synced 2025-04-16 09:16:38 +00:00
8 lines
238 B
Jsonnet
8 lines
238 B
Jsonnet
local k = import "ksonnet.beta.3/k.libsonnet";
|
|
local serviceAccount = k.core.v1.serviceAccount;
|
|
|
|
{
|
|
new(namespace)::
|
|
serviceAccount.new("kube-state-metrics") +
|
|
serviceAccount.mixin.metadata.withNamespace(namespace)
|
|
}
|