From f5d01327bf809dcb53d20f2ab4cceba403100894 Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Sun, 13 Oct 2019 10:06:33 -0400 Subject: [PATCH] Add step to download manifest --- Power/Service/deploy/azure-pipelines.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Power/Service/deploy/azure-pipelines.yml b/Power/Service/deploy/azure-pipelines.yml index 38a42f4..8c69427 100644 --- a/Power/Service/deploy/azure-pipelines.yml +++ b/Power/Service/deploy/azure-pipelines.yml @@ -48,6 +48,11 @@ stages: pool: name: Hosted Ubuntu 1604 steps: + - task: DownloadBuildArtifacts@0 + inputs: + buildType: 'current' + downloadType: 'single' + downloadPath: '$(System.ArtifactsDirectory)' - task: Kubernetes@1 inputs: connectionType: 'Kubernetes Service Connection' @@ -55,6 +60,6 @@ stages: namespace: 'home-monitor' command: 'apply' useConfigurationFile: true - configuration: '$(System.DefaultWorkingDirectory)/Manifest/Manifest/manifest.yaml' + configuration: '$(System.ArtifactsDirectory)/Manifest/Manifest/manifest.yaml' secretType: 'dockerRegistry' containerRegistryType: 'Azure Container Registry' \ No newline at end of file