-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #476 from SUSE/develop
Develop
- Loading branch information
Showing
177 changed files
with
9,110 additions
and
4,666 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# the following 2 vars are aquired via ENV | ||
# qemu_uri = | ||
# source_image = | ||
|
||
hana_inst_media = "10.162.32.134:/sapdata/sap_inst_media/51053787" | ||
iprange = "192.168.25.0/24" | ||
|
||
storage_pool = "terraform" | ||
|
||
# Enable pre deployment to automatically copy the pillar files and create cluster ssh keys | ||
pre_deployment = true | ||
|
||
# For iscsi, it will deploy a new machine hosting an iscsi service | ||
shared_storage_type = "iscsi" | ||
ha_sap_deployment_repo = "https://download.opensuse.org/repositories/network:/ha-clustering:/sap-deployments:/devel" | ||
|
||
monitoring_enabled = true | ||
|
||
# don't use salt for this test | ||
provisioner = "" | ||
|
||
# Netweaver variables | ||
|
||
# Enable/disable Netweaver deployment | ||
netweaver_enabled = true | ||
|
||
# NFS share with netweaver installation folders | ||
netweaver_inst_media = "10.162.32.134:/sapdata/sap_inst_media" | ||
netweaver_swpm_folder = "SWPM_10_SP26_6" | ||
|
||
# Install NetWeaver | ||
netweaver_sapexe_folder = "kernel_nw75_sar" | ||
netweaver_additional_dvds = ["51050829_3", "51053787"] | ||
|
||
|
||
# DRBD variables | ||
|
||
# Enable the DRBD cluster for nfs | ||
drbd_enabled = true | ||
|
||
# IP of DRBD cluster | ||
drbd_shared_storage_type = "iscsi" | ||
|
||
devel_mode = false |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# github-actions workflow | ||
# this test will just run terraform without salt | ||
name: e2e tests | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
terraform-sap-deployment: | ||
runs-on: self-hosted | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: terraform apply | ||
run: /tmp/terraform-apply.sh | ||
|
||
- name: terraform destroy | ||
if: ${{ always() }} | ||
run: /tmp/terraform-destroy.sh |
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
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
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
Oops, something went wrong.