diff options
author | Andrew Butcher <abutcher@redhat.com> | 2016-10-04 15:04:09 -0400 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2016-10-05 10:10:40 -0400 |
commit | 5ff48c2a2e1fba84f4c6947b7d2d9e2202de5dbc (patch) | |
tree | bf453ba7c0b7822227ab60ef246f1e54fbdb04bf | |
parent | b31bcfb37e8740cea894eb60877d688bc3df2922 (diff) | |
download | openshift-5ff48c2a2e1fba84f4c6947b7d2d9e2202de5dbc.tar.gz openshift-5ff48c2a2e1fba84f4c6947b7d2d9e2202de5dbc.tar.bz2 openshift-5ff48c2a2e1fba84f4c6947b7d2d9e2202de5dbc.tar.xz openshift-5ff48c2a2e1fba84f4c6947b7d2d9e2202de5dbc.zip |
Move openshift.common.debug.level to openshift_facts.
-rw-r--r-- | roles/openshift_common/tasks/main.yml | 1 | ||||
-rw-r--r-- | roles/openshift_facts/tasks/main.yml | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_common/tasks/main.yml b/roles/openshift_common/tasks/main.yml index f10a77697..3f8ea5dce 100644 --- a/roles/openshift_common/tasks/main.yml +++ b/roles/openshift_common/tasks/main.yml @@ -19,7 +19,6 @@ openshift_facts: role: common local_facts: - debug_level: "{{ openshift_debug_level | default(2) }}" install_examples: "{{ openshift_install_examples | default(True) }}" use_openshift_sdn: "{{ openshift_use_openshift_sdn | default(None) }}" sdn_network_plugin_name: "{{ os_sdn_network_plugin_name | default(None) }}" diff --git a/roles/openshift_facts/tasks/main.yml b/roles/openshift_facts/tasks/main.yml index afeb78f95..b0785a9e4 100644 --- a/roles/openshift_facts/tasks/main.yml +++ b/roles/openshift_facts/tasks/main.yml @@ -22,6 +22,7 @@ openshift_facts: role: common local_facts: + debug_level: "{{ openshift_debug_level | default(2) }}" # TODO: Deprecate deployment_type in favor of openshift_deployment_type deployment_type: "{{ openshift_deployment_type | default(deployment_type) }}" deployment_subtype: "{{ openshift_deployment_subtype | default(None) }}" |