diff --git a/changelogs/config.yaml b/changelogs/config.yaml index da0f57b6..d48b86c7 100644 --- a/changelogs/config.yaml +++ b/changelogs/config.yaml @@ -11,22 +11,23 @@ prelude_section_name: release_summary prelude_section_title: Release Summary sanitize_changelog: true sections: -- - major_changes - - Major Changes -- - minor_changes - - Minor Changes -- - breaking_changes - - Breaking Changes / Porting Guide -- - deprecated_features - - Deprecated Features -- - removed_features - - Removed Features (previously deprecated) -- - security_fixes - - Security Fixes -- - bugfixes - - Bugfixes -- - known_issues - - Known Issues + - - major_changes + - Major Changes + - - minor_changes + - Minor Changes + - - breaking_changes + - Breaking Changes / Porting Guide + - - deprecated_features + - Deprecated Features + - - removed_features + - Removed Features (previously deprecated) + - - security_fixes + - Security Fixes + - - bugfixes + - Bugfixes + - - known_issues + - Known Issues title: Cloud.Azure_Ops trivial_section_name: trivial -use_fqcn: true \ No newline at end of file +use_fqcn: true + diff --git a/galaxy.yml b/galaxy.yml index 782a43ba..cf354754 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,23 +1,20 @@ -# See https://docs.ansible.com/ansible/latest/dev_guide/collections_galaxy_meta.html - -namespace: community -name: FIXME -version: 0.1.0 +namespace: redhat_cop +name: vmware_ops +version: 0.0.1 readme: README.md authors: - - YOUR NAME (github.com/YOURGITHUB) + - Ansible Cloud Content Team (@redhat-cop) description: null license_file: LICENSE tags: -# tags so people can search for collections https://galaxy.ansible.com/search -# tags are all lower-case, no spaces, no dashes. - - example1 - - example2 -repository: https://github.com/ansible-collections/community.REPO_NAME + - vmware +repository: https://github.com/redhat-cop/cloud.vmware_ops #documentation: https://github.com/ansible-collection-migration/community.REPO_NAME/tree/main/docs -homepage: https://github.com/ansible-collections/community.REPO_NAME -issues: https://github.com/ansible-collections/community.REPO_NAME/issues +homepage: https://github.com/redhat-cop/cloud.vmware_ops +issues: https://github.com/redhat-cop/cloud.vmware_ops/issues build_ignore: -# https://docs.ansible.com/ansible/devel/dev_guide/developing_collections_distributing.html#ignoring-files-and-folders - .gitignore - changelogs/.plugin-cache.yaml +dependencies: { + "vmware.vmware_rest": ">=2.3.1" +} diff --git a/meta/runtime.yml b/meta/runtime.yml index e8821255..e6991e14 100644 --- a/meta/runtime.yml +++ b/meta/runtime.yml @@ -1,2 +1,3 @@ --- -requires_ansible: '>=2.11.0' # Use '>=2.9.10' instead, if needed +requires_ansible: '>=2.14.0' # Use '>=2.9.10' instead, if needed + diff --git a/playbooks/provision_vm/provision_vm.yml b/playbooks/provision_vm/provision_vm.yml deleted file mode 100644 index 1b7f7d77..00000000 --- a/playbooks/provision_vm/provision_vm.yml +++ /dev/null @@ -1,20 +0,0 @@ -- name: Playbook to provision a VM on VMware - hosts: localhost - gather_facts: false - - tasks: - - name: set connection info - ansible.builtin.set_fact: - connection_args: - vcenter_hostname: "" - vcenter_username: "" - vcenter_password: "" - vcenter_validate_certs: "false" - - - name: Test urlEncoded issue with list datasoruces - vmware.vmware_rest.vcenter_datacenter_info: - vcenter_hostname: "{{ connection_args.vcenter_hostname }}" - vcenter_username: "{{ connection_args.vcenter_username }}" - vcenter_password: "{{ connection_args.vcenter_password }}" - vcenter_validate_certs: "false" - register: create_vsphere_vm_datacenter diff --git a/playbooks/provision_vm/README.md b/tox.ini similarity index 100% rename from playbooks/provision_vm/README.md rename to tox.ini