From 69dec7b868b88f840dfbe5f59b77b973e5f352a0 Mon Sep 17 00:00:00 2001 From: Tomáš Levora Date: Wed, 2 Oct 2019 13:53:26 +0200 Subject: Fixing invalid hostname filled by ci-installer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ci-installer filled hostname containing underscore what is invalid Issue-ID: OOM-2119 Change-Id: I26dfa7115ba9e700715e0fae441c21a26fde3382 Signed-off-by: Tomáš Levora --- tools/cicdansible/roles/install/templates/inventory.yml.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/cicdansible') diff --git a/tools/cicdansible/roles/install/templates/inventory.yml.j2 b/tools/cicdansible/roles/install/templates/inventory.yml.j2 index c828ca00..faec5903 100644 --- a/tools/cicdansible/roles/install/templates/inventory.yml.j2 +++ b/tools/cicdansible/roles/install/templates/inventory.yml.j2 @@ -13,7 +13,7 @@ all: ansible_host: {{ resource_host }} infrastructure: hosts: - infra_host: + infra: ansible_host: infra cluster_ip: {{ hostvars['infra'].ansible_default_ipv4.address }} external_ip: "{{ hostvars['infra'].ansible_host }}" @@ -31,10 +31,10 @@ all: {% endfor %} kubernetes-control-plane: hosts: - infra_host + infra kubernetes-etcd: hosts: - infra_host + infra nfs-server: hosts: node0 -- cgit 1.2.3-korg