From cb4d126216e34e334af2ac9ba7b5a0c9ed34c905 Mon Sep 17 00:00:00 2001 From: Denis Belyshev Date: Wed, 20 Mar 2019 16:23:20 +0200 Subject: [PATCH] NK-14: Updated example for ResourceQuota --- examples/ResourceQuota/policy-quota.yaml | 25 +++++++++++++----- examples/ResourceQuota/quota.yaml | 33 ++++++++++++------------ 2 files changed, 34 insertions(+), 24 deletions(-) diff --git a/examples/ResourceQuota/policy-quota.yaml b/examples/ResourceQuota/policy-quota.yaml index 89c0a35b0d..f4190e87e8 100644 --- a/examples/ResourceQuota/policy-quota.yaml +++ b/examples/ResourceQuota/policy-quota.yaml @@ -1,17 +1,28 @@ apiVersion : policy.nirmata.io/v1alpha1 kind : Policy metadata : - name : policy-quota + name : policy-quota-low-test spec : failurePolicy: stopOnError rules: - resource: kind : ResourceQuota - name: "pods-high" + selector: + matchLabels: + quota: low patch: - - path: "/metadata/labels/isMutated" - op: add - value: "true" - - path : "/spec/hard/cpu" + - path : "/spec/scopeSelector/matchExpressions/1" + op : add + value : + operator : In + scopeName: PriorityClass + values: ["low-medium"] + - path : "/spec/hard" op : replace - value : "7" + value: { + "cpu": "10", + "memory": "10Gi", + "pods": "10", + "limits.memory": "12Gi", + "requests.nvidia.com/gpu": "8" + } \ No newline at end of file diff --git a/examples/ResourceQuota/quota.yaml b/examples/ResourceQuota/quota.yaml index 2e80b82b81..9ecbf15108 100644 --- a/examples/ResourceQuota/quota.yaml +++ b/examples/ResourceQuota/quota.yaml @@ -1,18 +1,17 @@ apiVersion: v1 -kind: List -items: -- apiVersion: v1 - kind: ResourceQuota - metadata: - name: pods-high - spec: - hard: - cpu: 100 - memory: 200Gi - pods: "10" - scopeSelector: - matchExpressions: - - operator : In - scopeName: PriorityClass - values: ["high"] - +kind: ResourceQuota +metadata: + name: pods-low + labels: + quota: "low" +spec: + hard: + cpu: 2 + memory: 8Gi + pods: 4 + limits.memory: 12Gi + scopeSelector: + matchExpressions: + - operator : In + scopeName: PriorityClass + values: ["low"]