summaryrefslogtreecommitdiffstats
path: root/roles/openshift_sanitize_inventory
Commit message (Collapse)AuthorAgeFilesLines
* Addressing tox issuesEric Wolinetz2017-09-292-5/+8
|
* Checking if any openshift_*_storage_kind variables are set to dynamic ↵Eric Wolinetz2017-09-273-25/+63
| | | | without enabling dynamic provisioning
* Adding default for volume size if not setEric Wolinetz2017-09-261-2/+2
|
* Merge pull request #5176 from ewolinetz/deprecate_log_met_varsOpenShift Merge Robot2017-09-227-0/+257
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatic merge from submit-queue Creating structure to warn for use of deprecated variables and set th… …em in a single location before they are no longer honored Implementation of https://trello.com/c/XKOGHSkP/460-3-deprecate-openshifthostedloggingmetrics-installer-variables Tried to implement this in a way such that we can easily and cleanly add/remove variables in the future for any role we choose. Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=1449812 https://bugzilla.redhat.com/show_bug.cgi?id=1464349
| * Creating structure to warn for use of deprecated variables and set them in a ↵Eric Wolinetz2017-09-207-0/+257
| | | | | | | | single location before they are no longer honored
* | Merge pull request #5473 from abutcher/scaleup-network-valuesScott Dodson2017-09-211-21/+0
|\ \ | |/ |/| Set network facts using first master's config during scaleup.
| * Set network facts using first master's config during scaleup.Andrew Butcher2017-09-201-21/+0
| |
* | Cleanup old deployment typesMichael Gugino2017-09-201-5/+2
|/ | | | | | | | | | | Previously, openshift-ansible supported various types of deployments using the variable "openshift_deployment_type" Currently, openshift-ansible only supports two deployment types, "origin" and "openshift-enterprise". This commit removes all logic and references to deprecated deployment types.
* testing: Skip net vars on integration testsSteve Milner2017-09-151-1/+6
| | | | Signed-off-by: Steve Milner <smilner@redhat.com>
* openshift_sanitize_inventory: Check for required varsSteve Milner2017-09-151-0/+16
| | | | | | | | | Moved the checks for osm_cluster_network_cidr, osm_host_subnet_length, openshift_portal_net from upgrade to openshift_sanitize_inventory as we now consider it a required variable for install, updrade, or scale up. Signed-off-by: Steve Milner <smilner@redhat.com>
* Run dns on the node and use that for dnsmasqScott Dodson2017-06-302-0/+16
|
* openshift_sanitize_inventory: disallow conflicting deployment typesLuke Meyer2017-04-101-0/+13
|
* openshift_sanitize_inventory: validate releaseLuke Meyer2017-04-051-7/+14
| | | | | Complain early if those wacky users use wacky values for openshift_release.
* validate and normalize inventory variablesLuke Meyer2017-03-294-0/+87
In openshift_repos and everywhere, ensure deployment_type and openshift_deployment_type are defined and the same. We really want to set openshift_deployment_type, but users will likely still have just deployment_type, so accept both. And don't make every playbook default openshift_deployment_type to deployment_type. This introduces the openshift_sanitize_inventory role to run before anything else.