Browse Source

Only perform console configmap ops when >= 3.9

Scott Dodson 7 years ago
parent
commit
b3a5fb96ea

+ 3 - 1
roles/openshift_logging/tasks/delete_logging.yaml

@@ -140,4 +140,6 @@
     console_config_edits:
       - key: clusterInfo#loggingPublicURL
         value: ""
-  when: openshift_web_console_install | default(true) | bool
+  when:
+    - openshift_web_console_install | default(true) | bool
+    - openshift.common.version_gte_3_9

+ 3 - 1
roles/openshift_logging/tasks/install_logging.yaml

@@ -326,4 +326,6 @@
     console_config_edits:
     - key: clusterInfo#loggingPublicURL
       value: "https://{{ openshift_logging_kibana_hostname }}"
-  when: openshift_web_console_install | default(true) | bool
+  when:
+  - openshift_web_console_install | default(true) | bool
+  - openshift.common.version_gte_3_9

+ 3 - 1
roles/openshift_metrics/tasks/install_metrics.yaml

@@ -79,7 +79,9 @@
     console_config_edits:
       - key: clusterInfo#metricsPublicURL
         value: "https://{{ openshift_metrics_hawkular_hostname}}/hawkular/metrics"
-  when: openshift_web_console_install | default(true) | bool
+  when:
+    - openshift_web_console_install | default(true) | bool
+    - openshift.common.version_gte_3_9
 
 - command: >
     {{openshift_client_binary}}

+ 3 - 1
roles/openshift_metrics/tasks/uninstall_metrics.yaml

@@ -28,4 +28,6 @@
     console_config_edits:
       - key: clusterInfo#metricsPublicURL
         value: ""
-  when: openshift_web_console_install | default(true) | bool
+  when:
+    - openshift_web_console_install | default(true) | bool
+    - openshift.common.version_gte_3_9