diff --git a/ansible.cfg b/.github/files/ansible.cfg similarity index 100% rename from ansible.cfg rename to .github/files/ansible.cfg diff --git a/galaxy.yml.j2 b/.github/files/galaxy.yml.j2 similarity index 100% rename from galaxy.yml.j2 rename to .github/files/galaxy.yml.j2 diff --git a/.github/workflows/ci_standalone_versioned.yml b/.github/workflows/ci_standalone_versioned.yml index 12d8d4409..8dbc3ecb0 100644 --- a/.github/workflows/ci_standalone_versioned.yml +++ b/.github/workflows/ci_standalone_versioned.yml @@ -60,6 +60,9 @@ jobs: - name: give some time to spin up run: sleep 30 + - name: Move ansible.cfg to root + run: mv .github/files/ansible.cfg . + - name: Display Versions run: which python && pip --version && ansible --version diff --git a/.gitignore b/.gitignore index df31fe96a..a1fc7799d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ collections/* !collections/requirements.yml -galaxy.yml *.tar.gz *.pyc id_rsa* diff --git a/changelogs/fragments/source_build.yml b/changelogs/fragments/source_build.yml new file mode 100644 index 000000000..1a65407d8 --- /dev/null +++ b/changelogs/fragments/source_build.yml @@ -0,0 +1,4 @@ +--- +minor_changes: + - ansible.cfg removed from root and galaxy.yml added to enable install from source +... diff --git a/galaxy.yml b/galaxy.yml new file mode 100644 index 000000000..0ffe0d091 --- /dev/null +++ b/galaxy.yml @@ -0,0 +1,31 @@ +--- +namespace: infra +name: controller_configuration +version: 2.4.1-devel +description: A collection of roles to manage Ansible Controller +readme: README.md +authors: + - Andrew Huffman + - Adebisi Oyawale @aoyawale + - Kedar Kulkarni @kedark3 + - Tom Page @Tompage1994 + - Sean Sullivan @sean-m-sullivan + - David Danielsson @djdanielsson +repository: https://github.com/redhat-cop/controller_configuration.git +issues: https://github.com/redhat-cop/controller_configuration.git/issues +build_ignore: + - galaxy.yml.j2 + - release.yml + - .github + - .ansiblelint.yml + - .yamllint.yml + - '*.tar.gz' +license: + - GPL-3.0-or-later +tags: + - controller + - collection + - controller_configuration + - automation_platform + - infrastructure +...