3 # Copyright (C) The Arvados Authors. All rights reserved.
5 # SPDX-License-Identifier: Apache-2.0
12 read -rd "\000" helpmessage <<EOF
13 $(basename $0): Build cloud images for arvados-dispatch-cloud
16 $(basename $0) [options]
20 --json-file (required)
21 Path to the packer json file
22 --arvados-cluster-id (required)
23 The ID of the Arvados cluster, e.g. zzzzz
24 --aws-profile (default: false)
25 AWS profile to use (valid profile from ~/.aws/config
26 --aws-secrets-file (default: false, required if building for AWS)
27 AWS secrets file which will be sourced from this script
28 --aws-source-ami (default: false, required if building for AWS)
29 The AMI to use as base for building the images
30 --aws-region (default: us-east-1)
31 The AWS region to use for building the images
32 --aws-vpc-id (optional)
33 VPC id for AWS, otherwise packer will pick the default one
35 Subnet id for AWS otherwise packer will pick the default one for the VPC
36 --gcp-project-id (default: false, required if building for GCP)
38 --gcp-account-file (default: false, required if building for GCP)
40 --gcp-zone (default: us-central1-f)
42 --azure-secrets-file (default: false, required if building for Azure)
43 Azure secrets file which will be sourced from this script
44 --azure-resource-group (default: false, required if building for Azure)
46 --azure-location (default: false, required if building for Azure)
47 Azure location, e.g. centralus, eastus, westeurope
48 --azure-sku (default: unset, required if building for Azure, e.g. 16.04-LTS)
49 Azure SKU image to use
50 --ssh_user (default: packer)
51 The user packer will use to log into the image
52 --resolver (default: host's network provided)
53 The dns resolver for the machine
54 --reposuffix (default: unset)
55 Set this to "-dev" to track the unstable/dev Arvados repositories
56 --public-key-file (required)
57 Path to the public key file that a-d-c will use to log into the compute node
59 Output debug information (default: false)
76 AZURE_CLOUD_ENVIRONMENT=
79 AWS_DEFAULT_REGION=us-east-1
82 PARSEDOPTS=$(getopt --name "$0" --longoptions \
83 help,json-file:,arvados-cluster-id:,aws-source-ami:,aws-profile:,aws-secrets-file:,aws-region:,aws-vpc-id:,aws-subnet-id:,gcp-project-id:,gcp-account-file:,gcp-zone:,azure-secrets-file:,azure-resource-group:,azure-location:,azure-sku:,azure-cloud-environment:,ssh_user:,resolver:,reposuffix:,public-key-file:,debug \
89 eval set -- "$PARSEDOPTS"
90 while [ $# -gt 0 ]; do
93 echo >&2 "$helpmessage"
100 --arvados-cluster-id)
101 ARVADOS_CLUSTER_ID="$2"; shift
104 AWS_SOURCE_AMI="$2"; shift
107 AWS_PROFILE="$2"; shift
110 AWS_SECRETS_FILE="$2"; shift
113 AWS_DEFAULT_REGION="$2"; shift
116 AWS_VPC_ID="$2"; shift
119 AWS_SUBNET_ID="$2"; shift
122 GCP_PROJECT_ID="$2"; shift
125 GCP_ACCOUNT_FILE="$2"; shift
130 --azure-secrets-file)
131 AZURE_SECRETS_FILE="$2"; shift
133 --azure-resource-group)
134 AZURE_RESOURCE_GROUP="$2"; shift
137 AZURE_LOCATION="$2"; shift
140 AZURE_SKU="$2"; shift
142 --azure-cloud-environment)
143 AZURE_CLOUD_ENVIRONMENT="$2"; shift
152 REPOSUFFIX="$2"; shift
155 PUBLIC_KEY_FILE="$2"; shift
158 # If you want to debug a build issue, add the -debug flag to the build
159 # command in question.
160 # This will allow you to ssh in, if you use the .pem file that packer
161 # generates in this directory as the ssh key. The base image uses the admin
162 # user and ssh port 22.
166 if [ $# -gt 1 ]; then
167 echo >&2 "$0: unrecognized argument '$2'. Try: $0 --help"
176 if [[ "$JSON_FILE" == "" ]] || [[ ! -f "$JSON_FILE" ]]; then
177 echo >&2 "$helpmessage"
179 echo >&2 "ERROR: packer json file not found"
184 if [[ -z "$ARVADOS_CLUSTER_ID" ]]; then
185 echo >&2 "$helpmessage"
187 echo >&2 "ERROR: arvados cluster id not specified"
192 if [[ "$PUBLIC_KEY_FILE" == "" ]] || [[ ! -f "$PUBLIC_KEY_FILE" ]]; then
193 echo >&2 "$helpmessage"
195 echo >&2 "ERROR: public key file file not found"
200 if [[ ! -z "$AWS_SECRETS_FILE" ]]; then
201 source $AWS_SECRETS_FILE
204 if [[ ! -z "$AZURE_SECRETS_FILE" ]]; then
205 source $AZURE_SECRETS_FILE
211 if [[ "$AWS_SOURCE_AMI" != "" ]]; then
212 EXTRA2+=" -var aws_source_ami=$AWS_SOURCE_AMI"
214 if [[ "$AWS_PROFILE" != "" ]]; then
215 EXTRA2+=" -var aws_profile=$AWS_PROFILE"
217 if [[ "$AWS_VPC_ID" != "" ]]; then
218 EXTRA2+=" -var vpc_id=$AWS_VPC_ID -var associate_public_ip_address=true "
220 if [[ "$AWS_SUBNET_ID" != "" ]]; then
221 EXTRA2+=" -var subnet_id=$AWS_SUBNET_ID -var associate_public_ip_address=true "
223 if [[ "$AWS_DEFAULT_REGION" != "" ]]; then
224 EXTRA2+=" -var aws_default_region=$AWS_DEFAULT_REGION"
226 if [[ "$GCP_PROJECT_ID" != "" ]]; then
227 EXTRA2+=" -var project_id=$GCP_PROJECT_ID"
229 if [[ "$GCP_ACCOUNT_FILE" != "" ]]; then
230 EXTRA2+=" -var account_file=$GCP_ACCOUNT_FILE"
232 if [[ "$GCP_ZONE" != "" ]]; then
233 EXTRA2+=" -var zone=$GCP_ZONE"
235 if [[ "$AZURE_RESOURCE_GROUP" != "" ]]; then
236 EXTRA2+=" -var resource_group=$AZURE_RESOURCE_GROUP"
238 if [[ "$AZURE_LOCATION" != "" ]]; then
239 EXTRA2+=" -var location=$AZURE_LOCATION"
241 if [[ "$AZURE_SKU" != "" ]]; then
242 EXTRA2+=" -var image_sku=$AZURE_SKU"
244 if [[ "$AZURE_CLOUD_ENVIRONMENT" != "" ]]; then
245 EXTRA2+=" -var cloud_environment_name=$AZURE_CLOUD_ENVIRONMENT"
247 if [[ "$SSH_USER" != "" ]]; then
248 EXTRA2+=" -var ssh_user=$SSH_USER"
250 if [[ "$RESOLVER" != "" ]]; then
251 EXTRA2+=" -var resolver=$RESOLVER"
253 if [[ "$REPOSUFFIX" != "" ]]; then
254 EXTRA2+=" -var reposuffix=$REPOSUFFIX"
256 if [[ "$PUBLIC_KEY_FILE" != "" ]]; then
257 EXTRA2+=" -var public_key_file=$PUBLIC_KEY_FILE"
263 echo packer build$EXTRA -var "arvados_cluster=$ARVADOS_CLUSTER_ID"$EXTRA2 $JSON_FILE
264 packer build$EXTRA -var "arvados_cluster=$ARVADOS_CLUSTER_ID"$EXTRA2 $JSON_FILE