-
Notifications
You must be signed in to change notification settings - Fork 724
Deploying a new build stops at search service (not found) #491
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
Comments
Hello @threegitty350, Thanks for posting the issue! To help us assist you better, could you let use know if you can manually create a Bing Search resource manually? And when you say you cannot get the app to reach a healthy state, could you provide us with any errors or logs (if there are any)? |
Yes, I was able to created it manually. I assigned the key to the configuration as a new value but it cannot start the service. Perhaps it's incorrect? Unfortunately, I am not familiar enough with azure to provide a log. |
Hi @threegitty350, Where did you set the new value to? The setting is consumed by the function app not the WebApi. Linking this issue here to assist you further: #498. Could you also let us know your bicep version? |
I think we should close this issue and resume in the other thread, it seems very much the same. #498 As mentioned in the other thread: Thanks for the support! |
Closing as described above. |
Describe the bug
Manually deploying chat copilot (new resource group) to azure is no longer possible due to the search service not being found on azure.
Specifically in the bicep file:
resource bingSearchService 'Microsoft.Bing/accounts@2020-06-10' = {
name: 'bing-search-${uniqueName}'
location: 'global'
sku: {
name: 'S1'
}
kind: 'Bing.Search.v7'
}
This prevents the setup to conclude and the app configuration fails to manifest on azure. Prior to these major changes, it did not have the issue. To circumvent this, I could comment out the quoted lines and the lines found at 670:
and installed bing search 7 manually from azure and applied the keys to the config (in azure). However, despite doing so, I could not get the app to reach a healthy state.
Platform
Additional context
Deploying to eastUS. Successfully deployed many times prior September 28, 2023. Willing to try workarounds on new RGs if suggested.
The text was updated successfully, but these errors were encountered: