summaryrefslogtreecommitdiffstats
path: root/filter_plugins
Commit message (Collapse)AuthorAgeFilesLines
* Making pylint happyewolinetz2017-06-121-1/+1
|
* Allowing openshift_metrics to specify PV selectors and allow way to define ↵ewolinetz2017-05-261-0/+15
| | | | selectors when creating pv
* Remove vim configuration from Python filesRodolfo Carvalho2017-05-093-4/+0
| | | | | | | In a project where contributors are free to use whatever editor they want and we have linting tools that verify the proper formatting of Python files, it should not be required to have a vim-specific line in Python files.
* Refactor secret generation for python3.Andrew Butcher2017-05-021-2/+2
|
* Integrate GlusterFS into OpenShift installationJose A. Rivera2017-04-101-0/+17
| | | | Signed-off-by: Jose A. Rivera <jarrpa@redhat.com>
* Merge pull request #3834 from jarrpa/oo_collect-listsOpenShift Bot2017-04-041-14/+38
|\ | | | | Merged by openshift-bot
| * oo_filters: Disable pylint too-many-lines testJose A. Rivera2017-04-031-0/+1
| | | | | | | | Signed-off-by: Jose A. Rivera <jarrpa@redhat.com>
| * oo_collect: Allow list elements to be lists of dictJose A. Rivera2017-04-031-12/+35
| | | | | | | | Signed-off-by: Jose A. Rivera <jarrpa@redhat.com>
| * oo_collect: Update comments to show source of failureJose A. Rivera2017-04-031-3/+3
| | | | | | | | Signed-off-by: Jose A. Rivera <jarrpa@redhat.com>
* | Support unicode output when dumping yamlRussell Teague2017-04-031-9/+12
|/
* Use oo_version_gte_3_6+ for future versions and treat 1.x origin as legacy. ↵Andrew Butcher2017-03-271-28/+59
| | | | Add tests.
* Add oo_version_gte_X_X_or_Y_Y version comparison filters.Andrew Butcher2017-03-241-0/+98
|
* Use ansible.compat.six where possibleJason DeTiberus2017-03-091-21/+17
|
* Use six from ansible.module_utils for remote hostsJason DeTiberus2017-03-091-1/+1
|
* Use 2 and 3 friendly urlparse in oo_filtersSteve Milner2017-02-231-1/+1
|
* Ansible Lint cleanup and making filter/lookup plugins used by ↵Jason DeTiberus2017-02-141-578/+0
| | | | openshift_master_facts available within the role
* Modify playbooks to use oadm_manage_node moduleRussell Teague2017-02-131-0/+23
|
* Reference class instead of self.__class__ within super constructor to avoid ↵Andrew Butcher2017-02-081-8/+8
| | | | calling self forever.
* Remove legacy router/registry certs and client configs from synchronized ↵Andrew Butcher2017-02-061-7/+8
| | | | master certs.
* Restructure certificate redeploy playbooksAndrew Butcher2017-02-021-4/+4
|
* Make use of AnsibleDumper in openshift_master filters s.t. we can represent ↵Andrew Butcher2017-01-231-1/+5
| | | | AnsibleUnsafeText when dumping yaml.
* Merge pull request #3100 from abutcher/serialsScott Dodson2017-01-181-1/+3
|\ | | | | Serialize cert creation in delegated commands
| * Create individual serving cert and loopback kubeconfig for additional masters.Andrew Butcher2017-01-161-1/+3
| | | | | | | | | | | | Deprecates use of 'create-master-certs' for generating master serving certificate and loopback kubeconfig in order to reference the first master's CA serial file.
* | use pod to generate keystores (#14)Jeff Cantrill2017-01-171-1/+3
| |
* | additional cr fixesJeff Cantrill2017-01-171-0/+10
|/
* filter: Removed unused validation callsSteve Milner2017-01-121-3/+0
| | | | | | The parent class for filters in openshift_master defines a validate method which does nothing. This change removes calls to this method while leaving the validation implementations as is.
* Updated initializer usage in filtersSteve Milner2017-01-121-11/+11
| | | | | | Switched from explicit parent class usage to super(). See: https://docs.python.org/2/library/functions.html#super
* oo_filters: Moved static methods to functionsSteve Milner2017-01-111-896/+898
| | | | | This change moves the static methods into functions in an effort to reduce complexity and improve readability.
* remove old Ops toolingJason DeTiberus2016-12-211-160/+0
|
* python3 support, add tox for better local testing against multiple python ↵Jason DeTiberus2016-12-202-29/+22
| | | | versions
* Fix access_modes initializationLuis Fernandez Alvarez2016-12-131-3/+3
|
* update tests and flake8/pylint fixesJason DeTiberus2016-11-294-34/+38
|
* Gracefully handle OpenSSL module absenceMichael Scherer2016-11-281-1/+11
| | | | Should fix #2869
* Merge pull request #2813 from lhuard1A/optimize_listJason DeTiberus2016-11-161-2/+2
|\ | | | | Optimize the cloud-specific list.yml playbooks
| * Optimize the cloud-specific list.yml playbooksLénaïc Huard2016-11-161-2/+2
| | | | | | | | | | | | by removing the need to gather facts on all VMs in order to list them. And prettify the output of AWS list the same way it is done for other cloud providers.
* | Fix commit-offsets in version detection for containerized installsTim Bielawa2016-11-141-0/+21
|/ | | | | | * Applies the chomp_commit_offset logic to container version detection https://bugzilla.redhat.com/show_bug.cgi?id=1389137
* Merge pull request #2615 from tbielawa/node-labels-fixTim Bielawa2016-10-251-2/+2
|\ | | | | Set node-labels in kubeletArguments
| * Add node-labels to kubeletArgumentsTim Bielawa2016-10-201-2/+2
| | | | | | | | * Node labels are parsed from openshift_node_labels if they exist
* | Fix typosRodolfo Carvalho2016-10-191-1/+1
|/
* Do not error on node labels set too non-string values.Manuel Hutter2016-10-141-1/+1
| | | | see #2602
* Merge pull request #2511 from vishpat/nuage_haAndrew Butcher2016-10-041-0/+32
|\ | | | | Changes for Nuage HA
| * Filterize haproxy frontends/backends and add method for providing additional ↵Andrew Butcher2016-10-031-0/+32
| | | | | | | | frontends/backends.
* | Use ansible.module_utils._text.to_text instead of ↵Andrew Butcher2016-09-281-2/+10
|/ | | | ansible.utils.unicode.to_unicode.
* Merge pull request #2473 from lhuard1A/openstack_inventoryJason DeTiberus2016-09-221-3/+3
|\ | | | | Update the OpenStack dynamic inventory script
| * Update the OpenStack dynamic inventory scriptLénaïc Huard2016-09-201-3/+3
| |
* | Do not create volume claims for hosted components when storage type is object.Andrew Butcher2016-09-191-7/+8
|/
* Always deduplicate detected certificate namesEli Young2016-09-091-1/+1
|
* Adjust to_padded_yaml transformation to use the AnsibleDumperTim Bielawa2016-09-071-1/+4
| | | | | | | | * Previously we used yaml.safe_dump * Now we use yamp.dump with the `Dumper` parameter set to the AnsibleDumper class. * AnsibleDumper subclasses yaml.SafeDumper, so we aren't losing any safety nets
* Fix string substitution error in the to_padded_yaml filterTim Bielawa2016-09-021-1/+1
|
* Merge pull request #2358 from abutcher/service-serving-certsAndrew Butcher2016-08-251-0/+3
|\ | | | | enable service-serving-cert-signer by default