emberstack / kubernetes-reflector

Custom Kubernetes controller that can be used to replicate secrets, configmaps and certificates.
MIT License
1.11k stars 96 forks source link

[FEATURE] Limit Ranges #425

Closed tekno45 closed 8 months ago

tekno45 commented 8 months ago

I want to be able to set LimitRanges on all my namespaces. but there is no mechanism for a clusterwide LimitRange.|

If this could be replicated across namespaces it would solve my use-case.

kind: LimitRange
metadata:
  name: mem-limit-range
spec:
  limits:
  - default:
      memory: 512Mi
    defaultRequest:
      memory: 256Mi
    type: Container
Like this but for all namespaces is what im looking for.