From 20ebe030c31973a017c03dc98bb7c3efbb364752 Mon Sep 17 00:00:00 2001 From: Ray Wainman <rwainman@google.com> Date: Mon, 28 Apr 2025 14:24:28 -0400 Subject: [PATCH] Build VPA components in parallel --- vertical-pod-autoscaler/cloudbuild.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vertical-pod-autoscaler/cloudbuild.yaml b/vertical-pod-autoscaler/cloudbuild.yaml index c546ecfb6d..e6302461c1 100644 --- a/vertical-pod-autoscaler/cloudbuild.yaml +++ b/vertical-pod-autoscaler/cloudbuild.yaml @@ -19,6 +19,7 @@ steps: - TAG=$_GIT_TAG args: - release + waitFor: ['-'] # The '-' indicates that this step begins immediately. - name: "gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:latest" dir: pkg/updater entrypoint: make @@ -26,5 +27,6 @@ steps: - TAG=$_GIT_TAG args: - release + waitFor: ['-'] # The '-' indicates that this step begins immediately. substitutions: _GIT_TAG: "0.0.0" # default value, this is substituted at build time -- GitLab