Skip to content

Commit 6de07db

Browse files
authored
Merge pull request #113 from majguo/master
Add multiple links at the bottom of the home page for user to report issues/get help
2 parents c2c6375 + 9f23148 commit 6de07db

File tree

2 files changed

+44
-9
lines changed

2 files changed

+44
-9
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<groupId>com.ibm.websphere.azure</groupId>
2222
<artifactId>azure.websphere-traditional.cluster</artifactId>
23-
<version>1.3.20</version>
23+
<version>1.3.24</version>
2424

2525
<parent>
2626
<groupId>com.microsoft.azure.iaas</groupId>

src/main/arm/createUiDefinition.json

Lines changed: 43 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"type": "Microsoft.Common.InfoBox",
1010
"options": {
1111
"icon": "Info",
12-
"text": "This offer is Bring-Your-Own-License. To deploy this offer, you must enter your registered IBM ID and your IBM ID must have active WebSphere entitlements associated with it. If provisioning fails due to lack of entitlements, ask the primary or secondary contacts for your IBM Passport Advantage site to grant you access or follow steps at <a href='https://ibm.biz/IBMidEntitlement?version=${project.version}' target='_blank'>IBM eCustomer Care</a> for further assistance. This offer also assumes you are properly licensed to run offers in Microsoft Azure."
12+
"text": "This offer is Bring-Your-Own-License. To deploy this offer, you must enter your registered IBM ID and your IBM ID must have active WebSphere entitlements associated with it. If provisioning fails due to lack of entitlements, ask the primary or secondary contacts for your IBM Passport Advantage site to grant you access or follow steps at <a href='https://ibm.biz/IBMidEntitlement' target='_blank'>IBM eCustomer Care</a> for further assistance. This offer also assumes you are properly licensed to run offers in Microsoft Azure."
1313
}
1414
},
1515
{
@@ -54,13 +54,48 @@
5454
}
5555
},
5656
{
57-
"name": "About",
58-
"type": "Microsoft.Common.InfoBox",
59-
"options": {
60-
"icon": "None",
61-
"text": "Template version ${project.version}"
62-
},
63-
"visible": "[bool('${template.version.visible}')]"
57+
"name": "howToReportIssues",
58+
"type": "Microsoft.Common.Section",
59+
"label": "Report issues, get help, and share feedback",
60+
"elements": [
61+
{
62+
"name": "howToReportIssueText",
63+
"type": "Microsoft.Common.TextBlock",
64+
"visible": true,
65+
"options": {
66+
"text": "If you encounter problems during deployment of WebSphere, please report them here.",
67+
"link": {
68+
"label": "Issue tracker",
69+
"uri": "https://aka.ms/azure-twasnd-cluster-issues?version=${project.version}"
70+
}
71+
}
72+
},
73+
{
74+
"name": "howToReportVendorIssueText",
75+
"type": "Microsoft.Common.TextBlock",
76+
"visible": true,
77+
"options": {
78+
"text": "To use your existing IBM support contract, file an issue with IBM directly.",
79+
"link": {
80+
"label": "IBM support",
81+
"uri": "https://www.ibm.com/mysupport/"
82+
}
83+
}
84+
},
85+
{
86+
"name": "survey",
87+
"type": "Microsoft.Common.TextBlock",
88+
"visible": true,
89+
"options": {
90+
"text": "To get free help with Azure migration from the development team, fill out this survey.",
91+
"link": {
92+
"label": "Take survey",
93+
"uri": "https://aka.ms/ibm-stack-migration-survey"
94+
}
95+
}
96+
}
97+
],
98+
"visible": true
6499
}
65100
],
66101
"steps": [

0 commit comments

Comments
 (0)