Browse Source

Merge pull request #5888 from jcantrill/1501599_allow_project_overcommit

Automatic merge from submit-queue.

bug 1501599.  Omit logging project from overcommit restrictions

This PR:
* Annotates the logging project to remove overcommit restrictions
OpenShift Merge Robot 7 years ago
parent
commit
f5594776a2
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"