diff options
Diffstat (limited to 'openshift-ansible.spec')
-rw-r--r-- | openshift-ansible.spec | 492 |
1 files changed, 489 insertions, 3 deletions
diff --git a/openshift-ansible.spec b/openshift-ansible.spec index 57cc726b5..22435f13d 100644 --- a/openshift-ansible.spec +++ b/openshift-ansible.spec @@ -5,7 +5,7 @@ } Name: openshift-ansible -Version: 3.0.87 +Version: 3.3.3 Release: 1%{?dist} Summary: Openshift and Atomic Enterprise Ansible License: ASL 2.0 @@ -13,7 +13,7 @@ URL: https://github.com/openshift/openshift-ansible Source0: https://github.com/openshift/openshift-ansible/archive/%{commit}/%{name}-%{version}.tar.gz BuildArch: noarch -Requires: ansible >= 1.9.4 +Requires: ansible >= 2.1.0.0 Requires: python2 Requires: openshift-ansible-docs = %{version}-%{release} @@ -38,6 +38,7 @@ popd mkdir -p %{buildroot}%{_datadir}/%{name} mkdir -p %{buildroot}%{_datadir}/ansible/%{name} mkdir -p %{buildroot}%{_datadir}/ansible_plugins +cp -rp library %{buildroot}%{_datadir}/ansible/%{name}/ # openshift-ansible-bin install mkdir -p %{buildroot}%{_bindir} @@ -56,6 +57,10 @@ cp inventory/byo/* docs/example-inventories/ # openshift-ansible-playbooks install cp -rp playbooks %{buildroot}%{_datadir}/ansible/%{name}/ +# BZ1330091 +find -L %{buildroot}%{_datadir}/ansible/%{name}/playbooks -name lookup_plugins -type l -delete +find -L %{buildroot}%{_datadir}/ansible/%{name}/playbooks -name filter_plugins -type l -delete + # openshift-ansible-roles install cp -rp roles %{buildroot}%{_datadir}/ansible/%{name}/ @@ -65,6 +70,16 @@ cp -rp filter_plugins %{buildroot}%{_datadir}/ansible_plugins/ # openshift-ansible-lookup-plugins install cp -rp lookup_plugins %{buildroot}%{_datadir}/ansible_plugins/ +# create symlinks from /usr/share/ansible/plugins/lookup -> +# /usr/share/ansible_plugins/lookup_plugins +pushd %{buildroot}%{_datadir} +mkdir -p ansible/plugins +pushd ansible/plugins +ln -s ../../ansible_plugins/lookup_plugins lookup +ln -s ../../ansible_plugins/filter_plugins filter +popd +popd + # atomic-openshift-utils install pushd utils %{__python} setup.py install --skip-build --root %{buildroot} @@ -78,6 +93,8 @@ popd %files %doc LICENSE.md README* %dir %{_datadir}/ansible/%{name} +%{_datadir}/ansible/%{name}/library +%ghost %{_datadir}/ansible/%{name}/playbooks/common/openshift-master/library.rpmmoved # ---------------------------------------------------------------------------------- # openshift-ansible-docs subpackage @@ -110,11 +127,30 @@ BuildArch: noarch %files playbooks %{_datadir}/ansible/%{name}/playbooks +# We moved playbooks/common/openshift-master/library up to the top and replaced +# it with a symlink. RPM doesn't handle this so we have to do some pre-transaction +# magic. See https://fedoraproject.org/wiki/Packaging:Directory_Replacement +%pretrans playbooks -p <lua> +-- Define the path to directory being replaced below. +-- DO NOT add a trailing slash at the end. +path = "/usr/share/ansible/openshift-ansible/playbooks/common/openshift-master/library" +st = posix.stat(path) +if st and st.type == "directory" then + status = os.rename(path, path .. ".rpmmoved") + if not status then + suffix = 0 + while not status do + suffix = suffix + 1 + status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix) + end + os.rename(path, path .. ".rpmmoved") + end +end +%package roles # ---------------------------------------------------------------------------------- # openshift-ansible-roles subpackage # ---------------------------------------------------------------------------------- -%package roles Summary: Openshift and Atomic Enterprise Ansible roles Requires: %{name} = %{version} Requires: %{name}-lookup-plugins = %{version} @@ -142,6 +178,7 @@ Requires: pyOpenSSL %files filter-plugins %{_datadir}/ansible_plugins/filter_plugins +%{_datadir}/ansible/plugins/filter # ---------------------------------------------------------------------------------- @@ -157,6 +194,7 @@ BuildArch: noarch %files lookup-plugins %{_datadir}/ansible_plugins/lookup_plugins +%{_datadir}/ansible/plugins/lookup # ---------------------------------------------------------------------------------- # atomic-openshift-utils subpackage @@ -183,6 +221,454 @@ Atomic OpenShift Utilities includes %changelog +* Wed Jul 27 2016 Troy Dawson <tdawson@redhat.com> 3.3.3-1 +- Template named certificates with_items. (abutcher@redhat.com) +- Replace master_cert_config_dir with common config_base fact. + (abutcher@redhat.com) +- remove outdated openshift_cluster_metrics role (jdetiber@redhat.com) +- Fix "deloyment" typo in deployment types doc (lxia@redhat.com) +- Add missing nuke_images.sh symlink. (dgoodwin@redhat.com) +- a-o-i: Persist Roles Variables (smunilla@redhat.com) +- Default nodes matching selectors when not collected. (abutcher@redhat.com) +- Copy openshift binaries instead of using wrapper script. + (dgoodwin@redhat.com) +- Correct relative include for ansible version check. (abutcher@redhat.com) +- Fix libvirt provider for Ansible 2.1.0.0 (lhuard@amadeus.com) +- Re-arrange master and node role dependencies. (abutcher@redhat.com) +- Refactor openshift certificates roles. (abutcher@redhat.com) +- Check ansible version prior to evaluating cluster hosts and groups. + (abutcher@redhat.com) +- Stop reporting changes when docker pull is already up to date. + (dgoodwin@redhat.com) +- a-o-i: Write Role variable groups (smunilla@redhat.com) +- Slight modification to error when using mismatched openshift_release. + (dgoodwin@redhat.com) +- fix "databcase" typo in example roles (lxia@redhat.com) +- Secure router only when openshift.hosted.router.certificate.contents exists. + (abutcher@redhat.com) +- Add jenkinstemplate (sdodson@redhat.com) +- Fix bugs with origin 1.2 rpm based upgrades. (dgoodwin@redhat.com) +- Sync latest image streams and templates (sdodson@redhat.com) +- Ensure 'oo_nfs_to_config' in groups prior to checking group length when nfs + host unset. (abutcher@redhat.com) +- We have proper ansible support and requirements in place now, de-revert this + commit (tbielawa@redhat.com) +- Skip docker upgrades on Atomic. (dgoodwin@redhat.com) +- Resolve some deprecation warnings. (abutcher@redhat.com) +- a-o-i: Looser facts requirements for unattended (smunilla@redhat.com) +- Temporarily link registry config templates for ansible 1.9.x support. + (abutcher@redhat.com) +- Remove relative lookup for registry config and check for skipped update in + registry redeploy conditional. (abutcher@redhat.com) +- Arbitrary Installer yaml (smunilla@redhat.com) +- Check for existence of sebooleans prior to setting. (abutcher@redhat.com) +- Require ansible-2.1 (abutcher@redhat.com) + +* Sun Jul 17 2016 Scott Dodson <sdodson@redhat.com> 3.3.2-1 +- Convert openshift_release and openshift_version to strings for startswith + (sdodson@redhat.com) +- Symlink ansible 2.x locations to ansible 1.9 locations (sdodson@redhat.com) +- Clarify message when old docker pre-installed but 1.10+ requested. + (dgoodwin@redhat.com) +- Fix quick install 3.2 upgrade path. (dgoodwin@redhat.com) +- Fix upgrade with docker_version set. (dgoodwin@redhat.com) +- Move the bash completion into the cli role. Only add when not containerized + (tbielawa@redhat.com) +- [master] add support for setting auditConfig (jdetiber@redhat.com) +- Remove too recent pylint option keys. (dgoodwin@redhat.com) +- pylint fixes (dgoodwin@redhat.com) +- Install bash-completion package for the oc/oadm tools (tbielawa@redhat.com) +- Fix more docker role logic. (dgoodwin@redhat.com) +- Add checks to docker role for 1.9.1+. (dgoodwin@redhat.com) +- Make libvirt’s VM use virtio-scsi insteal of virtio-blk + (lhuard@amadeus.com) +- Fix erroneous pylint error (smunilla@redhat.com) +- Remove 3.0 and 3.1 upgrade sub-dirs. (dgoodwin@redhat.com) +- Rename upgrade to just v3_2 as it's now major and minor. + (dgoodwin@redhat.com) +- Set registry replicas = 1 when no storage specified. (abutcher@redhat.com) +- Re-align the OpenStack firewall rules with the iptables rules + (lhuard@amadeus.com) +- Fix bin/cluster openstack related error (lhuard@amadeus.com) +- Fix upgrades with an openshift_image_tag set. (dgoodwin@redhat.com) +- ops-docker-loopback-to-direct-lvm.yml: fix typo on the variable name + "cli_name vs cli_host" (gael.lambert@redhat.com) +- Remove cleanup code from 1.0 to 1.1 upgrade era (sdodson@redhat.com) +- Move repoquery_cmd fact setting into a more logical place. + (dgoodwin@redhat.com) +- Add dependency on docker to openshift_docker role. (dgoodwin@redhat.com) +- Enable pullthrough by default in registry config for object storage. + (abutcher@redhat.com) +- Fix gpg key path (sdodson@redhat.com) +- Use proper startswith. (dgoodwin@redhat.com) +- Sync latest image stream content (sdodson@redhat.com) +- Role dependency cleanup (abutcher@redhat.com) +- Fix up some broken markdown formatting (mostly tables) (tbielawa@redhat.com) +- Rename things to avoid conflicts with paas sig release rpms + (sdodson@redhat.com) +- Remove/update TODOs. (dgoodwin@redhat.com) +- Remove all debug used during devel of openshift_version. + (dgoodwin@redhat.com) +- Update quick upgrade to remove unsupported options. (dgoodwin@redhat.com) +- Don't special case origin on centos (sdodson@redhat.com) +- Various hosted component improvements (abutcher@redhat.com) +- Move repoquery fact definition to openshift_common. (dgoodwin@redhat.com) +- Clean up some deprecation warnings (tbielawa@redhat.com) +- Add CentOS PaaS SIG repos for RHEL (sdodson@redhat.com) +- Remove Origin 1.1 as an option (smunilla@redhat.com) +- Make /var/lib/origin mounted rslave (sdodson@redhat.com) +- fix "hapoxy" typo in loadbalancer playbook (Mathias.Merscher@dg-i.net) +- Fix dnf variant of rpm_versions.sh (sdodson@redhat.com) +- Make image stream munging optional (sdodson@redhat.com) +- Add aos-3.3 to tito releasers.conf (sdodson@redhat.com) +- Add symlinks for node templates. (dgoodwin@redhat.com) +- Fixes for Ansible 2.1. (dgoodwin@redhat.com) +- Update repoquery_cmd definitions to match latest in master. + (dgoodwin@redhat.com) +- Fix unsafe bool usage. (dgoodwin@redhat.com) +- Fix typo in example inventories. (dgoodwin@redhat.com) +- Fixes for non-containerized separate etcd hosts. (dgoodwin@redhat.com) +- More docker upgrade fixes. (dgoodwin@redhat.com) +- Only nuke images when crossing the Docker 1.10 boundary in upgrade. + (dgoodwin@redhat.com) +- Fix node/openvswitch containers not restarting after upgrade. + (dgoodwin@redhat.com) +- Allow skipping Docker upgrade during OpenShift upgrade. (dgoodwin@redhat.com) +- a-o-i: Add Origin 1.2 Installs (smunilla@redhat.com) +- a-o-i: Add support for installing OpenShift Origin (smunilla@redhat.com) +- Refactor 3.2 upgrade to avoid killing nodes without evac. + (dgoodwin@redhat.com) +- Update docker upgrade playbook to be more flexible. (dgoodwin@redhat.com) +- Add missing defaults file. (dgoodwin@redhat.com) +- Use common fact initialization include in upgrade. (dgoodwin@redhat.com) +- Fix use of v3.2 format for openshift_release in upgrade. + (dgoodwin@redhat.com) +- Remove more legacy upgrade playbooks. (dgoodwin@redhat.com) +- Fix docker restarts during openshift_version role. (dgoodwin@redhat.com) +- Support setting a docker version in inventory. (dgoodwin@redhat.com) +- Fix version facts with trailing newline. (dgoodwin@redhat.com) +- Document the new and old version variables. (dgoodwin@redhat.com) +- Normalize some of the version inventory vars which users might mistakenly + enter wrong. (dgoodwin@redhat.com) +- Check that detected version matches openshift_release in rpm installations. + (dgoodwin@redhat.com) +- Block attempts to install origin without specifying any release info. + (dgoodwin@redhat.com) +- More stable lookup of running openshift version. (dgoodwin@redhat.com) +- Upgrade fixes. (dgoodwin@redhat.com) +- Fix typo in facts. (dgoodwin@redhat.com) +- Cleanup, fix 3.1 version bug in facts. (dgoodwin@redhat.com) +- More version fixes. (dgoodwin@redhat.com) +- Support origin alpha tags. (dgoodwin@redhat.com) +- More stable containerized version lookup. (dgoodwin@redhat.com) +- Remove old upgrade playbooks. (dgoodwin@redhat.com) +- Fix performance hit in openshift_facts. (dgoodwin@redhat.com) +- Always populate openshift_image_tag and openshift_pkg_version. + (dgoodwin@redhat.com) +- Remove the use of the upgrading variable. (dgoodwin@redhat.com) +- Don't be specific about rpm version to upgrade to for now. + (dgoodwin@redhat.com) +- Restore 3.2 RPM version check before upgrading. (dgoodwin@redhat.com) +- Make openshift_version role docker dep conditional. (dgoodwin@redhat.com) +- Fix rpm installs. (dgoodwin@redhat.com) +- Temporary fix for upgrading issue. (dgoodwin@redhat.com) +- Remove unused docker facts tasks. (dgoodwin@redhat.com) +- Fix version unset bug, and set common ver fact on containerized nodes. + (dgoodwin@redhat.com) +- Fix missing openshift.common.version fact on containerized nodes. + (dgoodwin@redhat.com) +- Begin major simplification of 3.2 upgrade. (dgoodwin@redhat.com) +- Respect image tag/pkg version during upgrade. (dgoodwin@redhat.com) +- Force version to latest 3.2 during upgrade. (dgoodwin@redhat.com) +- Verify openshift_release is correct or absent in inventory before upgrade. + (dgoodwin@redhat.com) +- Drop unused and broken "when" in vars section. (dgoodwin@redhat.com) +- Do not install rpm for version in openshift_version role. + (dgoodwin@redhat.com) +- Fix bin/cluster libvirt related error (jdetiber@redhat.com) +- Update openshift_version author info. (dgoodwin@redhat.com) +- Fix installing release 3.1 not converting to precise version. + (dgoodwin@redhat.com) +- Stop requiring/using first master version fact and use openshift_version var + instead. (dgoodwin@redhat.com) +- Break version calc out into a role, separate yaml for containerized/rpm. + (dgoodwin@redhat.com) +- Drop unnecessary node playbook version calculation. (dgoodwin@redhat.com) +- Add leading v for remaining IMAGE_VERSION templates. (dgoodwin@redhat.com) +- Fix error restarting master service that may not be there. + (dgoodwin@redhat.com) +- Fix use of openshift_version in ca role. (dgoodwin@redhat.com) +- Fix image tag to rpm version filter. (dgoodwin@redhat.com) +- Fix error with containerized etcd install. (dgoodwin@redhat.com) +- Refactor openshift_version behavior. (dgoodwin@redhat.com) +- Protect installed version on subsequent masters. (dgoodwin@redhat.com) +- Get rpm installations functional again. (dgoodwin@redhat.com) +- Convert generic openshift_version=3.2 to specific early in install. + (dgoodwin@redhat.com) +- Preserve node versions on re-run. (dgoodwin@redhat.com) +- Fix version compare with using just 3.2 or 1.2. (dgoodwin@redhat.com) +- Hookup node configuration. (dgoodwin@redhat.com) +- Complete installation of first master containerized. (dgoodwin@redhat.com) +- Stop downgrading Docker because we don't know what version to install yet. + (dgoodwin@redhat.com) +- Work towards determining openshift_version when unspecified. + (dgoodwin@redhat.com) +- Remove now unnecessary pull and ver check in openshift_docker role. + (dgoodwin@redhat.com) +- Set openshift_version in config playbooks for first master. + (dgoodwin@redhat.com) +- Debug output. (dgoodwin@redhat.com) +- cleanup broken symlinks - lookup_plugins filter_plugins (tdawson@redhat.com) +- Add libselinux-python as a dependency for the installation process + (frederic.boulet@gmail.com) + +* Tue Jul 05 2016 Scott Dodson <sdodson@redhat.com> 3.3.1-1 +- Add v1.3 examples (sdodson@redhat.com) +- Change the examples content sync directory (sdodson@redhat.com) +- Add gte_3_3 (sdodson@redhat.com) +- Adds quotes to gpgkey element in byo/config.yml (smerrill@covermymeds.com) +- Restart dnsmasq encase it was already running (sdodson@redhat.com) +- Add support for supplying a dnsmasq.conf file (sdodson@redhat.com) +- Update image streams with SCL 2.2 components (sdodson@redhat.com) +- Bump rhel subscribe default version. (abutcher@redhat.com) +- Revert "Speed up copying OpenShift examples" (abutcher@afrolegs.com) +- Switch to repoquery, enable plugins for satellite support + (sdodson@redhat.com) +- update conditional expression to save steps (lxia@redhat.com) +- Enable additional 'virt_sandbox_use_nfs' seboolean as per documentation: + (george.goh@redhat.com) +- Set any_errors_fatal for initialize facts play. (abutcher@redhat.com) +- Set any_errors_fatal for etcd facts play. (abutcher@redhat.com) +- Speed up copying OpenShift examples (tbielawa@redhat.com) +- Check if last rule is DROP when inserting iptables rules. + (abutcher@redhat.com) +- Don't upgrade docker on non-containerized etcd. (abutcher@redhat.com) +- Access embedded_etcd variable from oo_first_master hostvars. + (abutcher@redhat.com) +- Add missing quote in metrics deployer template. (dgoodwin@redhat.com) +- Allow flag to uninstall playbook to preserve images. (dgoodwin@redhat.com) +- Add MODE to metrics deployer (sdodson@redhat.com) +- NetworkManager service never changes (tbielawa@redhat.com) +- Update the rest of the templates (sdodson@redhat.com) +- Update logging and metrics templates (sdodson@redhat.com) +- Block Docker 1.10 upgrade playbook when run against an Atomic OS. + (dgoodwin@redhat.com) +- If registry_url != registry.access.redhat.com then modify image streams + (sdodson@redhat.com) +- Add 30 second pause before retrying to start the node (sdodson@redhat.com) +- Stop dumping debug output, re-try startng the node once (sdodson@redhat.com) +- Fix uninstall.yml indentation for deamon-reload + (florian.lambert@enovance.com) +- Fix no proxy hostnames during upgrade. (dgoodwin@redhat.com) +- Attempt to fix containerized node start failure with Docker 1.10. + (dgoodwin@redhat.com) +- also volume-mount /etc/sysconfig/docker (tob@butter.sh) +- Separate uninstall plays by group. (abutcher@redhat.com) +- Add per-service environment variables. (abutcher@redhat.com) +- - Prevent the script to override n number of the time the same nameserver - + Prevent the script to echo blank values from IP4_NAMESERVERS variable + (william17.burton@gmail.com) +- Make a note about Requires: docker (sdodson@redhat.com) +- Remove Docker 1.10 requirement temporarily. (dgoodwin@redhat.com) +- Fix docker 1.10 upgrade on embedded etcd masters. (dgoodwin@redhat.com) +- Add lower case proxy variables (pascal.bach@siemens.com) +- default unit in openshift_facts (you@example.com) +- add unit in seconds for metrics resolution (you@example.com) + +* Thu Jun 09 2016 Scott Dodson <sdodson@redhat.com> 3.3.0-1 +- Restore mistakenly reverted code. (dgoodwin@redhat.com) +- Add openshift_loadbalancer_facts role to set lb facts prior to running + dependencies. (abutcher@redhat.com) +- Bug 1338726 - never abort install if the latest version of docker is already + installed (bleanhar@redhat.com) +- Preserve proxy config if it's undefined (sdodson@redhat.com) +- At least backup things (sdodson@redhat.com) +- Use unique play names to make things easier to debug (sdodson@redhat.com) +- Ansible 2.1 support. (abutcher@redhat.com) +- add skydns port 8053 to openstack master sec group (jawed.khelil@amadeus.com) +- fix dns openstack flavor instead of openshift flavor + (jawed.khelil@amadeus.com) +- Fix Docker 1.10 problems with empty tags and trailing : (dgoodwin@redhat.com) +- ensure htpasswd file exists (tob@butter.sh) +- Docker 1.10 Upgrade (dgoodwin@redhat.com) +- Add flag to manage htpasswd, or not. (tob@butter.sh) + +* Mon Jun 06 2016 Scott Dodson <sdodson@redhat.com> 3.0.97-1 +- Only run node specific bits on nodes (sdodson@redhat.com) +- Update main.yaml (detiber@gmail.com) +- Hardcoded values in "launch_instances" - isue # 1970 (daniel@dumdan.com) +- XPAAS v1.3.1 content for Origin 1.1 / OSE 3.1 (sdodson@redhat.com) +- XPAAS v1.3.1 release for Origin 1.2 / OSE 3.2 (sdodson@redhat.com) +- Configure default docker logging options. (abutcher@redhat.com) +- Run rhel_subscribe on l_oo_all_hosts rather than all (sdodson@redhat.com) +- Fix error with stopping services that may not exist. (dgoodwin@redhat.com) +- Add haproxy_frontend_port to vars for openshift-loadbalancer. + (abutcher@redhat.com) +- Move os_firewall_allow from defaults to role dependencies. + (abutcher@redhat.com) +- Ensure registry url evaluated when creating router. (abutcher@redhat.com) +- Document protocol in readme aws. (abutcher@redhat.com) +- Revert openshift-certificates changes. (abutcher@redhat.com) +- wait metrics-deployer complete (need to configure nodes before hosted + services) (you@example.com) +- switch to using sig release packages (jdetiber@redhat.com) +- temporarily disable gpg checking until we have a way to cleanly enable it + (jdetiber@redhat.com) +- Switch to using CentOS SIG repos for Origin installs (jdetiber@redhat.com) +- Separate master and haproxy config playbooks. (abutcher@redhat.com) +- Cleanup bin, test and roles/openshift_ansible_inventory following move to + openshift-tools (abutcher@redhat.com) +- Catch more uninstall targets (sdodson@redhat.com) +- Adding openshift_clock parameters to example inventory files + (jstuever@redhat.com) +- Enable openshift_clock role for openshift_master, openshift_node, and + openshift_etcd (jstuever@redhat.com) +- Add openshift_clock role to manage system clocks (jstuever@redhat.com) +- Allow clock role in openshift_facts (jstuever@redhat.com) +- Consolidate ca/master/node certificates roles into openshift_certificates. + (abutcher@redhat.com) +- allow for overriding dns_flavor for openstack provider (jdetiber@redhat.com) +- add user-data file back to openstack provisioner (jdetiber@redhat.com) +- g_all_hosts with templated with_items causes errors with ansible 1.9.4 under + some conditions (jdetiber@redhat.com) +- openstack_fixes (jdetiber@redhat.com) +- libvirt_fixes (jdetiber@redhat.com) +- gce fixes (jdetiber@redhat.com) +- aws provider fixes (jdetiber@redhat.com) +- Call evaluate_groups from update_repos_and_packages (jdetiber@redhat.com) + +* Thu May 26 2016 Scott Dodson <sdodson@redhat.com> 3.0.94-1 +- Use grep to decide when to add our comment (sdodson@redhat.com) + +* Tue May 24 2016 Troy Dawson <tdawson@redhat.com> 3.0.93-1 +- Fixup spec file (tdawson@redhat.com) + +* Tue May 24 2016 Troy Dawson <tdawson@redhat.com> 3.0.92-1 +- Conditionally bind mount /usr/bin/docker-current when it is present (#1941) + (sdodson@redhat.com) + +* Tue May 24 2016 Troy Dawson <tdawson@redhat.com> 3.0.91-1 +- Removed the echo line and replaced it with inline comment. To keep 99-origin- + dns.sh from adding a new line in /etc/resolv.conf everytime the + NetworkManager dispatcher script is executed. (jnordell@redhat.com) +- Extend multiple login provider check to include origin. (abutcher@redhat.com) +- Allow multiple login providers post 3.2. (abutcher@redhat.com) +- Make rhel_subscribe role able to subscribe for OSE 3.2 (lhuard@amadeus.com) +- Ensure yum-utils installed. (abutcher@redhat.com) +- Remove newline from docker_options template string. (abutcher@redhat.com) +- Use systemctl restart docker instead of ansible service. + (dgoodwin@redhat.com) +- Use cluster hostname while generating certificate on the master nodes + (vishal.patil@nuagenetworks.net) +- Fix playbooks/openshift-master/library move to symlink (sdodson@redhat.com) +- Task "Update router image to current version" failed, if router not in + default namespace (jkroepke@users.noreply.github.com) +- docker-current was missing from the containerized atomic-openshift- + node.service file (maci.stgn@gmail.com) +- fixed issue with blank spaces instead commas as variables template separators + (j.david.nieto@gmail.com) +- Refactor where we compute no_proxy hostnames (sdodson@redhat.com) +- Fix for ansible v2 (sdodson@redhat.com) +- Fix rhel_subscribe (sdodson@redhat.com) +- remove interpolated g_all_hosts with_items arg from upgrade playbooks + (cboggs@rallydev.com) +- Set openshift.common.hostname early in playbook execution. + (abutcher@redhat.com) +- Fix 'recursive loop detected in template string' for upgrading variable. + (abutcher@redhat.com) +- a-o-i: No proxy questions for 3.0/3.1 (smunilla@redhat.com) +- Fix minor upgrades in 3.1 (sdodson@redhat.com) +- Don't pull cli image when we're not containerized (sdodson@redhat.com) +- Check consumed pools prior to attaching. (abutcher@redhat.com) + +* Mon May 16 2016 Troy Dawson <tdawson@redhat.com> 3.0.90-1 +- Fixes for openshift_docker_hosted_registry_insecure var. + (dgoodwin@redhat.com) +- Move latest to v1.2 (sdodson@redhat.com) +- Sync latest content (sdodson@redhat.com) +- Update default max-pods parameter (mwysocki@redhat.com) +- Allow overriding servingInfo.maxRequestsInFlight via + openshift_master_max_requests_inflight. (abutcher@redhat.com) +- update logging and metrics deployer templates (lmeyer@redhat.com) +- Update default max-pods parameter (maci.stgn@gmail.com) +- Block upgrading w/ ansible v2. (abutcher@redhat.com) +- Fixed openvswitch not upgrading. (dgoodwin@redhat.com) +- Do not upgrade containers to latest avail during a normal config run. + (dgoodwin@redhat.com) +- Update StringIO import for py2/3 compat. (abutcher@redhat.com) +- Fix mistaken quotes on proxy sysconfig variables. (dgoodwin@redhat.com) +- Sync comments with origin pr (sdodson@redhat.com) +- Use IP4_NAMESERVERS rather than DHCP4_DOMAIN_NAME_SERVERS + (sdodson@redhat.com) +- Remove vars_files on play includes for upgrade playbooks. + (abutcher@redhat.com) +- Document oauth token config inventory vars. (dgoodwin@redhat.com) +- Why is the node failing to start (sdodson@redhat.com) +- Move os_firewall out of openshift_common (sdodson@redhat.com) +- Remove old unused firewall rules (sdodson@redhat.com) +- Fix firewall rules (sdodson@redhat.com) +- Remove double evaluate_groups include. (abutcher@redhat.com) +- a-o-i: Write proxy variables (smunilla@redhat.com) +- Add support for Openstack based persistent volumes (sbaubeau@redhat.com) +- Fixes for flannel configuration. (abutcher@redhat.com) +- Initialize facts for all hosts. (abutcher@redhat.com) +- Fix version (sdodson@redhat.com) +- Fix cli_docker_additional_registries being erased during upgrade. + (dgoodwin@redhat.com) +- Unmask atomic-openshift-master on uninstall (sdodson@redhat.com) +- Add *.retry to gitignore. (abutcher@redhat.com) +- Move modify_yaml up into top level library directory (sdodson@redhat.com) +- Enable dnsmasq on all hosts (sdodson@redhat.com) +- Fixed the credentials (vishal.patil@nuagenetworks.net) +- Remove vars_files on play includes for byo, scaleup and restart playbooks. + (abutcher@redhat.com) +- Ensure ansible version greater than 1.9.4 (abutcher@redhat.com) +- Add oo_merge_hostvars filter for merging host & play variables. + (abutcher@redhat.com) +- Replace hostvars with vars for openshift env facts when ansible >= v2. + (abutcher@redhat.com) +- Add system:image-auditor role to ManageIQ SA (mtayer@redhat.com) +- Added extra install dependency on OSX (leenders.gert@gmail.com) +- Check and unmask iptables/firewalld. (abutcher@redhat.com) +- Default os_firewall_use_firewalld to false in os_firewall and remove + overrides. (abutcher@redhat.com) +- listen on all interfaces (sdodson@redhat.com) +- Fix configuration of dns_ip (sdodson@redhat.com) +- Fix markdown in roles/openshift_metrics/README.md (cben@redhat.com) +- use stat module instead of shell module and ls to check for rpm-ostree + (jdetiber@redhat.com) +- fix openstack template (sjenning@redhat.com) +- Remove duplicate oauth_template fact. (abutcher@redhat.com) +- Cleanup various deprecation warnings. (abutcher@redhat.com) +- Make NetworkManager failure friendlier (sdodson@redhat.com) +- README Updates (detiber@gmail.com) +- Remove deprecated online playbooks/roles (jdetiber@redhat.com) +- fix up variable references remove "online" support from bin/cluster + (jdetiber@redhat.com) +- Remove Ops specific ansible-tower aws playbooks (jdetiber@redhat.com) +- Fix inventory syntaxe (florian.lambert@enovance.com) +- Add openshift_docker_hosted_registry_insecure option (andrew@andrewklau.com) +- additional fixes (jdetiber@redhat.com) +- Fix templating issue with logging role (jdetiber@redhat.com) +- BuildDefaults are a kube admission controller not an openshift admission + controller (sdodson@redhat.com) +- a-o-i: More friendly proxy questions (smunilla@redhat.com) +- update tenand_id typo in example file (jialiu@redhat.com) +- Update hosts.ose.example (jialiu@redhat.com) +- update tenand_id typo in example file (jialiu@redhat.com) +- Update repos per inventory before upgrading (sdodson@redhat.com) +- Fix openshift_generate_no_proxy_hosts boolean (sdodson@redhat.com) +- Fix openshift_generate_no_proxy_hosts examples (sdodson@redhat.com) +- Fix inventory properties with raw booleans, again... (dgoodwin@redhat.com) +- Allow containerized deployment of dns role (jprovazn@redhat.com) + +* Mon May 09 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.89-1 +- Use yum swap to downgrade docker (sdodson@redhat.com) + +* Fri May 06 2016 Brenton Leanhardt <bleanhar@redhat.com> 3.0.88-1 +- Open port 53 whenever we're unsure of version (sdodson@redhat.com) +- Fix unsafe boolean handling on use_dnsmasq (sdodson@redhat.com) + * Wed Apr 27 2016 Troy Dawson <tdawson@redhat.com> 3.0.87-1 - a-o-i-: Allow empty proxy (smunilla@redhat.com) - a-o-i: Populate groups for openshift_facts (smunilla@redhat.com) |