diff options
author | Maciej Wereski <m.wereski@partner.samsung.com> | 2021-07-28 13:13:47 +0000 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2021-08-24 13:41:02 +0000 |
commit | d3ca7e0aff94ff066e2f17702adca7a1ac20285f (patch) | |
tree | a214d0391e2b3077c1974f3e7a8e50d4feafbea9 /deployment/noheat/cluster-rke | |
parent | 4dc4d713e8427a34c21ac6078683455ab01bce28 (diff) |
noheat deployment: use nfs0 as nexus3 bastion
Bastion rules may cause DNS malfunction sometimes. It won't be an issue
on NFS server but might be on control or operator host.
Issue-ID: INT-1601
Signed-off-by: Maciej Wereski <m.wereski@partner.samsung.com>
Change-Id: I23f49a20257c34475ed02f4c0df036f0ded450f4
Diffstat (limited to 'deployment/noheat/cluster-rke')
-rw-r--r-- | deployment/noheat/cluster-rke/ansible/create.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deployment/noheat/cluster-rke/ansible/create.yml b/deployment/noheat/cluster-rke/ansible/create.yml index 7304dbb6c..296bb9536 100644 --- a/deployment/noheat/cluster-rke/ansible/create.yml +++ b/deployment/noheat/cluster-rke/ansible/create.yml @@ -5,7 +5,7 @@ roles: - role: setup_nfs - name: Set up bastion node for ONAP Docker registry - hosts: "control0" + hosts: "nfs0" become: yes roles: - role: create_bastion @@ -17,6 +17,6 @@ - name: Add cluster hostnames to /etc/hosts file lineinfile: path: /etc/hosts - line: "{{ hostvars['control0']['ansible_default_ipv4']['address'] }} {{ item }}" + line: "{{ hostvars['nfs0']['ansible_default_ipv4']['address'] }} {{ item }}" loop: - "nexus3.onap.org" |