Browse Source

Revert back to hostnamectl and previous default of not setting hostname

The old default was "{{ not openshift.common.version_gte_3_1_or_1_1 }}"
just default to false instead, master branch will never be used with 3.0

hostname module doesn't work on atomic host

Fixes BZ 1489913
Scott Dodson 7 years ago
parent
commit
f255cca012
1 changed files with 4 additions and 3 deletions
  1. 4 3
      playbooks/common/openshift-cluster/config.yml

+ 4 - 3
playbooks/common/openshift-cluster/config.yml

@@ -25,10 +25,11 @@
 - name: Set hostname
   hosts: oo_masters_to_config:oo_nodes_to_config
   tasks:
+  # TODO: switch back to hostname module once we depend on ansible-2.4
+  # https://github.com/ansible/ansible/pull/25906
   - name: Set hostname
-    hostname:
-      name: "{{ openshift.common.hostname }}"
-    when: openshift_set_hostname | default(True) | bool
+    command: "hostnamectl set-hostname {{ openshift.common.hostname }}"
+    when: openshift_set_hostname | default(false,true) | bool
 
 - include: ../openshift-etcd/config.yml