azure-devops

Invoke-ASCmd : Authentication failed: User ID and Password are required when user interface is not available

混江龙づ霸主 提交于 2021-01-25 04:02:50
问题 I am trying to refresh credentials of an (already)deployed Tabular Model via CICD using Azure DevOps. Making use of Invoke-ASCmd in PowerShell to refresh the credentials. The script works fine from local when I provide the Tenant ID, App ID and the Key. However it fails when I run it from Azure Devops with error - User ID and Password are required when user interface is not available. Here is the script: $azureTenantId= "TenantId" $azurePassword = ConvertTo-SecureString "Key" -AsPlainText

Invoke-ASCmd : Authentication failed: User ID and Password are required when user interface is not available

这一生的挚爱 提交于 2021-01-25 03:50:29
问题 I am trying to refresh credentials of an (already)deployed Tabular Model via CICD using Azure DevOps. Making use of Invoke-ASCmd in PowerShell to refresh the credentials. The script works fine from local when I provide the Tenant ID, App ID and the Key. However it fails when I run it from Azure Devops with error - User ID and Password are required when user interface is not available. Here is the script: $azureTenantId= "TenantId" $azurePassword = ConvertTo-SecureString "Key" -AsPlainText

Process for React App deployment to Azure Web?

烂漫一生 提交于 2021-01-24 01:39:00
问题 I am currently trying to deploy the default react web app to Azure and I am encountering an issue where though I deploy the contents of my build folder to the azure hosted /site/wwwroot folder I end up on the following page when going to my hosted address: https://[project_name].azurewebsites.net/ Landing Page : I intend to deploy the default create-react-app react application so that I may have the process down for when I deploy my real site. The process I have followed is pretty much

Process for React App deployment to Azure Web?

為{幸葍}努か 提交于 2021-01-24 01:35:32
问题 I am currently trying to deploy the default react web app to Azure and I am encountering an issue where though I deploy the contents of my build folder to the azure hosted /site/wwwroot folder I end up on the following page when going to my hosted address: https://[project_name].azurewebsites.net/ Landing Page : I intend to deploy the default create-react-app react application so that I may have the process down for when I deploy my real site. The process I have followed is pretty much

Process for React App deployment to Azure Web?

 ̄綄美尐妖づ 提交于 2021-01-24 01:32:26
问题 I am currently trying to deploy the default react web app to Azure and I am encountering an issue where though I deploy the contents of my build folder to the azure hosted /site/wwwroot folder I end up on the following page when going to my hosted address: https://[project_name].azurewebsites.net/ Landing Page : I intend to deploy the default create-react-app react application so that I may have the process down for when I deploy my real site. The process I have followed is pretty much

Azure DevOps CI pipeline for master being triggered by changes in branch and vice versa

徘徊边缘 提交于 2021-01-23 06:51:11
问题 I have a CI build trigger setup for a repo as follows: trigger: - master I have a branch of the same repo that I would like to have it's own pipeline. In the pipeline.yml for the branch I have: trigger: - ops-workshop/ms-lab01 However, if I commit changes to my branch, builds are triggered for both the master and branch pipelines. Committing to master also triggers the pipeline for the branch (which it shouldn't). I have tried using the branches node to exclude master but it doesn't seem to

Fork GitHub to AzureDevOps?

笑着哭i 提交于 2021-01-21 18:11:21
问题 This 2014 post indicates there was no native support for Forking from GitHub to AzureDevOps Git - a situation which does not seem to be changed. Is it still necessary to create a middleman to moderate changes from GitHub before pushing them into an AzureDevOps project? If so, does AzureDevOps Git Repo become the Origin? If so, can someone explain why? 回答1: it is very simple,in AzureDevOps the project you want to clone the repository or create a new team project, click code tab. Click

Fork GitHub to AzureDevOps?

a 夏天 提交于 2021-01-21 18:10:10
问题 This 2014 post indicates there was no native support for Forking from GitHub to AzureDevOps Git - a situation which does not seem to be changed. Is it still necessary to create a middleman to moderate changes from GitHub before pushing them into an AzureDevOps project? If so, does AzureDevOps Git Repo become the Origin? If so, can someone explain why? 回答1: it is very simple,in AzureDevOps the project you want to clone the repository or create a new team project, click code tab. Click

Nuget restore fails on Azure Devops with message “unable to load the service index for source”

狂风中的少年 提交于 2021-01-21 06:18:37
问题 I have a build for a .NET solution that is running in a private agent. The solution contains both .NET Core 2.1 and .NET Standard 2.0 projects. Some of the nuget packages installed are the following: NETStandard.Library v2.0.3 Microsoft.AspNetCore.Mvc v2.0.0 Microsoft.NETCore.App v2.1.5 The build fails when trying to restore the nuget packages with the following error: "F:\Agent01\w\141\s\xxxxxxx.sln" (Restore target) (1) -> (Restore target) -> C:\Program Files\dotnet\sdk\2.1.500\NuGet

Azure Devops nuget artifact feed and docker

牧云@^-^@ 提交于 2021-01-20 12:35:10
问题 Is there a good way to create an authentication mechanism to Devops to be able to access the artifact NuGet feed? I would like to create a base image for my team that would allow them to just pull an image from our Azure Container Registry that has access to our devops nuget feed. Ideally people wouldn't have to have the same stock dockerfile code in every single project that grabs a PAT from their host build system. This would also allow us to CICD this a little more nicely. My current