From 45cfb3451b122a601d3b7ac9aff019fc419e5332 Mon Sep 17 00:00:00 2001 From: Sofia Papagiannaki Date: Thu, 9 Jul 2020 10:21:39 +0300 Subject: [PATCH] Upgrade build pipeline tool (#26165) * Upgrade build pipeline tool * Update config.yml * Remove edition parameter from deploy-to-kubernetes --- .circleci/config.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f00bbaee526..dfbb2f76e20 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -56,7 +56,7 @@ commands: - run: name: "Install Grafana build pipeline tool" command: | - VERSION=0.4.19 + VERSION=0.4.20 curl -fLO https://grafana-downloads.storage.googleapis.com/grafana-build-pipeline/v${VERSION}/grabpl chmod +x grabpl mv grabpl /tmp @@ -924,11 +924,14 @@ jobs: description: "Deploy Grafana master Docker image to Kubernetes" executor: base steps: + - attach_workspace: + at: /tmp/workspace - install-grabpl - run: name: Deploy to Kubernetes command: | - /tmp/grabpl deploy-to-k8s $CIRCLE_WORKFLOW_ID + cp -r /tmp/workspace/enterprise/dist . + /tmp/grabpl deploy-to-k8s release-packages: executor: node