summaryrefslogtreecommitdiffstats
path: root/roles/etcd/defaults
Commit message (Collapse)AuthorAgeFilesLines
* Use r_etcd_common_etcdctl_command instead of hardcoded binary name to ↵Vadim Rutkovsky2018-02-101-1/+1
| | | | support containerized upgrade
* Cast openshift_docker_use_system_container to boolMichael Gugino2018-01-021-1/+1
| | | | | | | | | | | | | openshift_docker_use_system_container might be passed in via ini inventory as 'openshift_docker_use_system_container=false' This condition will be interpreted as a string type, instead of boolean. Casting openshift_docker_use_system_container as bool will achieve the users desired intent. Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1528943
* Remove openshift.common.{is_atomic|is_containerized}Michael Gugino2017-12-201-1/+1
| | | | | We set these variables using facts in init, no need to duplicate the logic all around the codebase.
* etcd: use Fedora /latest/ instead of hardcoding the versionGiuseppe Scrivano2017-12-131-1/+1
| | | | Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* Implement container runtime roleMichael Gugino2017-12-011-0/+2
|
* Cleanup etcd runtime variable.Michael Gugino2017-11-211-1/+3
| | | | Cleaning out reference to etcd_runtime in openshift facts.
* Refactor etcd imageMichael Gugino2017-11-201-0/+6
| | | | Simplify logic for etcd_image
* etcd: remove hacks for the system containerGiuseppe Scrivano2017-10-231-3/+1
| | | | | | Use ADDTL_MOUNTS to add a bind mount to the etcd configuration. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* Merge pull request #5672 from ingvagabund/migrate-embedded-etcdOpenShift Merge Robot2017-10-111-1/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | Automatic merge from submit-queue. Migrate embedded etcd to external etcd Trello card: https://trello.com/c/9fnBfkT5/528-migrate-embedded-etcd-hosts-to-external-process?menu=filter&filter=label:committed-3.7 Tested on: - [x] embedded etcd -> external rpm etcd - [x] embedded etcd -> external docker etcd One needs to set the `openshift_image_tag` before running the migration to containerized docker etcd.
| * migrate embedded etcd to external etcdJan Chaloupka2017-10-061-1/+2
| |
* | fix typo for default in etcdMichael Gugino2017-10-051-1/+1
|/
* Merge pull request #5518 from ingvagabund/set-quota-backend-bytes-explicitlyOpenShift Merge Robot2017-09-271-0/+3
|\ | | | | | | | | | | | | Automatic merge from submit-queue set the etcd backend quota to 4GB by default Bug: 1492891
| * Set the etcd backend quota to 4GB by defaultJan Chaloupka2017-09-261-0/+3
| |
* | consolidate etcd_common roleJan Chaloupka2017-09-251-4/+71
|/
* Added firwall defaults to etcd role.Kenny Woodson2017-08-301-2/+2
|
* Updated README to reflect refactor. Moved firewall initialize into separate ↵Kenny Woodson2017-08-101-0/+3
| | | | file.
* Adding a default condition and removing unneeded defaults.Kenny Woodson2017-08-091-2/+0
|
* First attempt at refactor of os_firewallKenny Woodson2017-08-081-0/+11
|
* move etcd upgrade related code into etcd_upgrade roleJan Chaloupka2017-05-181-6/+0
|
* Refactor etcd rolesJan Chaloupka2017-04-281-1/+0
| | | | | | | | - introduce block and simplify when conditions - introduce config.yml so the self-standing etcd role can be run (e.g. to test etcd cluster deployment) - remove empty task files - skip dependency on openshift_etcd_ca - replace cert paths with their appropriate variables
* Combined (squashed) commit for all changes related to adding Contiv support ↵Sanjeev Rampal2017-02-271-0/+1
| | | | 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.
* etcd: use as system containerGiuseppe Scrivano2017-02-101-1/+1
| | | | Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* Move os_firewall_allow from defaults to role dependencies.Andrew Butcher2016-06-011-6/+0
|
* Default os_firewall_use_firewalld to false in os_firewall and remove overrides.Andrew Butcher2016-05-021-1/+0
|
* Remove etcd_interface variable. Remove openshift_docker dependency from the ↵Andrew Butcher2016-04-201-1/+0
| | | | etcd role.
* Use openshift_hostname/openshift_ip values for etcd configuration and ↵Andrew Butcher2016-04-201-5/+5
| | | | certificates.
* Bug 1313169 - Ansible installer tries to enable etcd_container service even ↵Brenton Leanhardt2016-03-021-1/+1
| | | | though containerized=false
* Containerization work by @sdodsonScott Dodson2015-12-151-0/+1
|
* Fix etcd cert generation when etcd_interface is definedJason DeTiberus2015-11-021-8/+0
| | | | | | | | - Refactor certificate generation to properly accept overrides of etcd_interface per host and set the certificate SANS and peer URLs properly. - Add sanity checking to user-set values of etcd_interface to provide a better error message
* Fix etcd default interfaceJason DeTiberus2015-07-171-1/+1
| | | | | - instead of hardcoding to eth0, use the interface associated with the ipv4 default route as the default instead.
* Etcd role updates and playbook updatesJason DeTiberus2015-07-101-6/+9
| | | | | | | | | | | | | | | | | | | | | - fix firewall conflict issues with co-located etcd and openshift hosts - added os_firewall dependency to etcd role - updated etcd template to better handle clustered and non-clustered installs - added etcd_ca role - generates a self-signed cert to manage etcd certificates, since etcd peer certificates are required to be client and server certs and the openshift ca will only generate client or server certs (not one authorized for both). - renamed openshift_etcd_certs role to etcd_certificates and updated it to manage certificates generated from the CA managed by the etcd_ca role - remove hard coded etcd_port in openshift_facts - updates for the openshift-etcd common playbook - removed etcd and openshift-etcd playbooks from the byo playbooks directory - added a common playbook for setting etcd launch facts - added an openshift-etcd common service playbook - removed unused variables - fixed tests for embedded_{etcd,dns,kube} in openshift_master - removed old workaround for reloading systemd units
* Add etcd role that builds out basic etcd clusterScott Dodson2015-07-101-0/+28
| | | | | | - Add initial etcd role - Add etcd playbook to create etcd client certs - Hookup master to etcd
* Cleanup empty role dirs/filesJason DeTiberus2015-02-241-2/+0
|
* Initial Commit. Sharing is caringKenny Woodson2014-09-161-0/+2