summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* fixed error in awsutil.pyMatt Woodson2016-03-011-2/+1
|
* ohi: added subtype searchingMatt Woodson2016-03-012-1/+29
|
* Add warnings to bin/cluster and READMEsAndrew Butcher2016-02-251-0/+7
|
* Fix typo in oscpAndy Grimm2016-02-231-1/+1
|
* Adding ip address optionKenny Woodson2016-01-294-16/+52
|
* Merge pull request #1269 from kwoodson/inventory_alias_fixKenny Woodson2016-01-251-7/+8
|\ | | | | Supporting awsutil inventory calls with version and hosttype aliases.
| * Fixing awsutil to support aliases and v3Kenny Woodson2016-01-251-7/+8
| |
* | Remove camel case for bin/cluster addNodesJason DeTiberus2016-01-191-4/+4
|/
* Merge pull request #1179 from kwoodson/v3_docKenny Woodson2016-01-131-0/+1
|\ | | | | Udpating opssh documentation.
| * Updated help menu for v3 flagKenny Woodson2016-01-131-0/+1
| |
* | Add -A parameter to forward ssh agentJoel Diaz2016-01-121-0/+5
|/
* Merge pull request #1149 from kwoodson/tab_completionKenny Woodson2016-01-113-10/+10
|\ | | | | Updating tab completion for metadata changes.
| * Merge branch 'tab_completion' of github.com:kwoodson/openshift-ansible into ↵Kenny Woodson2016-01-111-3/+3
| |\ | | | | | | | | | | | | | | | | | | tab_completion Conflicts: bin/ossh_bash_completion
| | * Fixing tab completion for latest metadata changesKenny Woodson2016-01-113-10/+10
| | |
| * | Fixing tab completion for latest metadata changesKenny Woodson2016-01-113-10/+10
| |/
* | Merge pull request #1128 from lhuard1A/bin_cluster_ose_3.1Thomas Wiest2016-01-111-4/+1
|\ \ | |/ |/| Make bin/cluster able to spawn an OSE 3.1 cluster
| * Make bin/cluster able to spawn OSE 3.1 clustersLénaïc Huard2016-01-081-4/+1
| |
* | Update to metadata tooling.Kenny Woodson2016-01-085-96/+134
|/
* Removing environment and env tags.Kenny Woodson2016-01-042-57/+67
|
* Updates to ohi to pull cache if specified. Also require versionKenny Woodson2015-12-142-40/+66
|
* Updating env-host-type to host patternsKenny Woodson2015-12-116-21/+21
|
* more aws support for scaleupJason DeTiberus2015-11-241-0/+25
|
* Use field numbers for all formats in bin/cluster for python 2.6Andrew Butcher2015-11-171-10/+10
|
* bin/cluster fix python 2.6 issueJason DeTiberus2015-11-161-6/+6
|
* Remove references to multi_ec2.pyJason DeTiberus2015-11-102-1/+1
|
* Support for gceKenny Woodson2015-11-036-23/+26
|
* Removing spec files.Kenny Woodson2015-10-281-128/+0
|
* Automatic commit of package [openshift-ansible-bin] release [0.0.21-1].Kenny Woodson2015-10-281-1/+4
|
* Automatic commit of package [openshift-ansible-bin] release [0.0.20-1].Kenny Woodson2015-10-281-1/+4
|
* Merge pull request #659 from jaryn/exit_stausThomas Wiest2015-10-141-21/+23
|\ | | | | Fix exception handling.
| * Fix exception handling.Jaroslav Henner2015-10-061-21/+23
| | | | | | | | | | | | | | | | | | | | | | | | The subcommand of the action was called using os.system. The exit value of os.system is a 16-bit value. This value was propagated and used as exit value of the whole `cluster {ACTION}` command without any modification, resulting in `exit()` being called with value > 255. In the CPython 2.7 exit(v) with v > 255 behaves like exit(0), which hides that we had an error during the execution. This commit removes the error propagation by return value and introduces using exceptions instead.
* | Revert "Revert "GCE support""Chengcheng Mu2015-10-061-4/+8
|/ | | | This reverts commit 3073d1f729f9dcd202088f6b318b465567c6344b.
* Revert "GCE support"Thomas Wiest2015-10-051-8/+4
|
* oo_option fixed, some clean upChengcheng Mu2015-10-011-1/+1
|
* GCE-support (more information in PR, README_GCE.md)Chengcheng Mu2015-10-011-4/+8
|
* Add missing ,Wesley Hearn2015-09-241-1/+1
|
* Fix a minor bug involving AWS ENV KeysJohn T Skarbek2015-09-051-1/+1
| | | | | * If a user forgot to set their AWS keys, we'd get a non descriptive error about a variable not being set * This patch uses the correct variable so the error message is more informative
* Atomic Enterprise related changes.Avesh Agarwal2015-08-261-0/+4
|
* Automatic commit of package [openshift-ansible-bin] release [0.0.19-1].Kenny Woodson2015-08-201-1/+19
|
* Updated to show private ips when doing a listKenny Woodson2015-08-132-4/+4
|
* Updated to read config first and default to users home dirKenny Woodson2015-08-123-7/+28
|
* Prevent Ansible from serializing tasksLénaïc Huard2015-08-111-0/+10
| | | | even if the ssh known_host file misses the ssh public host keys of the servers.
* Infra node supportWesley Hearn2015-07-231-1/+4
|
* Playbook updates for clustered etcdJason DeTiberus2015-07-101-0/+3
| | | | | | | | | | | | | | | | | | | | | - Add support to bin/cluster for specifying etcd hosts - defaults to 0, if no etcd hosts are selected, then configures embedded etcd - Updates for the byo inventory file for etcd and master as node by default - Consolidation of cluster logic more centrally into common playbook - Added etcd config support to playbooks - Restructured byo playbooks to leverage the common openshift-cluster playbook - Added support to common master playbook to generate and apply external etcd client certs from the etcd ca - start of refactor for better handling of master certs in a multi-master environment. - added the openshift_master_ca and openshift_master_certificates roles to manage master certs instead of generating them in the openshift_master role - added etcd host groups to the cluster update playbooks - aded better handling of host groups when they are either not present or are empty. - Update AWS readme
* bin/cluster supports boto credentials as well as env variablesJason DeTiberus2015-07-101-2/+8
|
* Merge pull request #291 from lhuard1A/profileThomas Wiest2015-07-061-0/+6
|\ | | | | Add a --profile option to spot which task takes more time
| * Add a --profile option to spot which task takes more timeLénaïc Huard2015-06-221-0/+6
| |
* | Add a generic mechanism for passing optionsLénaïc Huard2015-07-031-1/+1
| | | | | | | | And use it in the libvirt and openstack playbooks
* | Infrastructure - Validate AWS environment before calling playbooksJhon Honce2015-06-291-5/+18
| |
* | changed Openshift to OpenShiftThomas Wiest2015-06-193-3/+3
|/