tests: fixing bootstrap code and invalid instance

- bootstrap code was not correctly instantiating the cloud function.
- compute_instance has a typo from a previous commit.
- re-disabling forwarding rule as it still has the backend_service
  fingerprint requirement
This commit is contained in:
Yusuke Tsutsumi 2022-10-08 18:47:52 +00:00
parent 7fb64edcc5
commit 9e7748bc23
3 changed files with 4 additions and 3 deletions

View file

@ -56,10 +56,10 @@ fi
BUCKET_NAME="gs://${PROJECT_ID}-ansible-testing" BUCKET_NAME="gs://${PROJECT_ID}-ansible-testing"
if ! gcloud storage buckets describe "${BUCKET_NAME}" > /dev/null; then if ! gcloud storage buckets describe "${BUCKET_NAME}" > /dev/null; then
gcloud storage buckets create "gs://${PROJECT_ID}-ansible-testing" --project="${PROJECT_ID}" gcloud storage buckets create "${BUCKET_NAME}" --project="${PROJECT_ID}"
fi fi
gsutil cp ./test-fixtures/cloud-function.zip "gs://${PROJECT_ID}-ansible-testing" gsutil cp ./test-fixtures/cloud-function.zip "${BUCKET_NAME}"
# The following is hard to automate, so echo # The following is hard to automate, so echo

View file

@ -1 +1,2 @@
cloud/gcp cloud/gcp
unsupported

View file

@ -80,7 +80,7 @@
boot: 'true' boot: 'true'
source: "{{ disk }}" source: "{{ disk }}"
- auto_delete: 'true' - auto_delete: 'true'
interface: SCS interface: NVME
type: SCRATCH type: SCRATCH
initialize_params: initialize_params:
disk_type: local-ssd disk_type: local-ssd