Przeglądaj źródła

Install cockpit, logrotate and fluentd unless host is atomic.

Andrew Butcher 9 lat temu
rodzic
commit
d0f5faef53

+ 1 - 1
playbooks/common/openshift-etcd/config.yml

@@ -89,7 +89,7 @@
   roles:
   - etcd
   - role: nickhammond.logrotate
-    when: not openshift.common.is_containerized | bool
+    when: not openshift.common.is_atomic | bool
 
 - name: Delete temporary directory on localhost
   hosts: localhost

+ 1 - 1
playbooks/common/openshift-master/config.yml

@@ -338,7 +338,7 @@
   roles:
   - openshift_master
   - role: nickhammond.logrotate
-    when: not openshift.common.is_containerized | bool
+    when: not openshift.common.is_atomic | bool
   - role: fluentd_master
     when: openshift.common.use_fluentd | bool
   - role: nuage_master

+ 1 - 1
playbooks/common/openshift-node/config.yml

@@ -214,7 +214,7 @@
   - role: nuage_node
     when: openshift.common.use_nuage | bool
   - role: nickhammond.logrotate
-    when: not openshift.common.is_containerized | bool
+    when: not openshift.common.is_atomic | bool
   - role: fluentd_node
     when: openshift.common.use_fluentd | bool
   tasks:

+ 1 - 1
roles/cockpit/tasks/main.yml

@@ -6,7 +6,7 @@
     - cockpit-shell
     - cockpit-bridge
     - "{{ cockpit_plugins }}"
-  when: not openshift.common.is_containerized | bool
+  when: not openshift.common.is_atomic | bool
 
 - name: Enable cockpit-ws
   service:

+ 2 - 2
roles/fluentd_master/tasks/main.yml

@@ -1,12 +1,12 @@
 ---
 - fail:
     msg: "fluentd master is not yet supported on atomic hosts"
-  when: openshift.common.is_containerized | bool
+  when: openshift.common.is_atomic | bool
 
 # TODO: Update fluentd install and configuration when packaging is complete
 - name: download and install td-agent
   action: "{{ ansible_pkg_mgr }} name='http://packages.treasuredata.com/2/redhat/7/x86_64/td-agent-2.2.0-0.x86_64.rpm' state=present"
-  when: not openshift.common.is_containerized | bool
+  when: not openshift.common.is_atomic | bool
 
 - name: Verify fluentd plugin installed
   command: '/opt/td-agent/embedded/bin/gem query -i fluent-plugin-kubernetes'

+ 2 - 3
roles/fluentd_node/tasks/main.yml

@@ -1,12 +1,12 @@
 ---
 - fail:
     msg: "fluentd node is not yet supported on atomic hosts"
-  when: openshift.common.is_containerized | bool
+  when: openshift.common.is_atomic | bool
 
 # TODO: Update fluentd install and configuration when packaging is complete
 - name: download and install td-agent
   action: "{{ ansible_pkg_mgr }} name='http://packages.treasuredata.com/2/redhat/7/x86_64/td-agent-2.2.0-0.x86_64.rpm' state=present"
-  when: not openshift.common.is_containerized | bool
+  when: not openshift.common.is_atomic | bool
 
 - name: Verify fluentd plugin installed
   command: '/opt/td-agent/embedded/bin/gem query -i fluent-plugin-kubernetes'
@@ -55,4 +55,3 @@
     name: 'td-agent'
     state: started
     enabled: yes
-