summaryrefslogtreecommitdiffstats
path: root/filter_plugins
Commit message (Collapse)AuthorAgeFilesLines
* Synchronize master kube configsAndrew Butcher2016-02-261-1/+30
|
* oo_filter: added custom fitler to return hosts group infoMatt Woodson2016-02-151-0/+14
|
* Bug 1302970 - update script does not patch router if name is different from ↵Brenton Leanhardt2016-02-111-0/+28
| | | | default
* Add organizations attribute to github identity providerJason DeTiberus2016-02-101-7/+20
| | | | - also fix location of mappingMethod in identityProviders config
* Bug 1304150 - Can't upgrade atomic-openshift to specified versionBrenton Leanhardt2016-02-091-0/+25
|
* Refactor registry storage options.Andrew Butcher2016-02-011-0/+93
|
* Added docs around oo_nodes_with_labelJason DeTiberus2016-02-011-49/+75
|
* use yaml for loading lable info instead of jsonJason DeTiberus2016-02-011-1/+1
|
* infra_node fixesJason DeTiberus2016-02-011-19/+59
| | | | | | | | | | | | | | - openshift_master role update - infra_nodes was previously being set to num_infra, which is an integer value when using the cloud providers, added a new variable osm_infra_nodes that is expected to be a list of hosts - if openshift_infra_nodes is not already set, create it from the nodes that have the region=infra label. - Cloud provider config playbook updates - override openshift_router_selector for cloud providers to avoid using the default of 'region=infra' when deployment_type is not 'online' - Set openshift_infra_nodes to g_infra_host for cloud providers
* Merge pull request #1273 from lhuard1A/fix_oo_pretty_print_clusterThomas Wiest2016-01-261-19/+21
|\ | | | | Fix `oo_pretty_print_cluster` following the renaming of `env` into `clusterid`
| * Fix oo_pretty_print_cluster following the renaming of `env` into `clusterid`Lénaïc Huard2016-01-261-19/+21
| |
* | Test validate_pcs_cluster input is basestring instead of str.Andrew Butcher2016-01-211-2/+2
|/
* Merge pull request #1121 from abutcher/rolling-restarts-pacemakerBrenton Leanhardt2016-01-131-1/+27
|\ | | | | Rolling restart playbook for masters
| * Validate pacemaker cluster members.Andrew Butcher2016-01-121-1/+27
| |
* | Fix for to_padded_yaml filterJason DeTiberus2016-01-121-0/+3
| | | | | | | | | | - Fix issue where None is passed to to_padded_yaml filter and invalid config is generated.
* | - sqashed to one commitLutz Lange2016-01-121-1/+14
|/
* openshift_facts validationAndrew Butcher2016-01-041-29/+1
|
* Secrets validation.Andrew Butcher2016-01-041-1/+28
|
* Clean up idempotency issues with session secrets.Andrew Butcher2016-01-041-6/+13
|
* Updating env-host-type to host patternsKenny Woodson2015-12-111-0/+1
|
* Fix validation for BasicAuthPasswordIdentityProviderDaniel Tschan2015-12-011-2/+2
|
* Refactor master identity provider configurationJason DeTiberus2015-11-231-0/+469
| | | | | | - Remote template in favor of a filter plugin - Add additional validation for identity provider config - Add mappingMethod attribute for identity providers, default to 'claim'
* Merge pull request #933 from menren/dockerOnMasterAWSThomas Wiest2015-11-191-3/+7
|\ | | | | Docker on master aws
| * small tweaks for adding docker volume for aws master hostsJason DeTiberus2015-11-181-2/+2
| |
| * add a volume on master host, in AWS provisioningChengcheng Mu2015-11-181-2/+6
| |
* | Update certificate paths when 'names' key is provided.Andrew Butcher2015-11-181-0/+1
| |
* | Refactor named certificates.Andrew Butcher2015-11-161-10/+14
|/
* cluster list: break host types by subtypeLénaïc Huard2015-11-161-4/+7
|
* Better structure the output of the list playbookLénaïc Huard2015-11-131-1/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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" } ] } } }
* Merge pull request #875 from kwoodson/itserviceKenny Woodson2015-11-121-0/+51
|\ | | | | Adding support for zabbix slas.
| * adding itserviceKenny Woodson2015-11-121-0/+51
| |
* | oo_filter: don't fail when attribute is not definedTobias Florek2015-11-111-1/+1
|/
* Fix file check conditional.Andrew Butcher2015-11-051-1/+1
|
* Don't check for certs in data_dir just raise when they can't be found. Fix typo.Andrew Butcher2015-11-051-7/+2
|
* Various HA changes for pacemaker and native methods.Andrew Butcher2015-11-051-1/+1
|
* more tweaksJason DeTiberus2015-11-041-1/+1
|
* Start of true master haJason DeTiberus2015-11-041-0/+16
|
* Filter internal hostnames from the list of parsed names.Andrew Butcher2015-11-031-3/+13
|
* Add custom certificates to serving info in master configuration.Andrew Butcher2015-11-031-1/+56
|
* Updates for zbx ans moduleKenny Woodson2015-08-272-2/+51
|
* Fix pylint errors on oo_filters.pyLénaïc Huard2015-08-141-2/+2
|
* Fix node labeling. Issue #305Diego Castro2015-08-041-0/+11
|
* Adding initial zabbix setupKenny Woodson2015-07-242-10/+79
|
* Infra node supportWesley Hearn2015-07-231-1/+0
|
* Merge pull request #315 from lhuard1A/all_os_in_heatThomas Wiest2015-07-161-1/+71
|\ | | | | Make all the OpenStack resources be managed by a Heat Stack
| * Make all the OpenStack resources be managed by a Heat StackLénaïc Huard2015-07-151-1/+71
| |
* | Merge pull request #341 from detiber/sdodson-etcd-playbookThomas Wiest2015-07-161-3/+10
|\ \ | |/ |/| External clustered etcd support
| * Add support for separate etcd volume with aws provider through bin/clusterJason DeTiberus2015-07-101-0/+7
| |
| * Playbook updates for clustered etcdJason DeTiberus2015-07-101-3/+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
* | example create_hostKenny Woodson2015-07-091-1/+11
|/