diff options
author | Blaisonneau David <david.blaisonneau@orange.com> | 2017-08-24 16:44:06 +0200 |
---|---|---|
committer | Blaisonneau David <david.blaisonneau@orange.com> | 2017-08-24 16:44:06 +0200 |
commit | ec043c5303fb57d78549bd052878edea010c9f38 (patch) | |
tree | 8934b34174ec6630b8600d50a872328d81531488 /installers/daisy | |
parent | 4d1f8c3724c6dd380f057796480a1949a11bccc8 (diff) |
Correct typos to avoid failure in jenkins-ci check
Change-Id: I2e8b789cbc10def76a1b7ee673bc1ca6d7f4137f
Signed-off-by: Blaisonneau David <david.blaisonneau@orange.com>
Diffstat (limited to 'installers/daisy')
-rw-r--r-- | installers/daisy/pod_config.yaml.j2 | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/installers/daisy/pod_config.yaml.j2 b/installers/daisy/pod_config.yaml.j2 index 5df66ee..39be297 100644 --- a/installers/daisy/pod_config.yaml.j2 +++ b/installers/daisy/pod_config.yaml.j2 @@ -1,43 +1,43 @@ -adapter: {{ conf['jumphost']['remote_para']['type'] }} +adapter: {{ conf['jumphost']['remote_params']['type'] }} hosts: - name: 'controller01' roles: - 'CONTROLLER_LB' - ipmi_ip: {{ conf['nodes'][0]['remote_mangement']['address'] }} - ipmi_user: {{ conf['nodes'][0]['remote_mangement']['user'] }} - ipmi_pass: {{ conf['nodes'][0]['remote_mangement']['pass'] }} + ipmi_ip: {{ conf['nodes'][0]['remote_management']['address'] }} + ipmi_user: {{ conf['nodes'][0]['remote_management']['user'] }} + ipmi_pass: {{ conf['nodes'][0]['remote_management']['pass'] }} mac_addresses:{% for nic in conf['nodes'][0]['interfaces'] %} - {{ nic['mac_address'] }}{% endfor %} - name: 'controller02' roles: - 'CONTROLLER_LB' - ipmi_ip: {{ conf['nodes'][1]['remote_mangement']['address'] }} - ipmi_user: {{ conf['nodes'][1]['remote_mangement']['user'] }} - ipmi_pass: {{ conf['nodes'][1]['remote_mangement']['pass'] }} + ipmi_ip: {{ conf['nodes'][1]['remote_management']['address'] }} + ipmi_user: {{ conf['nodes'][1]['remote_management']['user'] }} + ipmi_pass: {{ conf['nodes'][1]['remote_management']['pass'] }} mac_addresses:{% for nic in conf['nodes'][1]['interfaces'] %} - {{ nic['mac_address'] }}{% endfor %} - name: 'controller03' roles: - 'CONTROLLER_LB' - ipmi_ip: {{ conf['nodes'][2]['remote_mangement']['address'] }} - ipmi_user: {{ conf['nodes'][2]['remote_mangement']['user'] }} - ipmi_pass: {{ conf['nodes'][2]['remote_mangement']['pass'] }} + ipmi_ip: {{ conf['nodes'][2]['remote_management']['address'] }} + ipmi_user: {{ conf['nodes'][2]['remote_management']['user'] }} + ipmi_pass: {{ conf['nodes'][2]['remote_management']['pass'] }} mac_addresses:{% for nic in conf['nodes'][2]['interfaces'] %} - {{ nic['mac_address'] }}{% endfor %} - name: 'computer01' roles: - 'COMPUTER' - ipmi_ip: {{ conf['nodes'][3]['remote_mangement']['address'] }} - ipmi_user: {{ conf['nodes'][3]['remote_mangement']['user'] }} - ipmi_pass: {{ conf['nodes'][3]['remote_mangement']['pass'] }} + ipmi_ip: {{ conf['nodes'][3]['remote_management']['address'] }} + ipmi_user: {{ conf['nodes'][3]['remote_management']['user'] }} + ipmi_pass: {{ conf['nodes'][3]['remote_management']['pass'] }} mac_addresses:{% for nic in conf['nodes'][3]['interfaces'] %} - {{ nic['mac_address'] }}{% endfor %} - name: 'computer02' roles: - 'COMPUTER' - ipmi_ip: {{ conf['nodes'][4]['remote_mangement']['address'] }} - ipmi_user: {{ conf['nodes'][4]['remote_mangement']['user'] }} - ipmi_pass: {{ conf['nodes'][4]['remote_mangement']['pass'] }} + ipmi_ip: {{ conf['nodes'][4]['remote_management']['address'] }} + ipmi_user: {{ conf['nodes'][4]['remote_management']['user'] }} + ipmi_pass: {{ conf['nodes'][4]['remote_management']['pass'] }} mac_addresses:{% for nic in conf['nodes'][4]['interfaces'] %} - {{ nic['mac_address'] }}{% endfor %} disks: |