summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-11-17Merge pull request #921 from twiest/prThomas Wiest
added copr-openshift-ansible releaser, removed old rel-eng stuff.
2015-11-17added copr-openshift-ansible releaser, removed old rel-eng stuff.Thomas Wiest
2015-11-17Merge pull request #920 from mwoodson/master_checksMatt Woodson
changed counter -> count in maser items
2015-11-17changed counter -> countMatt Woodson
2015-11-17Merge pull request #919 from kwoodson/datatypeKenny Woodson
Adding data_type to zbx_items
2015-11-17Updating zbx_item classes to support data types for bool.Kenny Woodson
2015-11-17Merge pull request #917 from mwoodson/master_checksKenny Woodson
updated my check to support the boolean data type
2015-11-17updated my check to support the boolean data typeMatt Woodson
2015-11-17Merge pull request #910 from mwoodson/master_checksMatt Woodson
added healthz check and more pod count checks
2015-11-16added healthz check and more pod count checksMatt Woodson
2015-11-16Merge pull request #907 from smunilla/single_masterBrenton Leanhardt
atomic-openshift-installer: Temporarily restrict to single master
2015-11-16atomic-openshift-installer: Temporarily restrict to single masterSamuel Munilla
For now, we should restrict the quick installer to a single master. This should change in the near future.
2015-11-16Merge pull request #906 from smunilla/match_versionBrenton Leanhardt
openshift-ansible: Correct variable
2015-11-16openshift-ansible: Correct variableSamuel Munilla
2015-11-16Merge pull request #905 from smunilla/match_versionBrenton Leanhardt
atomic-openshift-utils: Version lock playbooks
2015-11-16atomic-openshift-utils: Version lock playbooksSamuel Munilla
Requires the openshift-ansible-playbooks and openshift-ansible-roles to match atomic-openshift-utils or be newer. Revise some of the other Requires to be more logical.
2015-11-16Merge pull request #904 from detiber/uninstallUpdateBrenton Leanhardt
Add the native ha services and configs to uninstall
2015-11-16Add the native ha services and configs to uninstallJason DeTiberus
2015-11-16Merge pull request #901 from joelddiaz/aws-lifetimeJoel Diaz
Raise lifetime to 2 weeks for dynamic AWS items
2015-11-16Raise lifetime to 2 weeks for dynamic AWS itemsJoel Diaz
2015-11-16Merge pull request #461 from lhuard1A/prettify_list_outputThomas Wiest
Better structure the output of the list playbook
2015-11-16Merge pull request #897 from nekop/fix-invalid-sudoBrenton Leanhardt
Fix invalid sudo command test
2015-11-16Merge pull request #898 from cw1/patch-1Thomas Wiest
README_AWS: Add needed dependency
2015-11-16Merge pull request #899 from detiber/python2_6Thomas Wiest
bin/cluster fix python 2.6 issue
2015-11-16bin/cluster fix python 2.6 issueJason DeTiberus
2015-11-16Merge pull request #826 from omeid/patch-1Brenton Leanhardt
Add pyOpenSSL to dependencies for Fedora.
2015-11-16Merge pull request #894 from detiber/gateUpgradeBrenton Leanhardt
Gate upgrade steps
2015-11-16cluster list: break host types by subtypeLénaïc Huard
2015-11-16README_AWS: Add needed dependencycw1
2015-11-16Fix invalid sudo command testTakayoshi Kimura
2015-11-14Docs: Fedora: Add missing dependencies and update to dnf.O'meid
Signed-off-by: O'meid <public@omeid.me>
2015-11-13Merge pull request #895 from twiest/prThomas Wiest
added the tito and copr_cli roles
2015-11-13Gate upgrade steps for 3.0 to 3.1 upgradeJason DeTiberus
- Add gateing tests on the 3.0 to 3.1 upgrade - Ensure that each stage does not proceed if a subset of the hosts fail, since ansible will continue through the playbook as long as all hosts in a play haven't failed. - Fix up some left over references to byo group names
2015-11-13added the tito and copr_cli rolesThomas Wiest
2015-11-13Merge pull request #893 from detiber/etcdFactsBrenton Leanhardt
Update etcd default facts setting
2015-11-13Merge pull request #892 from abutcher/bz1280230Brenton Leanhardt
Update master facts prior to upgrading from 3.0 to 3.1
2015-11-13pylint openshift_factsJason DeTiberus
2015-11-13Update etcd default facts settingJason DeTiberus
2015-11-13Update master facts prior to upgrading incase facts are missing.Andrew Butcher
2015-11-13Merge pull request #889 from ashcrow/pre-upgrade-check-outputBrenton Leanhardt
pre-upgrade-check: differentiates between port and targetPort in output
2015-11-13Merge pull request #706 from codificat/register-satBrenton Leanhardt
RH subscription: optional satellite and pkg update
2015-11-13Merge pull request #739 from codificat/vagrant-noregisterBrenton Leanhardt
Vagrantfile cleanup: remove unnecessary RHEL registration and network workaround
2015-11-13Merge pull request #867 from ibotty/rm-netaddr-depBrenton Leanhardt
remove netaddr dependency
2015-11-13Merge pull request #885 from dgoodwin/pylint-pythonpathBrenton Leanhardt
Fix pylint import errors for utils/test/.
2015-11-13pre-upgrade-check: differentiates between port and targetPort in outputSteve Milner
2015-11-13Better structure the output of the list playbookLénaïc Huard
The list playbook listed the IPs of the VMs without logging their role like: TASK: [debug ] ************************************************************ ok: [10.64.109.37] => { "msg": "public:10.64.109.37 private:192.168.165.5" } ok: [10.64.109.47] => { "msg": "public:10.64.109.47 private:192.168.165.6" } ok: [10.64.109.36] => { "msg": "public:10.64.109.36 private:192.168.165.4" } ok: [10.64.109.215] => { "msg": "public:10.64.109.215 private:192.168.165.2" } The list playbook now prints the information in a more structured way with a list of masters, a list of nodes and the subtype of the nodes like: TASK: [debug ] ************************************************************ ok: [localhost] => { "msg": { "lenaicnewlist": { "master": [ { "name": "10.64.109.215", "private IP": "192.168.165.2", "public IP": "10.64.109.215", "subtype": "default" } ], "node": [ { "name": "10.64.109.47", "private IP": "192.168.165.6", "public IP": "10.64.109.47", "subtype": "compute" }, { "name": "10.64.109.37", "private IP": "192.168.165.5", "public IP": "10.64.109.37", "subtype": "compute" }, { "name": "10.64.109.36", "private IP": "192.168.165.4", "public IP": "10.64.109.36", "subtype": "infra" } ] } } }
2015-11-13Add the sub-host-type tag to the libvirt VMsLénaïc Huard
2015-11-12Merge pull request #884 from smunilla/english_updatesBrenton Leanhardt
atomic-openshift-installer: Update prompts and help messages
2015-11-12Merge pull request #886 from smunilla/sudo_checkBrenton Leanhardt
atomic-openshift-installer: Update nopwd sudo test
2015-11-12atomic-openshift-installer: Update nopwd sudo testSamuel Munilla
This is an update to the no password sudo test meant to address some weirdness around group vs. user permissions.