openshift-ansible-inventory.spec 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. Summary: OpenShift Ansible Inventories
  2. Name: openshift-ansible-inventory
  3. Version: 0.0.8
  4. Release: 1%{?dist}
  5. License: ASL 2.0
  6. URL: https://github.com/openshift/openshift-ansible
  7. Source0: %{name}-%{version}.tar.gz
  8. Requires: python2
  9. BuildRequires: python2-devel
  10. BuildArch: noarch
  11. %description
  12. Ansible Inventories used with the openshift-ansible scripts and playbooks.
  13. %prep
  14. %setup -q
  15. %build
  16. %install
  17. mkdir -p %{buildroot}/etc/ansible
  18. mkdir -p %{buildroot}/usr/share/ansible/inventory
  19. mkdir -p %{buildroot}/usr/share/ansible/inventory/aws
  20. mkdir -p %{buildroot}/usr/share/ansible/inventory/gce
  21. cp -p multi_ec2.py %{buildroot}/usr/share/ansible/inventory
  22. cp -p multi_ec2.yaml.example %{buildroot}/etc/ansible/multi_ec2.yaml
  23. cp -p aws/hosts/ec2.py %{buildroot}/usr/share/ansible/inventory/aws
  24. cp -p gce/hosts/gce.py %{buildroot}/usr/share/ansible/inventory/gce
  25. %files
  26. %config(noreplace) /etc/ansible/*
  27. %dir /usr/share/ansible/inventory
  28. /usr/share/ansible/inventory/multi_ec2.py*
  29. /usr/share/ansible/inventory/aws/ec2.py*
  30. /usr/share/ansible/inventory/gce/gce.py*
  31. %changelog
  32. * Tue Jun 09 2015 Kenny Woodson <kwoodson@redhat.com> 0.0.8-1
  33. - Added more verbosity when error happens. Also fixed a bug.
  34. (kwoodson@redhat.com)
  35. - Implement OpenStack provider (lhuard@amadeus.com)
  36. - * rename openshift_registry_url oreg_url * rename option_images to
  37. _{oreg|ortr}_images (jhonce@redhat.com)
  38. - Fix the remaining pylint warnings (lhuard@amadeus.com)
  39. - Fix some of the pylint warnings (lhuard@amadeus.com)
  40. - [libvirt cluster] Use net-dhcp-leases to find VMs’ IPs (lhuard@amadeus.com)
  41. - fixed the openshift-ansible-bin build (twiest@redhat.com)
  42. * Fri May 15 2015 Kenny Woodson <kwoodson@redhat.com> 0.0.7-1
  43. - Making multi_ec2 into a library (kwoodson@redhat.com)
  44. * Wed May 13 2015 Thomas Wiest <twiest@redhat.com> 0.0.6-1
  45. - Added support for grouping and a bug fix. (kwoodson@redhat.com)
  46. * Tue May 12 2015 Thomas Wiest <twiest@redhat.com> 0.0.5-1
  47. - removed ec2.ini from the openshift-ansible-inventory.spec file so that we're
  48. not dictating what the ec2.ini file should look like. (twiest@redhat.com)
  49. - Added capability to pass in ec2.ini file. (kwoodson@redhat.com)
  50. * Thu May 07 2015 Thomas Wiest <twiest@redhat.com> 0.0.4-1
  51. - Fixed a bug due to renaming of variables. (kwoodson@redhat.com)
  52. * Thu May 07 2015 Thomas Wiest <twiest@redhat.com> 0.0.3-1
  53. - fixed build problems with openshift-ansible-inventory.spec
  54. (twiest@redhat.com)
  55. - Allow option in multi_ec2 to set cache location. (kwoodson@redhat.com)
  56. - Add ansible_connection=local to localhost in inventory (jdetiber@redhat.com)
  57. - Adding refresh-cache option and cleanup for pylint. Also updated for
  58. aws/hosts/ being added. (kwoodson@redhat.com)
  59. * Thu Mar 26 2015 Thomas Wiest <twiest@redhat.com> 0.0.2-1
  60. - added the ability to have a config file in /etc/openshift_ansible to
  61. multi_ec2.py. (twiest@redhat.com)
  62. - Merge pull request #97 from jwhonce/wip/cluster (jhonce@redhat.com)
  63. - gce inventory/playbook updates for node registration changes
  64. (jdetiber@redhat.com)
  65. - Various fixes (jdetiber@redhat.com)
  66. * Tue Mar 24 2015 Thomas Wiest <twiest@redhat.com> 0.0.1-1
  67. - new package built with tito