2n-zn2 Epyc backport
[csit.git] / resources / tools / testbed-setup / ansible / roles / performance_tuning / tasks / main.yaml
index e28f9ba..c437b40 100644 (file)
@@ -9,18 +9,24 @@
   tags:
     - install-dependencies
 
+- name: Performance Tuning - Distribution - release - machine optimizations
+  include_tasks: '{{ ansible_distribution|lower }}_{{ ansible_distribution_release }}.yaml'
+  tags:
+    - machine-optimizations
+
 - name: Performance Tuning - Configure {{ ansible_machine }} Kernel Parameters
   lineinfile:
     path: "/etc/default/grub"
     state: "present"
     regexp: "^GRUB_CMDLINE_LINUX="
-    line: "{{ grub_cmdline_linux[ansible_machine] | join() }}"
+    line: "GRUB_CMDLINE_LINUX=\"{% for key, value in grub.items() %}{% if value %}{{key}}={{value}} {% else %}{{key}} {% endif %}{% endfor %}\""
   notify:
     - "Update GRUB"
-    - "Reboot server"
   tags:
     - set-grub
 
+- meta: flush_handlers
+
 - name: Performance Tuning - Turbo Boost
   import_tasks: turbo_boost.yaml
   when: >
   tags:
     - copy-cpufrequtils
 
+- name: Performance Tuning - Copy Irqbalance File
+  template:
+    src: "files/irqbalance"
+    dest: "/etc/default/irqbalance"
+    owner: "root"
+    group: "root"
+    mode: "0644"
+  notify:
+    - "Update GRUB"
+  tags:
+    - copy-irqbalance
+
 - name: Performance Tuning - Set Ondemand Service To Disable
   service:
     name: "ondemand"