Browse Source

bug 1501599. Omit logging project from overcommit restrictions

Jeff Cantrill 7 years ago
parent
commit
28ebfa656b
1 changed files with 8 additions and 0 deletions
  1. 8 0
      roles/openshift_logging/tasks/install_logging.yaml

+ 8 - 0
roles/openshift_logging/tasks/install_logging.yaml

@@ -36,6 +36,14 @@
   - openshift_logging_label_key != ""
   - openshift_logging_label_value is defined
 
+- name: Annotate Logging Project to allow overcommit
+  oc_edit:
+    kind: ns
+    name: "{{ openshift_logging_namespace }}"
+    separator: '#'
+    content:
+      metadata#annotations#quota.openshift.io/cluster-resource-override-enabled: "false"
+
 - name: Create logging cert directory
   file:
     path: "{{ openshift.common.config_base }}/logging"