Wolfgang Kulhanek
2019-12-02 f7be830241a728235cdb7838b66fa5b1591edd0a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
apiVersion: quota.openshift.io/v1
kind: ClusterResourceQuota
metadata:
  name: "clusterquota-app-deploy-homework-{{ guid }}"
spec:
  selector:
    annotations:
      openshift.io/requester: "{{ ocp_username }}"
    labels: null
  quota:
    hard:
      configmaps: "{{ quota_configmaps }}"
      limits.cpu: "{{ quota_limits_cpu }}"
      limits.memory: "{{ quota_limits_memory }}"
      persistentvolumeclaims: "{{ quota_persistentvolumeclaims }}"
      pods: "{{ quota_pods }}"
      requests.cpu: "{{ quota_requests_cpu }}"
      requests.memory: "{{ quota_requests_memory }}"
      requests.storage: "{{ quota_requests_storage }}"
      secrets: "{{ quota_secrets }}"
      services: "{{ quota_services }}"