Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created December 5, 2025 16:22
Show Gist options
  • Select an option

  • Save larkintuckerllc/6b277cbb5079f9e1b58ccda87f50e143 to your computer and use it in GitHub Desktop.

Select an option

Save larkintuckerllc/6b277cbb5079f9e1b58ccda87f50e143 to your computer and use it in GitHub Desktop.
apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
name: sync-configmaps
spec:
rules:
- name: sync-configmaps
match:
any:
- resources:
kinds:
- Namespace
generate:
apiVersion: v1
kind: ConfigMap
name: hello
namespace: "{{request.object.metadata.name}}"
synchronize: true
data:
data:
hello: world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment