Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ibm/mas_devops/roles/suite_install/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions ibm/mas_devops/roles/suite_install/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down
Loading