├── .github └── workflows │ ├── ci.yml │ └── publish-release.yml ├── .gitignore ├── AgentImages ├── Azure-Pipelines.yml ├── Basic │ ├── Ubuntu │ │ ├── Dockerfile │ │ ├── patches │ │ │ └── AgentService.js │ │ ├── start-once.sh │ │ └── start.sh │ └── Windows │ │ ├── Dockerfile │ │ ├── start-once.ps1 │ │ └── start.ps1 └── Readme.md ├── CODE_OF_CONDUCT.md ├── Extension ├── AzureContainerCreate │ ├── AzureContainerAgentCreate.ts │ ├── ThirdPartyNotices.txt │ ├── icon.png │ ├── package-lock.json │ ├── package.json │ ├── task.json │ ├── tsconfig.json │ └── typings.json ├── license.md ├── overview.md ├── package-lock.json ├── package.json ├── static │ └── images │ │ ├── azure-container-create-task.png │ │ ├── basic-pipeline.png │ │ └── logo.png ├── tsconfig.json └── vss-extension.json ├── LICENSE ├── README.md ├── Samples ├── constants.sh ├── create-acr.sh ├── create-storage.sh ├── create-vnet.sh └── storage-pipeline │ └── Azure-pipelines.yml ├── basic-pipeline.png └── virtualnetworks.png /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/.gitignore -------------------------------------------------------------------------------- /AgentImages/Azure-Pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/AgentImages/Azure-Pipelines.yml -------------------------------------------------------------------------------- /AgentImages/Basic/Ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/AgentImages/Basic/Ubuntu/Dockerfile -------------------------------------------------------------------------------- /AgentImages/Basic/Ubuntu/patches/AgentService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/AgentImages/Basic/Ubuntu/patches/AgentService.js -------------------------------------------------------------------------------- /AgentImages/Basic/Ubuntu/start-once.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/AgentImages/Basic/Ubuntu/start-once.sh -------------------------------------------------------------------------------- /AgentImages/Basic/Ubuntu/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/AgentImages/Basic/Ubuntu/start.sh -------------------------------------------------------------------------------- /AgentImages/Basic/Windows/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/AgentImages/Basic/Windows/Dockerfile -------------------------------------------------------------------------------- /AgentImages/Basic/Windows/start-once.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/AgentImages/Basic/Windows/start-once.ps1 -------------------------------------------------------------------------------- /AgentImages/Basic/Windows/start.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/AgentImages/Basic/Windows/start.ps1 -------------------------------------------------------------------------------- /AgentImages/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/AgentImages/Readme.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Extension/AzureContainerCreate/AzureContainerAgentCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/AzureContainerCreate/AzureContainerAgentCreate.ts -------------------------------------------------------------------------------- /Extension/AzureContainerCreate/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/AzureContainerCreate/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /Extension/AzureContainerCreate/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/AzureContainerCreate/icon.png -------------------------------------------------------------------------------- /Extension/AzureContainerCreate/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/AzureContainerCreate/package-lock.json -------------------------------------------------------------------------------- /Extension/AzureContainerCreate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/AzureContainerCreate/package.json -------------------------------------------------------------------------------- /Extension/AzureContainerCreate/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/AzureContainerCreate/task.json -------------------------------------------------------------------------------- /Extension/AzureContainerCreate/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/AzureContainerCreate/tsconfig.json -------------------------------------------------------------------------------- /Extension/AzureContainerCreate/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/AzureContainerCreate/typings.json -------------------------------------------------------------------------------- /Extension/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/license.md -------------------------------------------------------------------------------- /Extension/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/overview.md -------------------------------------------------------------------------------- /Extension/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/package-lock.json -------------------------------------------------------------------------------- /Extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/package.json -------------------------------------------------------------------------------- /Extension/static/images/azure-container-create-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/static/images/azure-container-create-task.png -------------------------------------------------------------------------------- /Extension/static/images/basic-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/static/images/basic-pipeline.png -------------------------------------------------------------------------------- /Extension/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/static/images/logo.png -------------------------------------------------------------------------------- /Extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/tsconfig.json -------------------------------------------------------------------------------- /Extension/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Extension/vss-extension.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/README.md -------------------------------------------------------------------------------- /Samples/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Samples/constants.sh -------------------------------------------------------------------------------- /Samples/create-acr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Samples/create-acr.sh -------------------------------------------------------------------------------- /Samples/create-storage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Samples/create-storage.sh -------------------------------------------------------------------------------- /Samples/create-vnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Samples/create-vnet.sh -------------------------------------------------------------------------------- /Samples/storage-pipeline/Azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/Samples/storage-pipeline/Azure-pipelines.yml -------------------------------------------------------------------------------- /basic-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/basic-pipeline.png -------------------------------------------------------------------------------- /virtualnetworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-ephemeral-agents/HEAD/virtualnetworks.png --------------------------------------------------------------------------------