Browse Source

Merge pull request #5410 from jmencak/tuned-after-node-restart

Setup tuned after the node has been restarted.
Scott Dodson 7 years ago
parent
commit
2f951f3993
1 changed files with 4 additions and 4 deletions
  1. 4 4
      roles/openshift_node/tasks/config.yml

+ 4 - 4
roles/openshift_node/tasks/config.yml

@@ -2,10 +2,6 @@
 - name: Install the systemd units
   include: systemd_units.yml
 
-- name: Setup tuned
-  include: tuned.yml
-  static: yes
-
 - name: Start and enable openvswitch service
   systemd:
     name: openvswitch.service
@@ -99,5 +95,9 @@
     msg: Node failed to start please inspect the logs and try again
   when: node_start_result | failed
 
+- name: Setup tuned
+  include: tuned.yml
+  static: yes
+
 - set_fact:
     node_service_status_changed: "{{ node_start_result | changed }}"