diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2018-03-02 22:55:02 +0100 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2018-03-03 18:38:26 +0100 |
commit | 31435de5085f1a5bb9cf965cdbce005fc04781d1 (patch) | |
tree | a6bca651075d8fe03088254612dbdde597901886 /config | |
parent | 22847e7628420428a0211249a7a7861822029c2c (diff) |
[fuel] Fix missing space between yaml key:val
Change-Id: Icf0e5d386f593bb691f777704ac799c8729221ce
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/installers/fuel/pod_config.yml.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/installers/fuel/pod_config.yml.j2 b/config/installers/fuel/pod_config.yml.j2 index fc4de253..9a6b4be1 100644 --- a/config/installers/fuel/pod_config.yml.j2 +++ b/config/installers/fuel/pod_config.yml.j2 @@ -149,7 +149,7 @@ parameters: {%- for network in networks %} {%- for key in hosts[network] %} {%- set i = loop.index + start_ip[network] %} - {{key}}:{{ network | ipnet_hostaddr(i) }} + {{key}}: {{ network | ipnet_hostaddr(i) }} {%- endfor %} {%- endfor %} |