Browse Source

Remove openshift_management beta acknowledement

Bug https://bugzilla.redhat.com/show_bug.cgi?id=1557909
Russell Teague 7 years ago
parent
commit
26a746e239

+ 0 - 12
roles/openshift_management/README.md

@@ -89,17 +89,6 @@ App is created` task, we recommend running the
 [uninstall scripts](#uninstall) first before running the installer
 again.
 
-### Beta
-
-Only required for enterprise
-(`openshift_deployment_type=openshift-enterprise`) users:
-
-* `openshift_management_install_beta` - by setting this value to
-  `true` you acknowledge that this software is currently in BETA and
-  support may be limited nonexistent. This is required to begin the
-  installation.
-
-
 # Requirements
 
 The **default** requirements are listed in the table below. These can
@@ -139,7 +128,6 @@ installer.
 | `openshift_management_project`                       | **No**   | `openshift-management`         | Namespace for the installation.     |
 | `openshift_management_project_description`           | **No**   | *CloudForms Management Engine* | Namespace/project description.      |
 | `openshift_management_install_management`            | **No**   | `false`                        | Boolean, set to `true` to install the application |
-| `openshift_management_install_beta`                  | **No**   | `false`                        | Boolean, by setting this value to `true` you acknowledge that this software is currently in BETA and support may be limited. Only required for *openshift-enterprise* users. |
 | `openshift_management_username`                      | **No**   | `admin`                        | Default management username. Changing this values **does not change the username**. Only change this value if you have changed the name already and are running integration scripts (such as the [add container provider](#container-provider) script) |
 | `openshift_management_password`                      | **No**   | `smartvm`                      | Default management password. Changing this values **does not change the password**. Only change this value if you have changed the password already and are running integration scripts (such as the [add-container-provider](#container-provider) script) |
 | **PRODUCT CHOICE**  | | | | |

+ 1 - 3
roles/openshift_management/defaults/main.yml

@@ -15,9 +15,7 @@ openshift_management_pod_rollout_retries: 30
 #
 # Choose 'miq-template' for a podified database install
 # Choose 'miq-template-ext-db' for an external database install
-# TODO: Swap this var declaration once CFME is fully supported
-#openshift_management_app_template: "{{ 'cfme-template' if openshift_deployment_type == 'openshift-enterprise' else 'miq-template' }}"
-openshift_management_app_template: miq-template
+openshift_management_app_template: "{{ 'cfme-template' if openshift_deployment_type == 'openshift-enterprise' else 'miq-template' }}"
 # If you are using the miq-template-ext-db template then you must add
 # the required database parameters to the
 # openshift_management_template_parameters variable.

+ 0 - 14
roles/openshift_management/tasks/validate.yml

@@ -2,20 +2,6 @@
 # Validate configuration parameters passed to the openshift_management role
 
 ######################################################################
-# BETA ACKNOWLEDGEMENT
-- name: Ensure BETA software notice has been acknowledged
-  assert:
-    that:
-      - openshift_management_install_beta | default(false) | bool
-    msg: |
-      openshift-management (CFME/MIQ) is currently BETA status. You
-      must set openshift_management_install_beta to true to
-      acknowledge that you accept this risk and understand that
-      support is limited or nonexistent.
-  when:
-    - openshift_deployment_type == 'openshift-enterprise'
-
-######################################################################
 # CORE PARAMETERS
 - name: Ensure openshift_management_app_template is valid
   assert: