summaryrefslogtreecommitdiffstats
path: root/roles/openshift_hosted/tasks/router
Commit message (Collapse)AuthorAgeFilesLines
* First attempt at provisioning.Kenny Woodson2017-08-211-31/+33
|
* Updated README to reflect refactor. Moved firewall initialize into separate ↵Kenny Woodson2017-08-101-2/+2
| | | | file.
* Adding a default condition and removing unneeded defaults.Kenny Woodson2017-08-091-4/+4
|
* First attempt at refactor of os_firewallKenny Woodson2017-08-082-0/+44
|
* add default value for router path in the certErez Freiberger2017-07-251-2/+2
|
* Router wildcard certificate created by defaultErez Freiberger2017-07-251-1/+1
|
* router: look for the oc executable in /usr/local/bin and ~/binGiuseppe Scrivano2017-06-261-3/+3
| | | | | | Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1463131 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* Make rollout status check best-effort, add pollSteve Kuznetsov2017-06-131-1/+28
| | | | | | | | | | | | | | We cannot rely on the `watch.Until` call in the `rollout status` subcommand for the time being, so we need to ignore the result of this call. This will make the rollout status check best-effort, so we need to follow it with a poll for the actual status of the rollout, which we can extract from the `openshift.io/deployment.phase` annotation on the ReplicationControllers. This annotation can have only three values -- `Running`, `Complete` and `Failed`. If we poll on this attribute until we stop seeing `Running`, we can then inspect the last result for `Failed`; if it's present, we have failed the deployment. Signed-off-by: Steve Kuznetsov <skuznets@redhat.com>
* Verify the rollout status of the hosted router and registrySteve Kuznetsov2017-06-091-14/+6
| | | | | | | | | | | | | | When deploying the hosted router and registry components, we need to ensure that they correctly roll out. The previous checks were weak in that they either simply waited for a set amount of time and/or did one replica check. They would fail if the router or registry took longer to deploy or if there were un-ready or failing replicas. The `oc rollout` command group contains the `status` endpoint for internalizing all of the logic for determining when a rollout has succeeded or failed, so simply using this client call will ensure that the router and registry correctly deploy. Signed-off-by: Steve Kuznetsov <skuznets@redhat.com>
* boolScott Dodson2017-05-261-2/+2
|
* Replace original router cert variable names.Andrew Butcher2017-04-241-8/+8
|
* Adding signed router cert and fixing server_cert bug.Kenny Woodson2017-04-041-0/+26
|
* Add router svcacct cluster-reader roleRussell Teague2017-03-141-0/+9
|
* Refactor and remove openshift_serviceaccountRussell Teague2017-03-131-0/+15
|
* Added ports.Kenny Woodson2017-03-021-0/+2
|
* Fixed router name to produce 2nd router.Kenny Woodson2017-03-021-1/+1
|
* Updated to work with an array of routers.Kenny Woodson2017-03-021-60/+16
|
* Adding support for router sharding.Kenny Woodson2017-03-021-61/+68
|
* Moving replica logic to filter_plugin to fix skipped task variable behavior.Kenny Woodson2017-02-271-1/+1
|
* openshift_hosted: Update tasks to use oc_ modulesRussell Teague2017-02-241-93/+80
|
* Removing trailing spacesEric Sauer2017-02-131-2/+2
|
* Making router pods scale with infra nodesEric Sauer2017-02-101-0/+24
|
* Switch from "oadm" to "oc adm" and fix bug in binary sync.Devan Goodwin2016-10-191-2/+2
| | | | | | | | Found bug syncing binaries to containerized hosts where if a symlink was pre-existing, but pointing to the wrong destination, it would not be corrected. Switched to using oc adm instead of oadm.
* Add openshift_hosted_router_nameAndrew Lau2016-09-221-0/+4
|
* Rename router and registry node list variables.Andrew Butcher2016-08-021-2/+2
|
* Fix registry/router being created despite no infra nodes.Devan Goodwin2016-07-271-1/+2
| | | | | | Fix a bug with determining the correct number of replicas to use, and guarding the creation of the router/registry on whether or not replicas is > 0.
* Default nodes matching selectors when not collected.Andrew Butcher2016-07-211-1/+1
|
* Secure router only when openshift.hosted.router.certificate.contents exists.Andrew Butcher2016-07-191-2/+2
|
* Resolve some deprecation warnings.Andrew Butcher2016-07-181-3/+8
|
* Various hosted component improvementsAndrew Butcher2016-07-071-0/+70
* [openshift_projects] Add openshift_projects role * [openshift_hosted] hosted deployments use openshift_hosted_infra_selector if openshift_hosted_<component>_selector is not defined * [openshift_hosted] move openshift_projects, openshift_serviceaccounts and openshift_metrics to dependencies of openshift_hosted * [router] improve router deployment - add router option to force subdomain - add CA to router certificate options * [registry] move registry config into openshift_hosted role - additional registry fixes/tweaks - add s3 storage support for registry * [serviceaccount] fix up serviceaccount creation