blob: da8050be4b1eba752f801898d072112fa85f5afe [file] [log] [blame]
Jan Tattermusch2152b6c2017-11-01 23:13:42 +01001#!/bin/bash
2# Copyright 2017 gRPC authors.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16# Creates a worker for debugging/experiments.
17# The worker will have all the prerequisites that are installed on kokoro
18# windows workers.
19
20set -ex
21
22cd $(dirname $0)
23
24CLOUD_PROJECT=grpc-testing
25ZONE=us-central1-b
26
27if [ "$1" != "" ]
28then
29 INSTANCE_NAME="$1"
30else
31 INSTANCE_NAME="${USER}-windows-kokoro-debug1"
32fi
33
34MACHINE_TYPE=n1-standard-8
Jan Tattermusch041802c2017-11-03 14:16:39 +010035TMP_DISK_NAME="$INSTANCE_NAME-temp-disk"
36
37gcloud compute disks create $TMP_DISK_NAME \
38 --project="$CLOUD_PROJECT" \
39 --zone "$ZONE" \
40 --image-project google.com:kokoro \
41 --image empty-100g-image \
42 --type pd-ssd
43
44echo 'Created scratch disk, waiting for it to become available.'
45sleep 15
Jan Tattermusch2152b6c2017-11-01 23:13:42 +010046
47gcloud compute instances create $INSTANCE_NAME \
48 --project="$CLOUD_PROJECT" \
49 --zone "$ZONE" \
50 --machine-type $MACHINE_TYPE \
51 --image-project google.com:kokoro \
52 --image kokoro-win7build-v9-prod-debug \
Jan Tattermusch64ef0402017-11-03 14:21:52 +010053 --boot-disk-size 500 \
Jan Tattermusch1e9af122017-11-03 14:18:30 +010054 --boot-disk-type pd-ssd \
Jan Tattermusch041802c2017-11-03 14:16:39 +010055 --tags=allow-ssh \
56 --disk auto-delete=yes,boot=no,name=$TMP_DISK_NAME