File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ kind: Certificate
44metadata :
55 name : {{ .certName }}
66spec :
7+ # https://github.com/emberstack/kubernetes-reflector?tab=readme-ov-file#cert-manager-support
78 secretTemplate :
89 annotations :
910 reflector.v1.k8s.emberstack.com/reflection-allowed : " true"
Original file line number Diff line number Diff line change 1+ # namespace with defined pod security standard
2+ # inspired from https://aro-labs.com/pod-security-standards/
3+ # official doc: https://kubernetes.io/docs/concepts/security/pod-security-standards/
4+ #
5+ # Warning: if pod / container does not meet enforced standards, it will not be deployed (silently)
6+ # execute `kubectl -n <namespace> events` to see errors (e.g.)
7+ # Error creating: pods "xyz" is forbidden: violates PodSecurity "baseline:latest": privileged
8+ # container "xyz" must not set securityContext.privileged to true
9+ #
10+ apiVersion : v1
11+ kind : Namespace
12+ metadata :
13+ name : reflector
14+ labels :
15+ pod-security.kubernetes.io/enforce : baseline
Original file line number Diff line number Diff line change 1+ configuration:
2+ watcher:
3+ # https://github.com/emberstack/kubernetes-reflector/issues/560#issuecomment-3415122791
4+ timeout: 30 # seconds
You can’t perform that action at this time.
0 commit comments