From 8f9140da51eaae02a5fde96437a88ac8fe2971d8 Mon Sep 17 00:00:00 2001 From: Abhisek Purwar Date: Wed, 13 Jul 2022 22:27:47 +0530 Subject: [PATCH] chore: Remove old task_helpers related to ACM operator install (#1319) * Update version to 21.2 to fix the exception of node pool of terraform example * Update the gke module version to latest in the examples * Update the terraform provider version for google-beta * Remove old task_helpers related to ACM operator install Co-authored-by: Bharath KKB --- build/int.cloudbuild.yaml | 3 --- test/task_helper_functions.sh | 20 -------------------- 2 files changed, 23 deletions(-) delete mode 100755 test/task_helper_functions.sh diff --git a/build/int.cloudbuild.yaml b/build/int.cloudbuild.yaml index 8399652b69..6eaf99b506 100644 --- a/build/int.cloudbuild.yaml +++ b/build/int.cloudbuild.yaml @@ -14,9 +14,6 @@ timeout: 12600s steps: -- id: download acm - name: 'gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS' - args: ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && download_acm'] - id: prepare name: 'gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS' args: ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && prepare_environment && chmod 600 /builder/home/.netrc && sleep 120'] diff --git a/test/task_helper_functions.sh b/test/task_helper_functions.sh deleted file mode 100755 index 49a530eb4e..0000000000 --- a/test/task_helper_functions.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash - -# Copyright 2019 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Pre-download the Anthos Config Management operator -function download_acm() { - gsutil cp gs://config-management-release/released/latest/config-management-operator.yaml /workspace/acm.yaml -}