Merge "Add dynamic-login to our published images by default"
This commit is contained in:
commit
5c9bc36232
@ -130,6 +130,9 @@ time via the kernel command line parameters:
|
|||||||
|
|
||||||
* Restart the ironic-conductor.
|
* Restart the ironic-conductor.
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
This element is added to the published images by default.
|
||||||
|
|
||||||
The *devuser* element allows creating a user at build time, for example:
|
The *devuser* element allows creating a user at build time, for example:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
@ -8,3 +8,4 @@ ipa_raw_dir: '{{ ansible_user_dir }}/src/opendev.org/openstack/ironic-python-age
|
|||||||
ipa_tar_dir: '{{ ansible_user_dir }}/src/opendev.org/openstack/ironic-python-agent/UPLOAD_TAR'
|
ipa_tar_dir: '{{ ansible_user_dir }}/src/opendev.org/openstack/ironic-python-agent/UPLOAD_TAR'
|
||||||
dib_extra_args:
|
dib_extra_args:
|
||||||
dib_from_source: true
|
dib_from_source: true
|
||||||
|
extra_elements: ["dynamic-login"]
|
||||||
|
@ -20,6 +20,9 @@
|
|||||||
command: |
|
command: |
|
||||||
ironic-python-agent-builder -o {{ image_name }} -b HEAD -v
|
ironic-python-agent-builder -o {{ image_name }} -b HEAD -v
|
||||||
{{ "-r {}".format(image_release) if image_release else '' }}
|
{{ "-r {}".format(image_release) if image_release else '' }}
|
||||||
|
{% for element in extra_elements %}
|
||||||
|
--element {{ element }}
|
||||||
|
{% endfor %}
|
||||||
{{ "--extra-args '{}'".format(dib_extra_args) if dib_extra_args else '' }}
|
{{ "--extra-args '{}'".format(dib_extra_args) if dib_extra_args else '' }}
|
||||||
{{ image_distro }}
|
{{ image_distro }}
|
||||||
environment:
|
environment:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user