From e9ae159704766ecddc735114ca2cccc405525364 Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 11:25:31 +0530 Subject: [PATCH 01/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 18 ++++++++ buddy.yml | 87 ------------------------------------ scripts/spellcheck.sh | 19 ++++++++ 3 files changed, 37 insertions(+), 87 deletions(-) create mode 100644 .azure-pipeline/pipeline.yml delete mode 100644 buddy.yml create mode 100755 scripts/spellcheck.sh diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml new file mode 100644 index 0000000..a204e9b --- /dev/null +++ b/.azure-pipeline/pipeline.yml @@ -0,0 +1,18 @@ +--- +trigger: + - master + +pr: + branches: + include: + - master + +stages: +- stage: precheck + jobs: + - job: spellcheck + dependsOn: [] + pool: + vmImage: "ubuntu-18.04" + steps: + - script: scripts/spellcheck.sh diff --git a/buddy.yml b/buddy.yml deleted file mode 100644 index b9f3b5e..0000000 --- a/buddy.yml +++ /dev/null @@ -1,87 +0,0 @@ ---- -- pipeline: "build-code" - on: "EVENT" - - events: - - type: "PUSH" - refs: - - "refs/heads/master" - - "refs/pull/*" - - priority: "NORMAL" - fail_on_prepare_env_warning: true - actions: - - action: "Execute: go build -o k8s-secret-injector" - type: "BUILD" - working_directory: "/src/github.com/OT-CONTAINER-KIT/k8s-secret-injector" - docker_image_name: "library/golang" - docker_image_tag: "1.16.0" - execute_commands: - - "export GOPATH=/" - - "export GO15VENDOREXPERIMENT=1" - - "go get -d" - - "go build -o k8s-secret-injector" - volume_mappings: - - "/:/src/github.com/OT-CONTAINER-KIT/k8s-secret-injector" - shell: "BASH" - run_next_parallel: true - - action: "Build Docker image" - type: "DOCKERFILE" - dockerfile_path: "Dockerfile" - run_next_parallel: true - -- pipeline: "code-quality" - on: "EVENT" - - events: - - type: "PUSH" - refs: - - "refs/heads/master" - - "refs/pull/*" - priority: "NORMAL" - fail_on_prepare_env_warning: true - actions: - - action: "Lint Dockerfile" - type: "DOCKERFILE_LINTER" - local_path: "Dockerfile" - shell_type: "sh" - ignore_codes: "ER0015,EF0003" - run_next_parallel: true - - - action: "Execute: golang ci linter" - type: "BUILD" - working_directory: "/src/github.com/OT-CONTAINER-KIT/k8s-secret-injector" - docker_image_name: "library/golang" - docker_image_tag: "1.16.0" - execute_commands: - - "export GOPATH=/" - - "export GO15VENDOREXPERIMENT=1" - - "curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.40.0" - - "./bin/golangci-lint run ./... --timeout 5m0s" - volume_mappings: - - "/:/src/github.com/OT-CONTAINER-KIT/k8s-secret-injector" - shell: "BASH" - run_next_parallel: true - -- pipeline: "publish-image" - on: "EVENT" - - events: - - type: "PUSH" - refs: - - "refs/heads/master" - - "refs/pull/*" - priority: "NORMAL" - fail_on_prepare_env_warning: true - actions: - - action: "Push Docker image" - type: "DOCKER_PUSH" - login: "abhishek-dubey" - password: "secure!b1YxTrhil5I5L6q+u3Ctiw==.Ix9cDbdNIKsSty7IWShSfw==" - docker_image_tag: "$BUDDY_EXECUTION_BRANCH,latest,$BUDDY_EXECUTION_TAG" - repository: "$IMAGE_NAME" - registry: "quay.io" - trigger_conditions: - - trigger_condition: "VAR_IS" - trigger_variable_value: "master" - trigger_variable_key: "BUDDY_EXECUTION_BRANCH" diff --git a/scripts/spellcheck.sh b/scripts/spellcheck.sh new file mode 100755 index 0000000..a220608 --- /dev/null +++ b/scripts/spellcheck.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +install_spellcheck() { + apt-get update -y + apt-get install -y aspell +} + +run_spellcheck() { + aspell ../README.md + aspell ../CHANGELOG.md + aspell ../DEVELOPMENT.md +} + +main() { + install_spellcheck + run_spellcheck +} + +main From 44d461e6b50a81c553c03dfa5a7ddf92954f924e Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 12:26:05 +0530 Subject: [PATCH 02/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index a204e9b..20bffac 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -10,9 +10,15 @@ pr: stages: - stage: precheck jobs: - - job: spellcheck + - job: govet dependsOn: [] pool: vmImage: "ubuntu-18.04" steps: - - script: scripts/spellcheck.sh + - task: GoTool@0 + inputs: + version: '1.16' + - task: Go@0 + inputs: + command: 'custom' + customCommand: 'vet' From 51f7c7b1976b7a1c8449ba63f29add6ef17a0918 Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 12:26:40 +0530 Subject: [PATCH 03/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index 20bffac..a47088c 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -12,8 +12,8 @@ stages: jobs: - job: govet dependsOn: [] - pool: - vmImage: "ubuntu-18.04" + pool: + vmImage: "ubuntu-18.04" steps: - task: GoTool@0 inputs: From 4afd4e2214f20ecd2148283dc266f42cbc900d27 Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 12:32:28 +0530 Subject: [PATCH 04/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index a47088c..e6b3e57 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -16,9 +16,29 @@ stages: vmImage: "ubuntu-18.04" steps: - task: GoTool@0 + displayName: "Installing Golang" inputs: version: '1.16' - task: Go@0 + displayName: "Executing go vet" inputs: command: 'custom' customCommand: 'vet' + +- stage: build + dependsOn: ["precheck"] + jobs: + - job: linux_amd64 + dependsOn: [] + pool: + vmImage: "ubuntu-18.04" + steps: + - task: GoTool@0 + displayName: "Installing Golang" + inputs: + version: '1.16' + - task: Go@0 + displayName: "Executing go build" + inputs: + command: 'build' + arguments: '-o k8s-secret-injector' From 94501402fc1b615a1a2d0a9547216c54329fbf4b Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 12:37:51 +0530 Subject: [PATCH 05/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index e6b3e57..15c2ad4 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -42,3 +42,16 @@ stages: inputs: command: 'build' arguments: '-o k8s-secret-injector' + - task: ArchiveFiles@2 + displayName: 'Archiving go binary' + inputs: + rootFolderOrFile: '$(Build.BinariesDirectory)/k8s-secret-injector' + includeRootFolder: true + archiveType: 'zip' + archiveFile: '$(Build.ArtifactStagingDirectory)/compiled/k8s-secret-injector-linux-amd64.zip' + replaceExistingArchive: true + - task: PublishBuildArtifacts@1 + inputs: + PathtoPublish: '$(Build.ArtifactStagingDirectory)/compiled' + ArtifactName: 'drop' + publishLocation: 'Container' From 23d83e33de3a5617f226c13ef940250b6f343e79 Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 12:41:54 +0530 Subject: [PATCH 06/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index 15c2ad4..1b1ca87 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -45,7 +45,7 @@ stages: - task: ArchiveFiles@2 displayName: 'Archiving go binary' inputs: - rootFolderOrFile: '$(Build.BinariesDirectory)/k8s-secret-injector' + rootFolderOrFile: '$(Agent.BuildDirectory)/k8s-secret-injector' includeRootFolder: true archiveType: 'zip' archiveFile: '$(Build.ArtifactStagingDirectory)/compiled/k8s-secret-injector-linux-amd64.zip' From dc3e11b653acfb7a0cb33e67570a61417db087ab Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 12:55:59 +0530 Subject: [PATCH 07/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index 1b1ca87..eda109a 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -25,8 +25,32 @@ stages: command: 'custom' customCommand: 'vet' -- stage: build +- stage: code_quality dependsOn: ["precheck"] + jobs: + - job: golang_ci_lint + dependsOn: [] + pool: + vmImage: "ubuntu-18.04" + steps: + - task: GoTool@0 + displayName: "Installing Golang" + inputs: + version: '1.16' + - script: | + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.40.0 + ./bin/golangci-lint run --timeout 5m0s ./... + displayName: "Executing golang-ci lint" + - job: dockerfile_lint + dependsOn: [] + pool: + vmImage: "ubuntu-18.04" + steps: + - script: scripts/dockerfile-linter.sh + displayName: "Executing dockerlinter" + +- stage: build + dependsOn: ["code_quality"] jobs: - job: linux_amd64 dependsOn: [] @@ -41,7 +65,7 @@ stages: displayName: "Executing go build" inputs: command: 'build' - arguments: '-o k8s-secret-injector' + arguments: '-o $(Agent.BuildDirectory)/k8s-secret-injector' - task: ArchiveFiles@2 displayName: 'Archiving go binary' inputs: From 9bb3bf6b924846b018a571de27355558944f0f71 Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 12:58:12 +0530 Subject: [PATCH 08/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 4 ++++ scripts/dockerfile-linter.sh | 17 +++++++++++++++++ scripts/spellcheck.sh | 19 ------------------- 3 files changed, 21 insertions(+), 19 deletions(-) create mode 100755 scripts/dockerfile-linter.sh delete mode 100755 scripts/spellcheck.sh diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index eda109a..f6a9fdc 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -41,6 +41,10 @@ stages: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.40.0 ./bin/golangci-lint run --timeout 5m0s ./... displayName: "Executing golang-ci lint" + +- stage: dockerfile_lint + dependsOn: ["precheck"] + jobs: - job: dockerfile_lint dependsOn: [] pool: diff --git a/scripts/dockerfile-linter.sh b/scripts/dockerfile-linter.sh new file mode 100755 index 0000000..19053dc --- /dev/null +++ b/scripts/dockerfile-linter.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +download_hadolint() { + wget https://github.com/hadolint/hadolint/releases/download/v2.4.0/hadolint-Linux-x86_64 + chmod +x hadolint-Linux-x86_64 +} + +execute_hadolint() { + ./hadolint-Linux-x86_64 ../Dockerfile --ignore DL3007 --ignore DL3018 +} + +main() { + download_hadolint + execute_hadolint +} + +main diff --git a/scripts/spellcheck.sh b/scripts/spellcheck.sh deleted file mode 100755 index a220608..0000000 --- a/scripts/spellcheck.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -install_spellcheck() { - apt-get update -y - apt-get install -y aspell -} - -run_spellcheck() { - aspell ../README.md - aspell ../CHANGELOG.md - aspell ../DEVELOPMENT.md -} - -main() { - install_spellcheck - run_spellcheck -} - -main From 9f0f39d05c6f8e2c63ca3cbbdf3bbcff0aae21a8 Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 13:02:35 +0530 Subject: [PATCH 09/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 13 +++++++++++++ scripts/dockerfile-linter.sh | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index f6a9fdc..cbaabbf 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -83,3 +83,16 @@ stages: PathtoPublish: '$(Build.ArtifactStagingDirectory)/compiled' ArtifactName: 'drop' publishLocation: 'Container' + +- stage: build_image + dependsOn: ["dockerfile_lint"] + jobs: + - job: linux_amd64 + dependsOn: [] + steps: + - task: Docker@2 + displayName: "Building docker image" + inputs: + command: 'build' + Dockerfile: '**/Dockerfile' + tags: '$(Build.BuildId)' diff --git a/scripts/dockerfile-linter.sh b/scripts/dockerfile-linter.sh index 19053dc..b467e6a 100755 --- a/scripts/dockerfile-linter.sh +++ b/scripts/dockerfile-linter.sh @@ -6,7 +6,7 @@ download_hadolint() { } execute_hadolint() { - ./hadolint-Linux-x86_64 ../Dockerfile --ignore DL3007 --ignore DL3018 + ./hadolint-Linux-x86_64 Dockerfile --ignore DL3007 --ignore DL3018 } main() { From fcb47e2d5f9e20e74cfb695f44cce343a144832b Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 16:05:18 +0530 Subject: [PATCH 10/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 14 ++++++++++++++ VERSION | 2 +- scripts/goreleaser.sh | 25 +++++++++++++++++++++++++ 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100755 scripts/goreleaser.sh diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index cbaabbf..2efec2c 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -96,3 +96,17 @@ stages: command: 'build' Dockerfile: '**/Dockerfile' tags: '$(Build.BuildId)' + +- stage: release_binaries + dependsOn: ["build", "build_image"] + jobs: + - job: goreleaser + dependsOn: [] + pool: + vmImage: "ubuntu-18.04" + steps: + - script: scripts/goreleaser.sh + displayName: "Releasing go binaries" + env: + GITHUB_TOKEN: $(GithubToken) + condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master')) diff --git a/VERSION b/VERSION index 389f774..cb88348 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.0 \ No newline at end of file +v4.0 \ No newline at end of file diff --git a/scripts/goreleaser.sh b/scripts/goreleaser.sh new file mode 100755 index 0000000..9a16f6e --- /dev/null +++ b/scripts/goreleaser.sh @@ -0,0 +1,25 @@ +#!/bin/bash + +install_goreleaser() { + curl -sfL https://install.goreleaser.com/github.com/goreleaser/goreleaser.sh | sh +} + +release() { + install_goreleaser + goreleaser release --rm-dist +} + +compare_version() { + version=$(cat VERSION) + if ! git tag -l | grep "${version}" + then + echo "git tag ${version}" + git tag "${version}" + release + else + git tag -l + echo "Latest version is already updated" + fi +} + +compare_version From 89bdb1dcf7c8a5628647c1e0d54342ce85d05167 Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 16:08:29 +0530 Subject: [PATCH 11/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index 2efec2c..cc078bb 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -107,6 +107,6 @@ stages: steps: - script: scripts/goreleaser.sh displayName: "Releasing go binaries" - env: - GITHUB_TOKEN: $(GithubToken) + env: + GITHUB_TOKEN: $(GithubToken) condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master')) From 62f204070b1f628c1e6d235b10eeb8655b8bb7e5 Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 16:20:32 +0530 Subject: [PATCH 12/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index cc078bb..f6679c6 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -7,6 +7,9 @@ pr: include: - master +variables: + - group: RuntimeVariables + stages: - stage: precheck jobs: @@ -110,3 +113,24 @@ stages: env: GITHUB_TOKEN: $(GithubToken) condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master')) + +- stage: release_quay + dependsOn: ["build", "build_image"] + jobs: + - job: quay + dependsOn: [] + pool: + vmImage: "ubuntu-18.04" + steps: + - task: Docker@2 + displayName: "Publish quay image" + inputs: + containerRegistry: 'QuayServiceConnection' + repository: 'quay.io/opstree/k8s-secret-injector' + command: 'buildAndPush' + Dockerfile: '**/Dockerfile' + tags: | + latest + $(Build.SourceBranchName) + condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master')) + From e2ba9b2309b4c059547ec27f1bb66807da634aee Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 16:26:51 +0530 Subject: [PATCH 13/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index f6679c6..a8ed755 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -134,3 +134,22 @@ stages: $(Build.SourceBranchName) condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master')) +- stage: release_github_image + dependsOn: ["build", "build_image"] + jobs: + - job: github + dependsOn: [] + pool: + vmImage: "ubuntu-18.04" + steps: + - task: Docker@2 + displayName: "Publish github image" + inputs: + containerRegistry: 'GithubServiceConnection' + repository: 'docker.pkg.github.com/ot-container-kit/k8s-secret-injector/k8s-secret-injector' + command: 'buildAndPush' + Dockerfile: '**/Dockerfile' + tags: | + latest + $(Build.SourceBranchName) + condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master')) From 87ec118961739c3b7313981e285d9fa777167942 Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 16:39:11 +0530 Subject: [PATCH 14/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index a8ed755..bc68f7b 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -153,3 +153,29 @@ stages: latest $(Build.SourceBranchName) condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master')) + +- stage: verify + dependsOn: ["release_binaries", "release_quay", "release_github_image"] + jobs: + - job: verfiy + dependsOn: [] + pool: + vmImage: "ubuntu-18.04" + steps: + - task: DownloadBuildArtifacts@0 + displayName: "Downloading the artifact" + inputs: + buildType: 'current' + downloadType: 'single' + artifactName: 'drop' + downloadPath: '$(System.ArtifactsDirectory)' + - task: ExtractFiles@1 + displayName: "Extracting files" + inputs: + archiveFilePatterns: '$(System.ArtifactsDirectory)/k8s-secret-injector-linux-amd64.zip' + destinationFolder: '$(Agent.BuildDirectory)' + cleanDestinationFolder: true + overwriteExistingFiles: true + - script: | + $(Agent.BuildDirectory)/k8s-secret-injector --help + displayName: "Executing k8s-secret-injector" From 0aa07c7e7a0c10fcb39428ec359e43bda0aa3c9f Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 16:48:07 +0530 Subject: [PATCH 15/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index bc68f7b..1039f72 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -172,10 +172,22 @@ stages: - task: ExtractFiles@1 displayName: "Extracting files" inputs: - archiveFilePatterns: '$(System.ArtifactsDirectory)/k8s-secret-injector-linux-amd64.zip' + archiveFilePatterns: '$(System.ArtifactsDirectory)/drop/k8s-secret-injector-linux-amd64.zip' destinationFolder: '$(Agent.BuildDirectory)' cleanDestinationFolder: true overwriteExistingFiles: true - script: | $(Agent.BuildDirectory)/k8s-secret-injector --help displayName: "Executing k8s-secret-injector" + +- stage: docs + dependsOn: ["release_binaries", "release_quay", "release_github_image"] + jobs: + - job: verfiy + dependsOn: [] + pool: + vmImage: "ubuntu-18.04" + steps: + - script: | + echo "No documentation is for this project!!" + displayName: "Building documentation" From 812e1b684ae8994241b51c5ca36b70c0bd3bc49d Mon Sep 17 00:00:00 2001 From: iamabhishek-dubey Date: Sat, 15 May 2021 16:54:54 +0530 Subject: [PATCH 16/16] Added Azure CI Signed-off-by: iamabhishek-dubey --- .azure-pipeline/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipeline/pipeline.yml b/.azure-pipeline/pipeline.yml index 1039f72..ffb13cd 100644 --- a/.azure-pipeline/pipeline.yml +++ b/.azure-pipeline/pipeline.yml @@ -174,7 +174,7 @@ stages: inputs: archiveFilePatterns: '$(System.ArtifactsDirectory)/drop/k8s-secret-injector-linux-amd64.zip' destinationFolder: '$(Agent.BuildDirectory)' - cleanDestinationFolder: true + cleanDestinationFolder: false overwriteExistingFiles: true - script: | $(Agent.BuildDirectory)/k8s-secret-injector --help