1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

update policy

This commit is contained in:
shivkumar dudhani 2019-10-24 18:41:37 -05:00
parent 6b7b50f7af
commit 17b98aca4b

View file

@ -1,6 +1,6 @@
# Configure namespace limits and quotas
To limit the number of resources like CPU and memory, as well as objects that may be consumed by workloads in a namespace, it is important to configure resource limits and quotas for each namespace.
To limit the number of resources like CPU and memory, as well as objects that may be consumed by workloads in a namespace, it is important to configure resource limits and quotas for each namespace.
## Additional Information
@ -14,10 +14,10 @@ To limit the number of resources like CPU and memory, as well as objects that ma
apiVersion: kyverno.io/v1alpha1
kind: ClusterPolicy
metadata:
name: validate-namespace-quota
name: generate-namespace-quota
spec:
rules:
- name: validate-namespace-quota
- name: generate-namespace-quota
match:
resources:
kinds:
@ -25,11 +25,11 @@ spec:
generate:
kind: ResourceQuota
name: "defaultresourcequota"
spec:
hard:
requests.cpu: "*"
requests.memory: "*"
limits.cpu: "*"
limits.memory: "*"
````
data:
spec:
hard:
requests.cpu: '4'
requests.memory: '16Gi'
limits.cpu: '4'
limits.memory: '16Gi'
````