summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/openshift_hosted.yml
Commit message (Collapse)AuthorAgeFilesLines
* First attempt at refactor of os_firewallKenny Woodson2017-08-081-0/+1
|
* Removing parameter kind and allowing default to be passed.Kenny Woodson2017-07-191-2/+2
|
* Install default storageclass in AWS & GCE envsHemant Kumar2017-05-221-0/+2
|
* update all the mastersJeff Cantrill2017-03-101-0/+8
|
* Provisioning of nfs share and PV for logging opsErez Freiberger2017-02-111-2/+2
|
* bug 1399523. Ops pvc should have different prefix from non-ops for ↵Jeff Cantrill2017-02-101-1/+1
| | | | openshift_logging
* Updating defaults to pull from previously defined variable names used in ↵ewolinetz2017-02-081-4/+4
| | | | playbooks
* Reverting commit 3257 and renaming master_url to openshift_logging_master_urlewolinetz2017-02-071-13/+13
|
* Merge pull request #3257 from jcantrill/bz1417261_deployer_with_35Scott Dodson2017-02-061-13/+13
|\ | | | | fixes 1417261. Points playbooks to the correct 3.5 roles for logging …
| * fixes 1417261. Points playbooks to the correct 3.5 roles for logging and metricsJeff Cantrill2017-02-021-13/+13
| |
* | Merge branch 'master' into logging_fix_immutable_spec_changesEric Wolinetz2017-02-011-4/+8
|\ \ | |/
| * Wrap openshift_hosted_logging include_role within a block.Andrew Butcher2017-02-011-4/+7
| |
| * Fix openshift_hosted_logging bool typo.Andrew Butcher2017-02-011-1/+1
| |
* | Updating oc_apply changed_when conditions, fixing filter usage for ↵ewolinetz2017-02-011-1/+1
|/ | | | openshift_hosted_logging playbook
* Resolving yamllint issues from logging playbooksewolinetz2017-01-301-6/+6
|
* Updating openshift_hosted_logging to update master-configs with publicLoggingURLewolinetz2017-01-301-0/+11
|
* rename openshift_metrics to openshift_hosted_metricsJeff Cantrill2017-01-111-1/+1
|
* Move role dependencies out of playbooks for openshift_master, openshift_node ↵Andrew Butcher2017-01-091-21/+0
| | | | and openshift_hosted.
* Fix metricsPublicURL only being set correctly on first master.Devan Goodwin2016-12-011-2/+2
| | | | | | | | | | | | | Problem was caused by facts not being set for that master. To fix this patch cleans up the calculation of metricsPublicURL in general. Because this value is used in openshift_master to template into the master config file, we now define these facts more clearly in openshift_master_facts, and add a dependency on this to openshift_metrics. The calculation of default sub-domain is also changed to remove it from system facts (as neither of these are facts about the system) and instead use plain variables.
* Default hosted_registry_insecure true when insecure registry present in ↵Andrew Butcher2016-10-261-1/+1
| | | | existing /etc/sysconfig/docker.
* [logging] Fix NFS volume bindingScott Dodson2016-10-171-6/+6
|
* Use inventory variables rather than factsScott Dodson2016-10-141-6/+6
|
* Merge pull request #2475 from smunilla/registry_all_the_timeScott Dodson2016-09-301-102/+1
|\ | | | | Install Registry by Default
| * Secure registry improvements.Andrew Butcher2016-09-291-102/+1
| | | | | | | | | | | | * Convert oc template calls to jsonpath. * Wait for deployments to finish before restarting docker. * Re-organize node ca configuration.
| * Install Registry by DefaultSamuel Munilla2016-09-291-9/+9
| | | | | | | | | | | | | | Instead of restricting cockpit-ui to Atomic Registry installations, install it by default everywhere. Fixes Bug 1371459
* | Default openshift_hosted_{logging,metrics}_deploy to false.Andrew Butcher2016-09-291-2/+2
|/
* Configure ops cluster storage to match normal cluster storageScott Dodson2016-09-291-1/+4
|
* Set default_subdomain properly for loggingScott Dodson2016-09-261-2/+2
|
* Add storage for loggingScott Dodson2016-09-261-0/+4
|
* Add logging to install playbooksScott Dodson2016-09-261-1/+33
|
* Secure registry for atomic registry deployment (deployment_subtype=registry).Andrew Butcher2016-09-021-1/+83
|
* Remove atomic check and cockpit.socketSamuel Munilla2016-08-261-1/+1
|
* Re-organize registry-console deployment.Andrew Butcher2016-08-261-0/+3
|
* Deploy metrics after our routerScott Dodson2016-08-241-1/+1
| | | | | Metrics deployer now checks for route activation. As such we need a router before we install metrics.
* [tags] add some support for running a subset of config via tagsJason DeTiberus2016-08-241-0/+4
|
* Move role dependencies to playbooks.Andrew Butcher2016-07-291-0/+23
|
* Various hosted component improvementsAndrew Butcher2016-07-071-15/+3
| | | | | | | | | | | | | * [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
* Merge pull request #1957 from jfcoz/metrics_wait_deployerJason DeTiberus2016-06-011-0/+23
|\ | | | | wait metrics-deployer complete (need to configure nodes before hosted…
| * wait metrics-deployer complete (need to configure nodes before hosted services)jfcoz2016-05-271-0/+23
| |
* | Ensure registry url evaluated when creating router.Andrew Butcher2016-05-311-1/+3
|/
* Add support for creating secure router.Andrew Butcher2016-04-111-0/+5
* Move openshift_router to openshift_hosted role which will eventually contain registry, metrics and logging. * Adds option for specifying an openshift_hosted_router_certificate cert and key pair. * Removes dependency on node label variables and retrieves the node list from the API s.t. this role can be applied to any cluster with existing nodes. I've added an openshift_hosted playbook that occurs after node install to account for this. * Infrastructure nodes are selected using openshift_hosted_router_selector which is based on deployment type by default; openshift-enterprise -> "region=infra" and online -> "type=infra".