From 135126b0faa5b37c7de5ebefdb8a8eafe06d8847 Mon Sep 17 00:00:00 2001 From: Vijay Machiraju Date: Mon, 10 Sep 2018 09:29:02 -0400 Subject: [PATCH] Rebranding --- Dockerfile | 4 ++-- README.md | 16 ++++++++-------- .vsts-ci.acr.yml => azure-pipelines.acr.yml | 4 ++-- ...s-ci.docker.yml => azure-pipelines.docker.yml | 4 ++-- .vsts-ci.yml => azure-pipelines.yml | 4 ++-- docs/Dockerfile.test | 4 ++-- docs/README.md | 2 +- docs/docker-compose.yml | 2 +- docs/test.sh | 2 +- 9 files changed, 21 insertions(+), 21 deletions(-) rename .vsts-ci.acr.yml => azure-pipelines.acr.yml (87%) rename .vsts-ci.docker.yml => azure-pipelines.docker.yml (84%) rename .vsts-ci.yml => azure-pipelines.yml (77%) diff --git a/Dockerfile b/Dockerfile index 9ab08ea3c..e13c0f3a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # This Dockerfile demonstrates how to use Docker to create an image -# after a build is produced and tested by VSTS or TFS -# See http://docs.microsoft.com/vsts/pipelines/languages/docker for more information +# after a build is produced and tested by Azure Pipelines +# See http://docs.microsoft.com/azure/devops/pipelines/languages/docker for more information # Create a container with the compiled asp.net core app FROM microsoft/aspnetcore:2.0 diff --git a/README.md b/README.md index bbbf8aa52..ada40e2b4 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@ -# Sample ASP.NET Core application for VSTS and TFS docs +# Sample ASP.NET Core application for Azure Pipelines docs -For information on how to use this repository, see [.NET Core](https://docs.microsoft.com/vsts/pipelines/languages/dotnet-core). +For information on how to use this repository, see [.NET Core](https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core). | Example | Build status | |---------|--------------| -| Build | [![Build status](https://pipelines-docs.visualstudio.com/docs/_apis/build/status/dotnetcore/dotnetcore)](https://pipelines-docs.visualstudio.com/docs/_build/latest?definitionId=1) | -| Build (YAML) | [![Build status](https://pipelines-docs.visualstudio.com/docs/_apis/build/status/dotnetcore/dotnetcore-yaml)](https://pipelines-docs.visualstudio.com/docs/_build/latest?definitionId=2) | -| Build image and push to Docker Hub | [![Build status](https://pipelines-docs.visualstudio.com/docs/_apis/build/status/dotnetcore/dotnetcore-dockerhub)](https://pipelines-docs.visualstudio.com/docs/_build/latest?definitionId=3) | -| Build image and push to Docker Hub (YAML) | [![Build status](https://pipelines-docs.visualstudio.com/docs/_apis/build/status/dotnetcore/dotnetcore-dockerhub-yaml)](https://pipelines-docs.visualstudio.com/docs/_build/latest?definitionId=4) | -| Build image and push to Azure Container Registry | [![Build status](https://pipelines-docs.visualstudio.com/docs/_apis/build/status/dotnetcore/dotnetcore-acr)](https://pipelines-docs.visualstudio.com/docs/_build/latest?definitionId=5) | -| Build image and push to Azure Container Registry (YAML) | [![Build status](https://pipelines-docs.visualstudio.com/docs/_apis/build/status/dotnetcore/dotnetcore-acr-yaml)](https://pipelines-docs.visualstudio.com/docs/_build/latest?definitionId=6) | +| Build | [![Build status](https://dev.azure.com/pipelines-docs/docs/_apis/build/status/dotnetcore/dotnetcore)](https://dev.azure.com/pipelines-docs/docs/_build/latest?definitionId=1) | +| Build (YAML) | [![Build status](https://dev.azure.com/pipelines-docs/docs/_apis/build/status/dotnetcore/dotnetcore-yaml)](https://dev.azure.com/pipelines-docs/docs/_build/latest?definitionId=2) | +| Build image and push to Docker Hub | [![Build status](https://dev.azure.com/pipelines-docs/docs/_apis/build/status/dotnetcore/dotnetcore-dockerhub)](https://dev.azure.com/pipelines-docs/docs/_build/latest?definitionId=3) | +| Build image and push to Docker Hub (YAML) | [![Build status](https://dev.azure.com/pipelines-docs/docs/_apis/build/status/dotnetcore/dotnetcore-dockerhub-yaml)](https://dev.azure.com/pipelines-docs/docs/_build/latest?definitionId=4) | +| Build image and push to Azure Container Registry | [![Build status](https://dev.azure.com/pipelines-docs/docs/_apis/build/status/dotnetcore/dotnetcore-acr)](https://dev.azure.com/pipelines-docs/docs/_build/latest?definitionId=5) | +| Build image and push to Azure Container Registry (YAML) | [![Build status](https://dev.azure.com/pipelines-docs/docs/_apis/build/status/dotnetcore/dotnetcore-acr-yaml)](https://dev.azure.com/pipelines-docs/docs/_build/latest?definitionId=6) | # Contributing diff --git a/.vsts-ci.acr.yml b/azure-pipelines.acr.yml similarity index 87% rename from .vsts-ci.acr.yml rename to azure-pipelines.acr.yml index f66b39b4e..7b5b71532 100644 --- a/.vsts-ci.acr.yml +++ b/azure-pipelines.acr.yml @@ -1,5 +1,5 @@ -# Build Docker image for this app -# http://docs.microsoft.com/vsts/pipelines/languages/docker?view=vsts +# Build Docker image for this app using Azure Pipelines +# http://docs.microsoft.com/azure/devops/pipelines/languages/docker?view=vsts queue: Hosted Linux Preview variables: diff --git a/.vsts-ci.docker.yml b/azure-pipelines.docker.yml similarity index 84% rename from .vsts-ci.docker.yml rename to azure-pipelines.docker.yml index d8e91c94a..b1e09fedc 100644 --- a/.vsts-ci.docker.yml +++ b/azure-pipelines.docker.yml @@ -1,5 +1,5 @@ -# Build Docker image for this app -# http://docs.microsoft.com/vsts/pipelines/languages/docker?view=vsts +# Build Docker image for this app using Azure Pipelines +# http://docs.microsoft.com/azure/devops/pipelines/languages/docker?view=vsts queue: Hosted Linux Preview variables: diff --git a/.vsts-ci.yml b/azure-pipelines.yml similarity index 77% rename from .vsts-ci.yml rename to azure-pipelines.yml index 4d2d089c7..eed9d2df0 100644 --- a/.vsts-ci.yml +++ b/azure-pipelines.yml @@ -1,5 +1,5 @@ -# Build ASP.NET Core project using VSTS -# https://docs.microsoft.com/vsts/pipelines/languages/dotnet-core?view=vsts +# Build ASP.NET Core project using Azure Pipelines +# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core?view=vsts queue: 'Hosted Linux Preview' diff --git a/docs/Dockerfile.test b/docs/Dockerfile.test index e66c72a01..d730cdfba 100644 --- a/docs/Dockerfile.test +++ b/docs/Dockerfile.test @@ -1,5 +1,5 @@ -# This Dockerfile is for a test container to demonstrate use of docker-compose with VSTS or TFS -# See http://docs.microsoft.com/vsts/pipelines/languages/docker for more information +# This Dockerfile is for a test container to demonstrate use of docker-compose with Azure Pipelines +# See http://docs.microsoft.com/azure/devops/pipelines/languages/docker for more information FROM ubuntu:trusty RUN apt-get update && apt-get install -yq curl && apt-get clean diff --git a/docs/README.md b/docs/README.md index 6a0d45f51..d79031417 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,3 +1,3 @@ This folder contains additional files and code snippets used in the following docs: -[Docker](http://docs.microsoft.com/vsts/pipelines/languages/docker). +[Docker](http://docs.microsoft.com/azure/devops/pipelines/languages/docker). diff --git a/docs/docker-compose.yml b/docs/docker-compose.yml index 41797bad9..175176008 100644 --- a/docs/docker-compose.yml +++ b/docs/docker-compose.yml @@ -1,5 +1,5 @@ # Docker compose file to bring up app and test containers -# See http://docs.microsoft.com/vsts/pipelines/languages/docker for more information +# See http://docs.microsoft.com/azure/devops/pipelines/languages/docker for more information sut: build: . dockerfile: docs/Dockerfile.test diff --git a/docs/test.sh b/docs/test.sh index 4d6930f30..6a4d638ea 100644 --- a/docs/test.sh +++ b/docs/test.sh @@ -1,5 +1,5 @@ # Test driver script to be used in a container -# See http://docs.microsoft.com/vsts/pipelines/languages/docker for more information +# See http://docs.microsoft.com/azure/devops/pipelines/languages/docker for more information sleep 5 if curl web | grep -q 'ASP.NET Core '; then echo "Tests passed!"