Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created December 4, 2025 21:29
Show Gist options
  • Select an option

  • Save larkintuckerllc/4728cbf7106da3c9b1fda3d67cdf53f6 to your computer and use it in GitHub Desktop.

Select an option

Save larkintuckerllc/4728cbf7106da3c9b1fda3d67cdf53f6 to your computer and use it in GitHub Desktop.
apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
name: require-labels
spec:
rules:
- name: check-team
match:
any:
- resources:
kinds:
- Pod
validate:
failureAction: Enforce
message: "label 'team' is required"
pattern:
metadata:
labels:
team: "?*"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment