Joseph Graham-Jones
Joseph Graham-Jones
We currently use kube-mgmts mutating webhook to inject a logging pipeline label set on our cluster user namespaces into the individual pods in said namespace. This is used by fluentbit...
We aren't looking to inject the namespace label into an arbitary location. We need to inject a labels value from the namespace into a new, slightly different label on the...
Here's an example: - Namespace ``` apiVersion: v1 kind: Namespace metadata: name: example labels: tribe: test ``` An example of the AssignMetadata we'd like: ``` apiVersion: mutations.gatekeeper.sh/v1beta1 kind: AssignMetadata metadata:...
Yeah, that essentially summarises the issue. The namespace selector isn't really viable, as this would be a cluster-wide rule effecting every namespace in the cluster and there are a large...
Hi @balaramesh Sorry for the late response. Currently, our deployment pipelines utilise terraform/helm to deploy kubernetes services into our clusters. Currently, due to how terraform performs its resource plan, if...