From 59e31ad1f5528ce5cf1f5fbb022eaf89913efb12 Mon Sep 17 00:00:00 2001 From: James Slagle Date: Mon, 24 Jul 2017 14:39:23 -0400 Subject: Consistent hostname format env for split-stack Adds a new environment split-stack-consistent-hostname-format.j2.yaml for use with split-stack that will set the {{role.name}}HostnameFormat parameters based on the actual roles in use. It's possible to generate these parameters and values as long as the roles files is the same between the 2 stacks, which will be documented in I9997bd685f8f79537dfc377f9f1eb0c7446c3289. Removes the hardcoded paramters from the other 2 split-stack environments. Change-Id: I93bc7c1a24a9cb2f9930372970c67c0eadb14add --- environments/split-stack-consistent-hostname-format.j2.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 environments/split-stack-consistent-hostname-format.j2.yaml (limited to 'environments/split-stack-consistent-hostname-format.j2.yaml') diff --git a/environments/split-stack-consistent-hostname-format.j2.yaml b/environments/split-stack-consistent-hostname-format.j2.yaml new file mode 100644 index 00000000..8345c108 --- /dev/null +++ b/environments/split-stack-consistent-hostname-format.j2.yaml @@ -0,0 +1,5 @@ +parameter_defaults: + # Consistent Hostname format +{% for role in roles %} + {{role.name}}HostnameFormat: overcloud-{{role.name.lower()}}-%index% +{% endfor %} -- cgit 1.2.3-korg