azure devops
1395 TopicsError 401 on setting up RegressionSuiteAutomation Tool
Hi When I try to setup my RSAT Test Tool I can add all information and test the connection successfully. But selecting the Testplan is not possible (error 401). The testplan is there and was created by the one I use the accesstoken for649Views0likes1CommentSynopsys Detect Azure DevOps Task fails with a 404
I'm dealing with a CI pipeline that uses the Synopsys Detect task and suddenly it started to fail. I looked at the logs and this is the output: After seeing that I went to the URL where the task tries to get the Detect script from, and this is what's there: However, no matter which path you add to the URL, even with no Major number, it returns a 404. This makes me think that maybe the scripts are no longer available there? I've tried to look online for any related posts but couldn't find anything mentioning this specific error nor anything related to the scripts being removed from that location. Any input would be appreciated1.2KViews0likes1CommentIssue with deploying Docker container to Azure Kubernetes Service
Hi all, I'm having trouble launching a Docker container to the Azure Kubernetes Service (AKS). I followed the documentation's instructions to generate a Dockerfile, push the image to Azure Container Registry, then construct a deployment file. However, when I use 'kubectl apply -f deployment.yaml' to deploy the container, I receive the following error: 'Error: unable to recognize "deployment.yaml": no matches for kind "Deployment" in version "apps/v1"' I've double-checked that the API version and kind in my deployment file are correct, and I'm at a loss on what else to try. Is this a common issue, and do you have any advice for troubleshooting? Thanks in advance for your help! Best regards, [Vivek Garg]1KViews0likes1CommentHow to make an azure devops pipeline check that a feature branch is update to date with develop?
Does anyone know if its possible to have an azure devops pipeline check that a feature branch is up-to-date with a deploy branch, e.g Develop? I know this is possible with Github pipelines, but could someone tell me if this is feasible in Azure pipelines and how I would do this. Thank you for your help.915Views0likes1CommentService hooks removed issue
Our company has been using Azure DevOps services for almost 1 year now. recently somehow all the existing service hooks across the org were gone. I tried to check the audit logs but not sure what exact filter or search will help to identify what happened. any suggestion?661Views0likes1CommentSet Default Test Plan When Adding Tests From Board
I have 3 Test Plans set up in my Area Path: Smoke Test, Regression Test, and Integrations. When I add a Test to a user story via the Board (ellipses > Add Test), the test is automatically created in a new suite in the Smoke Test plan. I want the new suites to be created in the Integrations test plan. How can I set the default Test Plan so that all new test suites are created in the Integrations test plan?773Views0likes1CommentCreating a Server with current nuget packages?
I want to programmatically create an Azure SQL Server and I found an example piece of code online static void CreateServer() { // Create a SQL Database management client SqlManagementClient sqlClient = new SqlManagementClient(new TokenCloudCredentials(subscriptionId, token.AccessToken)); // Create a server ServerCreateOrUpdateParameters serverParameters = new ServerCreateOrUpdateParameters() { Location = location, Properties = new ServerCreateOrUpdateProperties() { AdministratorLogin = administratorLogin, AdministratorLoginPassword = administratorPassword, Version = serverVersion } }; var serverResult = sqlClient.Servers.CreateOrUpdate(resourceGroupName, serverName, serverParameters); } ... but I have since found that the packages I need for this are deprecated. Instead of Microsoft.Azure.Management.Sql.Fluent I should be using Azure.ResourceManager.Sql But I can't find any example as clear as the above to create a new Azure SQL server using the new packages. This is an area I'm very unfamiliar with so I can't see the wood for the trees and I get lost in the definitions. Can someone please provide a code snippet as minimalistic as the above to achieve the same thing using new packages? Many thanks.699Views0likes1CommentHow to add a comment with rich text (text+images) to the work item (task) with Powershell
Hi All, I am trying to add a comment into discussion and other custom fields based of rich text programmatically (using PowerShell). Can you please guide me how to upload the image. I browsed online and able to send the text using REST API calls and AZ CLI cmdlets but how to upload images. Can you please provide some docs. or example reference. Thanks in advance!1.3KViews0likes2Comments