summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-node
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #4094 from ashcrow/status-doesnt-existJan Chaloupka2017-05-191-1/+1
|\ | | | | Ensure good return code for specific until loops
| * Ensure good return code for specific until loopsSteve Milner2017-05-041-1/+1
| |
* | Rework openshift_excluders roleRussell Teague2017-05-161-8/+8
| |
* | run excluders over selected set of hosts during control_plane/node upgradeJan Chaloupka2017-05-031-2/+14
|/ | | | Disable/reset excluders over requested hosts
* Normalizing groups.Kenny Woodson2017-05-011-1/+1
|
* Standardize use of byo and common for network_manager.ymlRussell Teague2017-04-121-0/+26
|
* Make the OCP available version detection excluder freeJan Chaloupka2017-03-281-3/+0
| | | | | | When detecting available OCP version via repoquery, use yum.conf file with exclude= set to an empty array. So the detection is independent of the OCP excluder.
* Merge pull request #3038 from djosborne/calicoOpenShift Bot2017-03-271-0/+2
|\ | | | | Merged by openshift-bot
| * Add calico.Dan Osborne2017-03-231-0/+2
| |
* | enable excluders during node/master scaling upJan Chaloupka2017-03-161-0/+11
|/
* Merge pull request #3393 from srampal/contivScott Dodson2017-03-011-0/+3
|\ | | | | Pull request for Contiv Ansible code integration into Openshift Ansible
| * Combined (squashed) commit for all changes related to adding Contiv support ↵Sanjeev Rampal2017-02-271-0/+3
| | | | | | | | into Openshift Ansible. This is the first (beta) release of Contiv with Openshift and is only supported for Openshift Origin + Bare metal deployments at the time of this commit. Please refer to the Openshift and Contiv official documentation for details of the level of support for different features and modes of operation.
* | Convert selectattr tests to use 'match'Russell Teague2017-02-231-1/+1
| |
* | Merge pull request #3421 from jhadvig/registred-cmdRussell Teague2017-02-211-20/+0
|\ \ | | | | | | rename registered mktemp command
| * | Remove unused playsjhadvig2017-02-211-20/+0
| |/
* / Updating node playbooks to use oc_objRussell Teague2017-02-171-5/+15
|/
* Restructure certificate redeploy playbooksAndrew Butcher2017-02-021-0/+47
|
* Standardize add_host: with name and changed_whenRussell Teague2017-01-252-2/+9
| | | | | | | The add_host: task does not change any data on the host and as practice has been configured to changed_when: False. This commit standardizes that usage in the byo and common playbooks. Additionally, taks names are added to each task to improve troubleshooting.
* Move role dependencies out of playbooks for openshift_master, openshift_node ↵Andrew Butcher2017-01-091-46/+2
| | | | and openshift_hosted.
* YAML LintingRussell Teague2016-12-121-1/+1
| | | | | * Added checks to make ci for yaml linting * Modified y(a)ml files to pass lint checks
* Delegate openshift_manage_node tasks to master host.Andrew Butcher2016-11-211-32/+2
|
* Where we use curl force it to use tlsv1.2Scott Dodson2016-11-021-1/+1
| | | | | | | curl, prior to RHEL 7.2, did not properly negotiate up the TLS protocol, so force it to use tlsv1.2 Fixes bug 1390869
* Template with_items for upstream ansible-2.2 compat.Andrew Butcher2016-10-141-1/+1
|
* update handling of use_dnsmasqJason DeTiberus2016-10-131-2/+2
|
* Set master facts for first master in node scaleup.Andrew Butcher2016-10-051-0/+11
|
* Further secure registry improvementsAndrew Butcher2016-09-291-2/+2
| | | | | | - Default to hosted_registry_insecure=False - Add openshift ca to system ca-trust. - Update ca trust in openshift_node_certificates rather than docker_ca_trust
* Update play names for consistency.Andrew Butcher2016-09-291-3/+3
|
* Suppress more warnings.Andrew Butcher2016-09-281-0/+4
|
* Iterate over node inventory hostnames instead of openshift.common.hostname ↵Andrew Butcher2016-09-081-3/+1
| | | | within openshift_manage_node role.
* Don't loop over hostvars when setting node schedulability.Andrew Butcher2016-09-071-1/+0
|
* fixing openshift key error in case of node failure during run (ssh issue)jawed2016-08-091-1/+1
|
* Merge pull request #2049 from abutcher/named-certificatesScott Dodson2016-08-031-1/+6
|\ | | | | Named CA Certificates
| * Add options for specifying named ca certificates to be added to the ↵Andrew Butcher2016-08-011-1/+6
| | | | | | | | openshift ca bundle.
* | Refactor etcd certificates roles.Andrew Butcher2016-08-021-82/+5
|/
* Move role dependencies to playbooks.Andrew Butcher2016-07-291-2/+46
|
* Refactor openshift certificates roles.Andrew Butcher2016-07-201-66/+4
|
* Clean up some deprecation warningsTim Bielawa2016-07-071-4/+4
| | | | | | * "Using bare variables is deprecated. Update your playbooks so that the environment value uses the full variable syntax" * Closes #2125
* Revert openshift-certificates changes.Andrew Butcher2016-05-301-4/+66
|
* Consolidate ca/master/node certificates roles into openshift_certificates.Andrew Butcher2016-05-191-66/+4
|
* Refactor where we compute no_proxy hostnamesScott Dodson2016-05-171-0/+14
|
* Merge pull request #1880 from dgoodwin/registry-insecureBrenton Leanhardt2016-05-161-8/+0
|\ | | | | Fixes for openshift_docker_hosted_registry_insecure var.
| * Fixes for openshift_docker_hosted_registry_insecure var.Devan Goodwin2016-05-161-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes a failure on masters if you explicitly set openshift_docker_hosted_registry_insecure=true. This is the default but if you tried to set it an error would trigger as a relevant variable was not passed in the master playbooks. Fixes setting the variable to false being ignored. master/node playbooks were referencing the docker fact, which was not set at that point and thus we were always getting the default of true, regardless what was in your inventory. Stop passing registry insecure in via playbooks, we can access it when running openshift_facts itself. Add a new default in openshift facts.
* | Fixes for flannel configuration.Andrew Butcher2016-05-091-13/+10
|/
* Remove vars_files on play includes for byo, scaleup and restart playbooks.Andrew Butcher2016-05-051-0/+5
|
* Merge pull request #1839 from abutcher/v2-deprecationsJason DeTiberus2016-04-291-4/+4
|\ | | | | Cleanup various deprecation warnings.
| * Cleanup various deprecation warnings.Andrew Butcher2016-04-291-4/+4
| |
* | Merge pull request #1843 from detiber/remove_deprecated_rolesJason DeTiberus2016-04-291-8/+0
|\ \ | |/ |/| Remove deprecated roles
| * Remove deprecated online playbooks/rolesJason DeTiberus2016-04-291-8/+0
| |
* | Add openshift_docker_hosted_registry_insecure optionAndrew Lau2016-04-291-2/+2
|/
* Replace deprecated sudo with become.Andrew Butcher2016-04-251-1/+1
|