-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...t_automation_framework/deploy_hana_sr.yml → ...tomation_framework/execute_deployment.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
--- | ||
name: sap_deployment_automation_framework | ||
description: | | ||
Deploy SAP Hana SR scenario using 'SAP deployment automation framework' | ||
Executes SDAF deployment process | ||
schedule: | ||
- boot/boot_to_desktop | ||
- sles4sap/sap_deployment_automation_framework/create_deployer_vm | ||
- sles4sap/sap_deployment_automation_framework/connect_to_deployer | ||
- sles4sap/sap_deployment_automation_framework/configure_deployer | ||
- sles4sap/sap_deployment_automation_framework/deploy_workload_zone | ||
- sles4sap/sap_deployment_automation_framework/deploy_sap_systems | ||
- sles4sap/sap_deployment_automation_framework/deploy_hanasr | ||
- sles4sap/sap_deployment_automation_framework/execute_ansible_playbooks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Copyright SUSE LLC | ||
# SPDX-License-Identifier: FSFAP | ||
# Maintainer: QE-SAP <[email protected]> | ||
# Summary: Executes setup of HanaSR scenario using SDAF ansible playbooks according to: | ||
# Summary: Executes SDAF ansible playbooks according to scenario defined in tfvars file: | ||
# https://learn.microsoft.com/en-us/azure/sap/automation/tutorial#sap-application-installation | ||
# Playbooks can be found in SDAF repo: https://github.com/Azure/sap-automation/tree/main/deploy/ansible | ||
|
||
|
@@ -60,12 +60,22 @@ sub run { | |
{playbook_filename => 'playbook_01_os_base_config.yaml'}, | ||
# SAP-specific operating system configuration | ||
{playbook_filename => 'playbook_02_os_sap_specific_config.yaml'}, | ||
# SAP Bill of Materials processing - this also mounts install media storage | ||
{playbook_filename => 'playbook_03_bom_processing.yaml'}, | ||
# SAP Bill of Materials processing - this also mounts install media storage and copies media to ASCS instance | ||
{playbook_filename => 'playbook_03_bom_processing.yaml', timeout => 6400}, | ||
# SAP HANA database installation | ||
{playbook_filename => 'playbook_04_00_00_db_install.yaml', timeout => 1800}, | ||
# SAP HANA high-availability configuration | ||
{playbook_filename => 'playbook_04_00_01_db_ha.yaml', timeout => 1800}, | ||
# installation of ASCS/ERS instance | ||
{playbook_filename => 'playbook_05_00_00_sap_scs_install.yaml', timeout => 1800}, | ||
# Loads database content for SAP APP server | ||
{playbook_filename => 'playbook_05_01_sap_dbload.yaml', timeout => 7200}, | ||
# Primary application server installation | ||
{playbook_filename => 'playbook_05_02_sap_pas_install.yaml', timeout => 1800}, | ||
# Secondary application server installation | ||
{playbook_filename => 'playbook_05_03_sap_app_install.yaml', timeout => 1800}, | ||
# installation of web dispatcher | ||
{playbook_filename => 'playbook_05_04_sap_web_install.yaml', timeout => 1800}, | ||
); | ||
|
||
connect_target_to_serial(); | ||
|