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

Add multiple links at the bottom of the home page for user to report issues/get help #113

Merged
merged 2 commits into from
Sep 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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.20</version>
<version>1.3.24</version>

<parent>
<groupId>com.microsoft.azure.iaas</groupId>
Expand Down
51 changes: 43 additions & 8 deletions src/main/arm/createUiDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"type": "Microsoft.Common.InfoBox",
"options": {
"icon": "Info",
"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."
"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."
}
},
{
Expand Down Expand Up @@ -54,13 +54,48 @@
}
},
{
"name": "About",
"type": "Microsoft.Common.InfoBox",
"options": {
"icon": "None",
"text": "Template version ${project.version}"
},
"visible": "[bool('${template.version.visible}')]"
"name": "howToReportIssues",
"type": "Microsoft.Common.Section",
"label": "Report issues, get help, and share feedback",
"elements": [
{
"name": "howToReportIssueText",
"type": "Microsoft.Common.TextBlock",
"visible": true,
"options": {
"text": "If you encounter problems during deployment of WebSphere, please report them here.",
"link": {
"label": "Issue tracker",
"uri": "https://aka.ms/azure-twasnd-cluster-issues?version=${project.version}"
}
}
},
{
"name": "howToReportVendorIssueText",
"type": "Microsoft.Common.TextBlock",
"visible": true,
"options": {
"text": "To use your existing IBM support contract, file an issue with IBM directly.",
"link": {
"label": "IBM support",
"uri": "https://www.ibm.com/mysupport/"
}
}
},
{
"name": "survey",
"type": "Microsoft.Common.TextBlock",
"visible": true,
"options": {
"text": "To get free help with Azure migration from the development team, fill out this survey.",
"link": {
"label": "Take survey",
"uri": "https://aka.ms/ibm-stack-migration-survey"
}
}
}
],
"visible": true
}
],
"steps": [
Expand Down