- pungi_builder - added a role that installs Pungi and Lorax. - koji_server - allow side-tags creation for all Koji tags.master 0.1.10
parent
325a684f02
commit
0e61f25eab
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
minor_changes:
|
||||||
|
- koji_server - allow side-tag creation for all Koji tags.
|
@ -0,0 +1,13 @@
|
|||||||
|
# msvsphere.ci.pungi_builder
|
||||||
|
|
||||||
|
An Ansible role that installs [Pungi](https://docs.pagure.org/pungi/),
|
||||||
|
[Lorax](https://weldr.io/lorax/) and other components required for building
|
||||||
|
MSVSphere OS images.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
MIT.
|
||||||
|
|
||||||
|
## Authors
|
||||||
|
|
||||||
|
* [Eugene Zamriy](mailto:ezamriy@msvsphere-os.ru)
|
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
argument_specs:
|
||||||
|
main:
|
||||||
|
short_description: A role that installs Pungi and Lorax.
|
||||||
|
author: Eugene Zamriy
|
||||||
|
version_added: '0.1.10'
|
||||||
|
options: {}
|
@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
galaxy_info:
|
||||||
|
author: Eugene Zamriy
|
||||||
|
description: A role that installs Pungi and Lorax.
|
||||||
|
company: Softline PJSC
|
||||||
|
license: MIT
|
||||||
|
min_ansible_version: 2.13
|
||||||
|
platforms:
|
||||||
|
- name: EL
|
||||||
|
versions:
|
||||||
|
- "9"
|
||||||
|
galaxy_tags:
|
||||||
|
- koji
|
||||||
|
|
||||||
|
dependencies: []
|
@ -0,0 +1,18 @@
|
|||||||
|
---
|
||||||
|
- name: Install sphere-repos-extra package
|
||||||
|
ansible.builtin.dnf:
|
||||||
|
name: sphere-repos-extra
|
||||||
|
state: installed
|
||||||
|
|
||||||
|
- name: Install pungi
|
||||||
|
ansible.builtin.dnf:
|
||||||
|
name:
|
||||||
|
- pungi
|
||||||
|
- fus
|
||||||
|
- lorax
|
||||||
|
- lorax-templates-msvsphere
|
||||||
|
- anaconda-tui
|
||||||
|
- anaconda-install-env-deps
|
||||||
|
state: installed
|
||||||
|
enablerepo:
|
||||||
|
- devel
|
Loading…
Reference in new issue