Skip to content

Commit

Permalink
Merge pull request #223 from azure-javaee/edburns-msft-ibm-315-update…
Browse files Browse the repository at this point in the history
…-ihsAndbaseImageVersions

Update to twas-nd `9.0.20230517` and ihs `9.0.20230519`
  • Loading branch information
venunathb committed Jun 1, 2023
2 parents f5cb969 + 3f3239b commit cc0c64b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ jobs:
fi
- name: Install and verify websphere-cafe
run: |
nsgName=$(az network nsg list -g ${testResourceGroup} --query [0].name -o tsv)
nsgName=$(az network nsg list -g ${testResourceGroup} --query "[?contains(name, '-nsg')].name" -o tsv)
publicIp=$(az vm list -g ${testResourceGroup} -d --query "[?contains(name, 'dmgr')].publicIps" -o tsv)
vmName=$(az vm list -g ${testResourceGroup} --query "[?contains(name, 'dmgr')].name" -o tsv)
# Open port 22 in the nsg
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/setup-credentials.sh
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,12 @@ USE_GITHUB_CLI=false
# Create service principal with Contributor role in the subscription
msg "${GREEN}(3/4) Create service principal ${SERVICE_PRINCIPAL_NAME}"
SUBSCRIPTION_ID=$(az account show --query id --output tsv --only-show-errors)
SERVICE_PRINCIPAL=$(az ad sp create-for-rbac --name ${SERVICE_PRINCIPAL_NAME} --role="Contributor" --scopes="/subscriptions/${SUBSCRIPTION_ID}" --sdk-auth --only-show-errors | base64 -w0)
# Explicitely disable line wrapping for non MacOS
w0=-w0
if [[ $OSTYPE == 'darwin'* ]]; then
w0=
fi
SERVICE_PRINCIPAL=$(az ad sp create-for-rbac --name ${SERVICE_PRINCIPAL_NAME} --role="Contributor" --scopes="/subscriptions/${SUBSCRIPTION_ID}" --sdk-auth --only-show-errors | base64 $w0)
msg "${YELLOW}\"DISAMBIG_PREFIX\""
msg "${GREEN}${DISAMBIG_PREFIX}"

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<groupId>com.ibm.websphere.azure</groupId>
<artifactId>azure.websphere-traditional.cluster</artifactId>
<version>1.3.49</version>
<version>1.3.50</version>

<!-- mvn -Pbicep -Passembly clean install -Ptemplate-validation-tests -->
<parent>
Expand Down
4 changes: 2 additions & 2 deletions src/main/bicep/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
"twasNdImageSkuDescription": "This is the twas-nd 'Plan ID' of the plan within the 'Azure Virtual Machine' offer",
"twasNdImageSku": "2023-03-27-twas-cluster-base-image",
"twasNdImageVersionDescription": "This is the twas-nd 'Disk version' of the VM image of the plan within the 'Azure Virtual Machine' offer",
"twasNdImageVersion": "9.0.20230504",
"twasNdImageVersion": "9.0.20230517",
"ihsImageOfferDescription": "This is the ihs 'Offer ID' of the 'Azure Virtual Machine' offer type",
"ihsImageOffer": "2023-03-27-ihs-base-image",
"ihsImageSkuDescription": "This is the ihs 'Plan ID' of the plan within the 'Azure Virtual Machine' offer",
"ihsImageSku": "2023-03-27-ihs-base-image",
"ihsImageVersionDescription": "This is the ihs 'Disk version' of the VM image of the plan within the 'Azure Virtual Machine' offer",
"ihsImageVersion": "9.0.20230501",
"ihsImageVersion": "9.0.20230519",
"shareCompanyNamePid": "f246c770-92c5-5a97-b5d6-83feac7623d3",
"dbConnectionStart": "60786fb4-17a7-5e2e-b2bd-13271b71ba2a",
"dbConnectionEnd": "6c61bea8-afa4-5ee8-8a2d-866928685625",
Expand Down

0 comments on commit cc0c64b

Please sign in to comment.