Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[patch] Add variable for vargraphic setting for Manage and Health #1427

Merged
merged 2 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions ibm/mas_devops/roles/suite_app_config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,11 @@ Optional. Flag indicating if manage demodata should be loaded or not.
- Environment Variable: `MAS_APP_SETTINGS_DEMODATA`
- Default: `false` (do not load demodata)

### "{{ mas_app_settings_db2vargraphic | bool }}"
Optional. Flag indicating if VARGRAPHIC (if true) or VARCHAR (if false) is used.

- Default: `true` (use VARGRAPHIC)

### mas_app_settings_tablespace
Optional. Name of the Manage database tablespace

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ mas_appws_spec:
dbSchema: "{{ mas_app_settings_db2_schema }}"
maxinst:
demodata: "{{ mas_app_settings_demodata | bool }}"
db2Vargraphic: true
db2Vargraphic: "{{ mas_app_settings_db2vargraphic | default('true', true) | bool }}"
indexSpace: "{{ mas_app_settings_indexspace }}"
tableSpace: "{{ mas_app_settings_tablespace }}"
bypassUpgradeVersionCheck: false
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ mas_appws_spec:
dbSchema: "{{ mas_app_settings_db2_schema }}"
maxinst:
demodata: "{{ mas_app_settings_demodata | bool }}"
db2Vargraphic: true
db2Vargraphic: "{{ mas_app_settings_db2vargraphic | default('true', true) | bool }}"
tableSpace: "{{ mas_app_settings_tablespace }}"
indexSpace: "{{ mas_app_settings_indexspace }}"
bypassUpgradeVersionCheck: false
Expand Down