Azure / Azure/azure-quickstart-templates

OMS solution deployment times out

Open
#2,491 1 comment 1 reaction 0 assignees View on GitHub
Dominant language
Bicep
Stars
14.9k
Forks
16.2k
Avg merge
6d 21h
Merged PRs (30d)
6

Description

[oms-service-fabric-solution](https://github.com/Azure/azure-quickstart-templates/tree/master/oms-service-fabric-solution)
[oms-all-deploy](https://github.com/Azure/azure-quickstart-templates/tree/master/oms-all-deploy)
[oms-existing-storage-account](https://github.com/Azure/azure-quickstart-templates/tree/master/oms-existing-storage-account)
### Issue Details

Due to the parenthesis used in the solution name variables the deployment of the solution times out.
The error message states: The gateway did not receive a response from 'Microsoft.OperationsManagement' within the specified time period.'

Removing the parenthesis '(' and ')' solves the issue.
I noticed this only today, as yesterday the deployment actually worked fine.

example to fix the issue (variables section):

``` json
"securitySolution": "[concat('Security', '(', parameters('omsWorkspaceName'), ')')]",
```

![oms_arm_solutions](https://cloud.githubusercontent.com/assets/1662677/18601395/e139c062-7c62-11e6-9a71-eebc48e24f3f.PNG)
to

``` json
"securitySolution": "[concat('Security-', parameters('name'))]",
```

![oms_arm_solutions_fixed](https://cloud.githubusercontent.com/assets/1662677/18601410/ee775b9a-7c62-11e6-8624-3d52ac830c5e.PNG)

Contributor guide

No contributing guide indexed for this repository

Research direction

Start with the variables sections in oms-service-fabric-solution, oms-all-deploy, and oms-existing-storage-account. Deploy the affected OMS solution templates and verify that removing parentheses from the solution name variables prevents the Microsoft.OperationsManagement timeout.

Written by the indexing model from the issue text.

Assessment

Tech stack
azure, json
Domain
cloud, infrastructure
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Clearly specified
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.