|
@@ -6,26 +6,15 @@
|
|
- openshift_deployment_type == 'openshift-enterprise'
|
|
- openshift_deployment_type == 'openshift-enterprise'
|
|
- not openshift_use_crio | bool
|
|
- not openshift_use_crio | bool
|
|
|
|
|
|
|
|
+- name: Start node image prepull
|
|
|
|
+ import_tasks: prepull.yml
|
|
|
|
+
|
|
- import_tasks: dnsmasq_install.yml
|
|
- import_tasks: dnsmasq_install.yml
|
|
- import_tasks: dnsmasq.yml
|
|
- import_tasks: dnsmasq.yml
|
|
|
|
|
|
- name: setup firewall
|
|
- name: setup firewall
|
|
import_tasks: firewall.yml
|
|
import_tasks: firewall.yml
|
|
|
|
|
|
-- name: Update journald config
|
|
|
|
- import_tasks: journald.yml
|
|
|
|
-
|
|
|
|
-#### Disable SWAP #####
|
|
|
|
-# https://docs.openshift.com/container-platform/3.4/admin_guide/overcommit.html#disabling-swap-memory
|
|
|
|
-# swapoff is a custom module in lib_utils that comments out swap entries in
|
|
|
|
-# /etc/fstab and runs swapoff -a, if necessary.
|
|
|
|
-- name: Disable swap
|
|
|
|
- swapoff: {}
|
|
|
|
- when: openshift_disable_swap | default(true) | bool
|
|
|
|
-
|
|
|
|
-- name: include node installer
|
|
|
|
- import_tasks: install.yml
|
|
|
|
-
|
|
|
|
- name: Restart cri-o
|
|
- name: Restart cri-o
|
|
systemd:
|
|
systemd:
|
|
name: cri-o
|
|
name: cri-o
|
|
@@ -43,6 +32,20 @@
|
|
enabled: yes
|
|
enabled: yes
|
|
state: restarted
|
|
state: restarted
|
|
|
|
|
|
|
|
+- name: include node installer
|
|
|
|
+ import_tasks: install.yml
|
|
|
|
+
|
|
|
|
+- name: Update journald config
|
|
|
|
+ import_tasks: journald.yml
|
|
|
|
+
|
|
|
|
+#### Disable SWAP #####
|
|
|
|
+# https://docs.openshift.com/container-platform/3.4/admin_guide/overcommit.html#disabling-swap-memory
|
|
|
|
+# swapoff is a custom module in lib_utils that comments out swap entries in
|
|
|
|
+# /etc/fstab and runs swapoff -a, if necessary.
|
|
|
|
+- name: Disable swap
|
|
|
|
+ swapoff: {}
|
|
|
|
+ when: openshift_disable_swap | default(true) | bool
|
|
|
|
+
|
|
# The atomic-openshift-node service will set this parameter on
|
|
# The atomic-openshift-node service will set this parameter on
|
|
# startup, but if the network service is restarted this setting is
|
|
# startup, but if the network service is restarted this setting is
|
|
# lost. Reference: https://bugzilla.redhat.com/show_bug.cgi?id=1372388
|
|
# lost. Reference: https://bugzilla.redhat.com/show_bug.cgi?id=1372388
|