diff options
-rw-r--r-- | .github/ISSUE_TEMPLATE.md | 31 | ||||
-rw-r--r-- | utils/test/openshift_ansible_tests.py | 1 | ||||
-rw-r--r-- | utils/test/test_utils.py | 1 |
3 files changed, 22 insertions, 11 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 627fa13eb..326e75c7e 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,21 +1,34 @@ -[provide a description of the issue] +#### Description +Please provide a brief description of your issue. ##### Version -[if you're operating from a git clone provide the output of `git describe`] -[if you're running from playbooks installed via RPM or atomic-openshift-utils `rpm -q atomic-openshift-utils openshift-ansible`] -[Your version of ansible, `ansible --version`] - +If you're operating from a git clone provide the output of `git describe`. If +you're running from playbooks installed via RPM or atomic-openshift-utils `rpm +-q atomic-openshift-utils openshift-ansible`. Please also provide your version +of ansible, `ansible --version`. Please the output between the code block below. +``` +Please place output here +``` ##### Steps To Reproduce 1. [step 1] 2. [step 2] + ##### Current Result +``` +Example command and output or error messages +``` ##### Expected Result +``` +Example command and output or error messages +``` ##### Additional Information -[The exact command you ran] -[Your operating system and version, ie: RHEL 7.2, Fedora 23] -[Your inventory file] -[visit https://docs.openshift.org/latest/welcome/index.html] +``` +Your operating system and version, ie: RHEL 7.2, Fedora 23] +Your inventory file +Sample code, etc +code, etc +``` diff --git a/utils/test/openshift_ansible_tests.py b/utils/test/openshift_ansible_tests.py index fe3029ca1..5847fe37b 100644 --- a/utils/test/openshift_ansible_tests.py +++ b/utils/test/openshift_ansible_tests.py @@ -58,7 +58,6 @@ class TestOpenShiftAnsible(unittest.TestCase): self.assertTrue(inventory.has_option('new_nodes', 'new_node1')) def test_write_inventory_vars_role_vars(self): - print(yaml.dump(openshift_ansible.CFG.deployment.roles)) with open(self.inventory, 'w') as inv: openshift_ansible.CFG.deployment.roles['master'].variables={'color': 'blue'} openshift_ansible.CFG.deployment.roles['node'].variables={'color': 'green'} diff --git a/utils/test/test_utils.py b/utils/test/test_utils.py index b18f85692..cbce64f7e 100644 --- a/utils/test/test_utils.py +++ b/utils/test/test_utils.py @@ -38,7 +38,6 @@ class TestUtils(unittest.TestCase): with mock.patch('ooinstall.utils.installer_log') as _il: debug_env(self.debug_all_params) - print(_il.debug.call_args_list) # Debug was called for each item we expect self.assertEqual( |