Skip to content
Snippets Groups Projects
Commit e9afc5fe authored by Mark Goddard's avatar Mark Goddard
Browse files

Add support for Bifrost dib_os_release

There is a Bifrost bug that causes this variable to be required
parent aad71bcd
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,9 @@ ...@@ -7,6 +7,9 @@
# DIB base OS element. # DIB base OS element.
kolla_bifrost_dib_os_element: "centos7" kolla_bifrost_dib_os_element: "centos7"
# DIB image OS release.
kolla_bifrost_dib_os_release: "GenericCloud"
# List of DIB elements. # List of DIB elements.
kolla_bifrost_dib_elements: kolla_bifrost_dib_elements:
- "serial-console" - "serial-console"
......
...@@ -5,6 +5,9 @@ kolla_node_custom_config_path: ...@@ -5,6 +5,9 @@ kolla_node_custom_config_path:
# DIB image OS element. # DIB image OS element.
kolla_bifrost_dib_os_element: kolla_bifrost_dib_os_element:
# DIB image OS release.
kolla_bifrost_dib_os_release:
# List of DIB image elements. # List of DIB image elements.
kolla_bifrost_dib_elements: [] kolla_bifrost_dib_elements: []
......
...@@ -2,11 +2,14 @@ ...@@ -2,11 +2,14 @@
# Diskimage-builder element for base OS. # Diskimage-builder element for base OS.
dib_os_element: "{{ kolla_bifrost_dib_os_element }}" dib_os_element: "{{ kolla_bifrost_dib_os_element }}"
# DIB OS release.
dib_os_release: "{{ kolla_bifrost_dib_os_release }}"
# List of DIB image elements. # List of DIB image elements.
dib_elements: "{{ (kolla_bifrost_dib_elements + [kolla_bifrost_dib_init_element]) | join(' ') }}" dib_elements: "{{ (kolla_bifrost_dib_elements + [kolla_bifrost_dib_init_element]) | join(' ') }}"
# DIB image environment variables. # DIB image environment variables.
dib_env_vars: "{{ kolla_bifrost_dib_env_vars }}" {{ {'dib_env_vars': kolla_bifrost_dib_env_vars} | to_nice_yaml }}
# List of DIB image packages. # List of DIB image packages.
dib_packages: "{{ kolla_bifrost_dib_packages | join(',') }}" dib_packages: "{{ kolla_bifrost_dib_packages | join(',') }}"
...@@ -7,6 +7,9 @@ ...@@ -7,6 +7,9 @@
# DIB base OS element. # DIB base OS element.
#kolla_bifrost_dib_os_element: #kolla_bifrost_dib_os_element:
# DIB image OS release.
#kolla_bifrost_dib_os_release:
# List of DIB elements. # List of DIB elements.
#kolla_bifrost_dib_elements: #kolla_bifrost_dib_elements:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment