MAS DevOps Ansible Collection Ansible CLI
Home Ansible Automation Platform OCP Install Cloud Pak For Data Install Core Add AIBroker Add IoT Add Manage Add Monitor Add Optimizer Add Predict Add Visual Inspection Update Upgrade Uninstall Core Backup & Restore ocp_cluster_monitoring ocp_config ocp_deprovision ocp_efs ocp_github_oauth ocp_login ocp_node_config ocp_provision ocp_roks_upgrade_registry_storage ocp_upgrade ocp_verify appconnect aws_bucket_access_point aws_documentdb_user aws_policy aws_route53 aws_user_creation aws_vpc cert_manager cis common-services configure_manage_eventstreams cos cos_bucket cp4d_admin_pwd_update cp4d cp4d_service db2 dro eck grafana ibm_catalogs kafka nvidia_gpu mongodb ocs sls turbonomic uds mirror_case_prepare mirror_extras_prepare mirror_images mirror_ocp ocp_contentsourcepolicy ocp_simulate_disconnected_network registry suite_app_config suite_app_install suite_app_uninstall suite_app_upgrade suite_app_rollback suite_app_backup_restore suite_certs suite_config suite_db2_setup_for_manage suite_dns suite_install suite_manage_attachments_config suite_manage_birt_report_config suite_manage_bim_config suite_manage_customer_files_config suite_manage_imagestitching_config suite_manage_import_certs_config suite_manage_load_dbc_scripts suite_manage_logging_config suite_manage_pvc_config suite_uninstall suite_upgrade suite_rollback suite_verify suite_backup_restore ansible_version_check entitlement_key_rotation gencfg_jdbc gencfg_watsonstudio gencfg_workspace install_operator gencfg_mongo

suite_install¤

This role install Maximo Application Suite. It internally resolve the namespace based on the mas_instance_id as mas-{mas_instance_id}-core.

Role Variables - Basic Install¤

mas_catalog_source¤

Defines the catalog to be used to install MAS. You can set it to ibm-operator-catalog for both release as well as for development install

mas_channel¤

Defines which channel of MAS to subscribe to

Role Variables - Basic Configuration¤

mas_domain¤

Optional fact, if not provided the role will use the default cluster subdomain

mas_instance_id¤

Defines the instance id to be used for MAS installation

mas_entitlement_key¤

API Key for entitled registry. This password will be used to create the image pull secret. Set to with IBM entitlement key when installing release or use your artifactory apikey for dev.

mas_config_dir¤

Directory containing configuration files (*.yaml and *.yml) to be applied to the MAS installation. Intended for creating the various MAS custom resources to configure the suite post-install, but can be used to apply any kubernetes resource you need to customize any aspect of your cluster.

Role Variables - Advanced Configuration¤

certManager.namespace¤

The namespace containing the cert-manager to be used by MAS

mas_annotations¤

Provide a list of comma-separated key=value pairs which will be applied as labels on all resources created. This variable takes a comma separated list of annotations. For example, to deploy your suite in non production mode, set this to mas.ibm.com/operationalMode=nonproduction or set MAS_ANNOTATIONS environment variable as export MAS_ANNOTATIONS=mas.ibm.com/operationalMode=nonproduction

mas_img_pull_policy¤

Sets spec.settings.imagePullPolicy, controlling the pod image pull policies in the suite (Always, IfNotPresent, Never). When not set the built-in operator default image pull policy will be used.

custom_labels¤

Provide a list of comma-separated key=value pairs which will be applied as labels on all resources created.

mas_manual_cert_mgmt¤

Boolean variable that, when set to True, enable manual certificate management.

mas_trust_default_cas¤

Boolean variable that defines whether default Certificate Authorities are included in MAS trust stores. This only has an effect with IBM Maximo Application Suite version 8.11 and above

mas_pod_templates_dir¤

Provide the directory where supported pod templates configuration files are defined. This role will look for a configuration files named ibm-mas-suite.yml, ibm-mas-coreidp.yml and ibm-data-dictionary-assetdatadictionary.yml in the named directory. The content of the configuration file should be the yaml block that you wish to be inserted into the Suite spec under a top level podTemplates element, e.g. podTemplates: {object}. For ibm-data-dictionary the podTemplates will be inserted into the Suite spec under settings->dataDictionary->podTemplates. The ibm-mas-suite operator will then pass this on to the AssetDataDictionary CR when available.

For examples refer to the BestEfforts reference configuration in the MAS CLI, for full documentation of the supported options refer to the Customizing Pod Templates in the product documentation.

enable_IPv6¤

Boolean variable that indicates whether it is to install in an IPv6-enabled environment. If it is true, the suite CR will have the SingleStack for ipFamilyPolicy and ["IPv6"] for ipFamilies. These ipFamily properties will be populated to all the services. This is currently available only in internal fyre clusters at the RTP site for testing purpose.

mas_special_characters¤

Set this to true to permit special characters in user IDs and usernames. The suite configuration record (CR) will include a property named userDataValidation with the option allowSpecialChars configured.

eck_enable_logstash¤

When set to true will result in the creation of filebeat-output Secret in the MAS Core namespace which will reconfigure all pods to send their logs to an instance of Logstash installed by the eck role instead of sending them to the pod log.

mas_enable_walkme¤

Boolean variable that indicates whether to enable guided tour.

Role Variables - Superuser Account¤

The MAS Superuser account username and password can be customized during the install by setting both of these variable.

mas_superuser_username¤

mas_superuser_password¤

Role Variables - Developer Mode¤

artifactory_username¤

Required when using this role with development builds on Artifactory

artifactory_token¤

Required when using this role with development builds on Artifactory

mas_icr_cp¤

Defines the entitled registry from the images should be pulled from. Set this to cp.icr.io/cp when installing release version of MAS, docker-na-public.artifactory.swg-devops.com/wiotp-docker-local for dev, unless when on FYRE in which case use docker-na-proxy-svl.artifactory.swg-devops.com/wiotp-docker-local or docker-na-proxy-rtp.artifactory.swg-devops.com/wiotp-docker-local as appropriate.

mas_icr_cpopen¤

Defines the registry for non-entitled images, such as operators. Set this to icr.io/cpopen when installing release version of MAS or docker-na-public.artifactory.swg-devops.com/wiotp-docker-local/cpopen for dev (or corresponding FYRE proxies as appropriate).

mas_entitlement_username¤

Username for the IBM entitled registry. This username will be used to create the image pull secret. Set to cp when installing release or use your w3Id when using Artifactory.

Example Playbook¤

- hosts: localhost
  any_errors_fatal: true
  vars:
    mas_instance_id: "inst1"
    mas_config_dir: "/home/david/masconfig"
    mas_entitlement_key: "{{ lookup('env', 'IBM_ENTITLEMENT_KEY') }}"

  roles:
    - ibm.mas_devops.suite_install
    - ibm.mas_devops.suite_config
    - ibm.mas_devops.suite_verify

License¤

EPL-2.0