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

all: update gh action, media, os images, requirements, swpm generate key for java icm #39

Merged
merged 30 commits into from
Dec 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d04e80b
playbook: solman inifile key update
sean-freeman Nov 19, 2024
bcf861a
playbook: webdisp inifile key update
sean-freeman Nov 19, 2024
1be79b3
playbook: update all sap ase media
sean-freeman Nov 19, 2024
e4f17ba
playbook: update sda media
sean-freeman Nov 19, 2024
333bf3d
collection: update gh action
sean-freeman Nov 19, 2024
60e142e
all: typo in ibmcloud os image regex
sean-freeman Nov 19, 2024
8aeefc4
all: update requirements
sean-freeman Nov 19, 2024
3594e66
all: remove old var for hana dir
sean-freeman Nov 19, 2024
815d2a6
all: update aws os images
sean-freeman Nov 22, 2024
d9f3df6
all: update gcp os images
sean-freeman Nov 22, 2024
0e3d43c
all: update ibmcloud os images
sean-freeman Nov 22, 2024
fce6610
all: update ibm powervs os images
sean-freeman Nov 22, 2024
d4f8438
all: update msazure os images
sean-freeman Nov 22, 2024
2c9d8a7
docs: typo
sean-freeman Nov 23, 2024
195736d
all: fix ibm powervs storage declaration
sean-freeman Nov 23, 2024
131d61a
all: add private dns custom resolver to ibm powervs
sean-freeman Nov 23, 2024
3e0887d
all: fix software dir var
sean-freeman Nov 24, 2024
2cec0bc
playbook: re-add dir var
sean-freeman Nov 24, 2024
23ce4a3
all: update req for terraform
sean-freeman Nov 25, 2024
e96186a
all: fix incorrect ppc64le media
sean-freeman Nov 27, 2024
4c5df3e
all: amend vars for ibm powervs
sean-freeman Nov 27, 2024
756ea01
all: ha code comment update
sean-freeman Nov 28, 2024
720b3c9
all: update ha vars
sean-freeman Nov 28, 2024
ee9e040
all: update aws collection req
sean-freeman Nov 28, 2024
c98abd5
all: missing string placeholder
sean-freeman Nov 28, 2024
d0abc9c
all: update lsr version req
sean-freeman Nov 29, 2024
2f2ede5
all: update media ids
sean-freeman Nov 30, 2024
ff575ac
all: update requirements
sean-freeman Nov 30, 2024
eaa88b7
all: update byol os images
sean-freeman Nov 30, 2024
858e978
all: fix scale-out hostname handling #35
sean-freeman Dec 1, 2024
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
24 changes: 23 additions & 1 deletion .github/workflows/ansible_software_availability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/checkout@v4
with:
path: gh_repo
- name: Ansible setup
- name: Python setup
id: local_setup
run: |
python --version
Expand Down Expand Up @@ -110,6 +110,28 @@ jobs:
echo " for sublist in query_result:" >> python_module_fuzzy_call_script.py
echo " if sublist['Title'].startswith('SYBCTRL'):" >> python_module_fuzzy_call_script.py
echo " print(sublist['Title'])" >> python_module_fuzzy_call_script.py
echo " elif any('SAPEXE_' in sublist['Title'] for sublist in query_result):" >> python_module_fuzzy_call_script.py
echo " list_sapexe = []" >> python_module_fuzzy_call_script.py
echo " for sublist in query_result:" >> python_module_fuzzy_call_script.py
echo " if sublist['Title'].startswith('SAPEXE'):" >> python_module_fuzzy_call_script.py
echo " list_sapexe.append(int((sublist['Title'].split('-', 1)[0]).split('_', 1)[1]))" >> python_module_fuzzy_call_script.py
echo " list_sapexe.sort(reverse=True)" >> python_module_fuzzy_call_script.py
echo " print('SAPEXE_' + str(list_sapexe[0]) + '-' + input_search_file + '.SAR')" >> python_module_fuzzy_call_script.py
echo " elif any('SAPEXEDB_' in sublist['Title'] for sublist in query_result):" >> python_module_fuzzy_call_script.py
echo " list_sapexedb = []" >> python_module_fuzzy_call_script.py
echo " for sublist in query_result:" >> python_module_fuzzy_call_script.py
echo " if sublist['Title'].startswith('SAPEXEDB'):" >> python_module_fuzzy_call_script.py
echo " list_sapexedb.append(int((sublist['Title'].split('-', 1)[0]).split('_', 1)[1]))" >> python_module_fuzzy_call_script.py
echo " list_sapexedb.sort(reverse=True)" >> python_module_fuzzy_call_script.py
echo " print('SAPEXEDB_' + str(list_sapexedb[0]) + '-' + input_search_file + '.SAR')" >> python_module_fuzzy_call_script.py
echo " elif any('SMDA' in sublist['Title'] for sublist in query_result):" >> python_module_fuzzy_call_script.py
echo " input_smda = input_search_file_name_and_version_only[:-2]" >> python_module_fuzzy_call_script.py
echo " list_smda = []" >> python_module_fuzzy_call_script.py
echo " for sublist in query_result:" >> python_module_fuzzy_call_script.py
echo " if sublist['Title'].startswith(input_smda):" >> python_module_fuzzy_call_script.py
echo " list_smda.append(sublist['Title'])" >> python_module_fuzzy_call_script.py
echo " list_smda.sort(reverse=True)" >> python_module_fuzzy_call_script.py
echo " print(list_smda[0])" >> python_module_fuzzy_call_script.py
echo " elif any('IMDB_CLIENT20' in sublist['Title'] for sublist in query_result):" >> python_module_fuzzy_call_script.py
echo " input_imdb_client = input_search_file_name_and_version_only[:-2]" >> python_module_fuzzy_call_script.py
echo " list_imdb_client = []" >> python_module_fuzzy_call_script.py
Expand Down
Loading