diff --git a/ibm/mas_devops/roles/suite_install/README.md b/ibm/mas_devops/roles/suite_install/README.md index 128617a625..9f29d9a6b3 100644 --- a/ibm/mas_devops/roles/suite_install/README.md +++ b/ibm/mas_devops/roles/suite_install/README.md @@ -105,6 +105,13 @@ Boolean variable that indicates whether to enable guided tour. - Environment Variable: `MAS_ENABLE_WALKME` - Default: `true` +### mas_report_adoption_metrics +Boolean variable that indicates whether to enable adoption metrics reporting. + +- Optional +- Environment Variable: `MAS_REPORT_ADOPTION_METRICS` +- Default: `true` + Role Variables - Superuser Account ------------------------------------------------------------------------------- The MAS Superuser account username and password can be customized during the install by setting **both** of these variable. diff --git a/ibm/mas_devops/roles/suite_install/defaults/main.yml b/ibm/mas_devops/roles/suite_install/defaults/main.yml index 7d227722a0..9f02283ba0 100644 --- a/ibm/mas_devops/roles/suite_install/defaults/main.yml +++ b/ibm/mas_devops/roles/suite_install/defaults/main.yml @@ -151,3 +151,5 @@ mas_superuser_password: "{{ lookup('env', 'MAS_SUPERUSER_PASSWORD') }}" # Configure guided tour # ----------------------------------------------------------------------------- mas_enable_walkme: "{{ lookup('env', 'MAS_ENABLE_WALKME') | default('true', true) | bool }}" + +mas_report_adoption_metrics: "{{ lookup('env', 'MAS_REPORT_ADOPTION_METRICS') | default('true', true) | bool }}" diff --git a/ibm/mas_devops/roles/suite_install/templates/core_v1_suite.yml.j2 b/ibm/mas_devops/roles/suite_install/templates/core_v1_suite.yml.j2 index 786b69b1b2..4e04ff387f 100644 --- a/ibm/mas_devops/roles/suite_install/templates/core_v1_suite.yml.j2 +++ b/ibm/mas_devops/roles/suite_install/templates/core_v1_suite.yml.j2 @@ -87,6 +87,7 @@ spec: userDataValidation: allowSpecialChars: {{ mas_special_characters | bool}} {% endif %} + reportAdoptionMetrics: {{ mas_report_adoption_metrics | bool}} icr: cp: "{{ mas_icr_cp }}" cpopen: "{{ mas_icr_cpopen }}"