├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── changelogs ├── changelog.yaml └── fragments │ └── CHANGELOG.rst ├── docs └── place_holder ├── galaxy-importer.cfg ├── galaxy.yml ├── meta ├── execution-environment.yml └── runtime.yml ├── plugins └── README.md ├── requirements.txt ├── requirements.yml └── roles └── place_holder /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/ibm.spectrum_virtualize/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea 3 | .coverage 4 | .project 5 | .DS_Store 6 | .vscode 7 | all_play.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/ibm.spectrum_virtualize/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/ibm.spectrum_virtualize/HEAD/README.md -------------------------------------------------------------------------------- /changelogs/changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/ibm.spectrum_virtualize/HEAD/changelogs/changelog.yaml -------------------------------------------------------------------------------- /changelogs/fragments/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/ibm.spectrum_virtualize/HEAD/changelogs/fragments/CHANGELOG.rst -------------------------------------------------------------------------------- /docs/place_holder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy-importer.cfg: -------------------------------------------------------------------------------- 1 | [galaxy-importer] 2 | RUN_FLAKE8 = True -------------------------------------------------------------------------------- /galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/ibm.spectrum_virtualize/HEAD/galaxy.yml -------------------------------------------------------------------------------- /meta/execution-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/ibm.spectrum_virtualize/HEAD/meta/execution-environment.yml -------------------------------------------------------------------------------- /meta/runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/ibm.spectrum_virtualize/HEAD/meta/runtime.yml -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-collections/ibm.spectrum_virtualize/HEAD/plugins/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- 1 | # requirements.yml 2 | --- 3 | collections: 4 | - ibm.spectrum_virtualize 5 | -------------------------------------------------------------------------------- /roles/place_holder: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------