summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-01-02Remove last of openshift_node role meta-dependsMichael Gugino
Remove last non-taskless meta-depends from openshift_node role. Remove variable 'openshift_node_upgrade_in_progress' as it is no longer used.
2018-01-02OpenStack provisioning -- support cns.Jiri Mencak
2018-01-02Fix yaml syntax error in the sample inventoryTomas Sedovic
2018-01-01Automatic commit of package [openshift-ansible] release [3.9.0-0.11.0].Jenkins CD Merge Bot
Created by command: /usr/bin/tito tag --debug --accept-auto-changelog --keep-version --debug
2017-12-27Bug 1527178 - installation of logging stack failed: Invalid version ↵Noriko Hosoi
specified for Elasticsearch openshift_logging_{curator,elasicsearch,fluentd,kibana,mux}/vars/main.yml: - adding "3_8" to __allowed_.*_versions - replacing the value of __latest_.*_version "3_6" with "3_8".
2017-12-23Merge pull request #6497 from kwoodson/remove_docker_credsOpenShift Merge Robot
Automatic merge from submit-queue. Adding no_log to registry_auth. We were seeing credentials show up in our jenkins logs. We'd prefer if they were not logged. I'm not sure the repercussions but these are sensitive and probably should be `no_log`.
2017-12-23Merge pull request #6462 from kwoodson/daemonset_configOpenShift Merge Robot
Automatic merge from submit-queue. Laying config files down in a daemonset pod. Work to have daemonset config laydown files for nodes used with golden images. Based on the original work from @smarterclayton https://github.com/openshift/origin/pull/17351
2017-12-22Configure Kuryr CNI daemonMichał Dulko
Kuryr CNI daemon is scalability improvement that moves watching K8s API and VIF plugging into a separate entity called kuryr-daemon. Kuryr-daemon will run in a container and serve requests from kuryr-driver.
2017-12-21Move wait_for_pods to it's own play openshift_hostedMichael Gugino
Currently, both registry and router pods need to be polled for successful deployment. Somtimes this can take up to a minute. This commit attempts to deploy both pods before polling either. This should reduce the average wait time for polling pods by 50% as time spent polling the first will also allow the second pod to continue it's own deployment.
2017-12-21Merge pull request #6542 from smarterclayton/fix_dockerfileOpenShift Merge Robot
Automatic merge from submit-queue. Must directly specify google-cloud-sdk version The upstream forces versions on packages, and rpm -V fails when it does not match. Also add which, used by gcloud. Fixes break https://ci.openshift.redhat.com/jenkins/job/build-and-release-latest-openshift-ansible-images/210/console
2017-12-21Merge pull request #6550 from mbarnes/aws_provisioning_vars_exampleOpenShift Merge Robot
Automatic merge from submit-queue. aws: Fix misnamed variable in provisioning_vars.yml.example This typo (?) in `provisioning_vars.yml.example` tripped me up while trying to run `provision_install.yml` using a configuration based on the example file.
2017-12-21Remove bootstrap.yml from main.yml in openshift_node roleMichael Gugino
This commit utilizes include_role for bootstrapping the node instead of conditional include of tasks now that the node role has no meta includes that have tasks.
2017-12-21Merge pull request #6530 from mgugino-upstream-stage/init-task-trimMichael Gugino
Move sanity_checks into custom action plugin
2017-12-21Merge pull request #6546 from mgugino-upstream-stage/fix-crt-groupsMichael Gugino
Fix container_runtime openshift_containerized_host_groups
2017-12-21aws: Fix misnamed variable in provisioning_vars.yml.exampleMatthew Barnes
2017-12-21Fix container_runtime openshift_containerized_host_groupsMichael Gugino
openshift_containerized_host_groups needs to be referenced via hostvars. This commit also updates tox ansible syntax checks to account for unavailability of hostsvars during syntax checks. Fixes: https://github.com/openshift/openshift-ansible/issues/6540
2017-12-21Adding ability to update ami drive size.Kenny Woodson
2017-12-21Remove references to deployment_typeMichael Gugino
Move openshift_deployment_type check into sanity_check action plugin. Remove compatibility for deployment_type. deployment_type has been deprecated for some time now.
2017-12-21Make node start options configurableAntoni Segura Puimedon
Thanks to this, the node startup can be customized. Change-Id: Ifb93bf892d7de52a575b8d0231328d44f733d0aa Signed-off-by: Antoni Segura Puimedon <antonisp@celebdor.com>
2017-12-21Must directly specify google-cloud-sdk versionClayton Coleman
The upstream forces versions on packages, and rpm -V fails when it does not match. Also add which, used by gcloud.
2017-12-21daemonset config role.Kenny Woodson
2017-12-21Remove oauth_template bits from openshift_factsMichael Gugino
This commit moves some deprecated variable logic outside of openshift_facts and into role defaults.
2017-12-20Merge pull request #6529 from smarterclayton/add_gcloud_to_imageOpenShift Merge Robot
Automatic merge from submit-queue. Add gcloud to the installer image The installer image will become our default cloud operations image for tasks that overlap with ansible, and will also be the image for provioning. We will eventually add others like awscli for support roles. Prereq for moving origin-gce into this repo @sdodson as discussed earlier (bypasses the need to get this in our tree for now)
2017-12-20Move validate_hosts to prerequisites.ymlMichael Gugino
Move more checks outside of init/main.yml for speeding up upgrades and other operational plays that need to run.
2017-12-20Move sanity_checks into custom action pluginMichael Gugino
This commit moves sanity_checks tasks into a custom action plugin that is only run against a single host. This will result in a large reduction of tasks during initialization
2017-12-20Merge pull request #6516 from mgugino-upstream-stage/defact-is-containerizedOpenShift Merge Robot
Automatic merge from submit-queue. Remove openshift.common.{is_atomic|is_containerized} We set these variables using facts in init, no need to duplicate the logic all around the codebase.
2017-12-20adding ability to interact with network resources.Shawn Hurley
2017-12-20Remove openshift.common.{is_atomic|is_containerized}Michael Gugino
We set these variables using facts in init, no need to duplicate the logic all around the codebase.
2017-12-20Merge pull request #6524 from kwoodson/docker_storage_setup_overlayScott Dodson
Adding support for docker-storage-setup on overlay
2017-12-19Merge pull request #6509 from abutcher/asg-tagsOpenShift Merge Robot
Automatic merge from submit-queue. Move node group tags to openshift_aws_{master,node}_group. Move node groups tags to `openshift_aws_{master,node}_group` variables as discussed below.
2017-12-19Adding support for docker-storage-setup on overlayKenny Woodson
2017-12-19Merge pull request #6062 from luis5tb/readinessMichael Gugino
Add readiness probe to kuryr controller pod
2017-12-19Add gcloud to the installer imageClayton Coleman
The installer image will become our default cloud operations image for tasks that overlap with ansible, and will also be the image for provioning. We will eventually add others like awscli for support roles.
2017-12-19Merge pull request #6510 from abutcher/centos37Scott Dodson
Add CentOS-OpenShift-Origin37 repo template.
2017-12-19Merge pull request #6469 from mgugino-upstream-stage/plugin-consolidateScott Dodson
Plugin consolidate
2017-12-19Merge pull request #6515 from mgugino-upstream-stage/defactingOpenShift Merge Robot
Automatic merge from submit-queue. Remove some small items from openshift_facts Remove some small items from openshift_facts that don't need to be there.
2017-12-19Merge pull request #6517 from mgugino-upstream-stage/router-selectorOpenShift Merge Robot
Automatic merge from submit-queue. Fix hosted_reg_router selectors This commit removes duplicate (and incorrect) assignment of openshift_hosted_registry_selector and openshift_hosted_router_selector Fixes https://github.com/openshift/origin/issues/17682
2017-12-18Remove some small items from openshift_factsMichael Gugino
Remove some small items from openshift_facts that don't need to be there.
2017-12-18Merge pull request #6514 from markllama/osp-add-reposMichael Gugino
set repos after registration
2017-12-18Relocate filter plugins to lib_utilsMichael Gugino
This commit relocates filter_plugings to lib_utils, changes the namespacing to prevent unintended use of older versions that may be present in filter_plugins/ directory on existing installs. Add lib_utils to meta depends for roles Also consolidate some plugins into lib_utils from various other areas. Update rpm spec, obsolete plugin rpms.
2017-12-18Merge pull request #6513 from mgugino-upstream-stage/remove-node-facts-pt2Scott Dodson
Remove openshift_node_facts role
2017-12-18Fix hosted_reg_router selectorsMichael Gugino
This commit removes duplicate (and incorrect) assignment of openshift_hosted_registry_selector and openshift_hosted_router_selector
2017-12-18set repos after registration: convert to match task -> import_role model.Mark Lamourine
2017-12-18Remove openshift_node_facts roleMichael Gugino
This commit removes the remainder of openshift_node_facts role.
2017-12-18Move node group tags to openshift_aws_{master,node}_group.Andrew Butcher
2017-12-18Add origin- prefix to ASB imageFabian von Feilitzsch
2017-12-18Add CentOS-OpenShift-Origin37 repo template.Andrew Butcher
2017-12-18Merge pull request #6492 from mazzystr/fix_rhel_reposMichael Gugino
Fix rhel_repos disable command
2017-12-17Merge pull request #6456 from mgugino-upstream-stage/node-factsMichael Gugino
Remove openshift_node_facts part 1
2017-12-15The provision_install file ends in yml not yaml! Ansible requirement ↵Matt Bruzek
clarification.