blob: 995ee29111e1cd40611c6ddfb871ea1ff0662f21 [file] [log] [blame]
Tres Seaver000d0a02020-10-06 15:47:28 -04001# Copyright 2020 Google LLC
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# Template for .trampolinerc
16
17# Add required env vars here.
18required_envvars+=(
19 "STAGING_BUCKET"
20 "V2_STAGING_BUCKET"
21)
22
23# Add env vars which are passed down into the container here.
24pass_down_envvars+=(
25 "STAGING_BUCKET"
26 "V2_STAGING_BUCKET"
27)
28
29# Prevent unintentional override on the default image.
30if [[ "${TRAMPOLINE_IMAGE_UPLOAD:-false}" == "true" ]] && \
31 [[ -z "${TRAMPOLINE_IMAGE:-}" ]]; then
32 echo "Please set TRAMPOLINE_IMAGE if you want to upload the Docker image."
33 exit 1
34fi
35
36# Define the default value if it makes sense.
37if [[ -z "${TRAMPOLINE_IMAGE_UPLOAD:-}" ]]; then
38 TRAMPOLINE_IMAGE_UPLOAD=""
39fi
40
41if [[ -z "${TRAMPOLINE_IMAGE:-}" ]]; then
42 TRAMPOLINE_IMAGE=""
43fi
44
45if [[ -z "${TRAMPOLINE_DOCKERFILE:-}" ]]; then
46 TRAMPOLINE_DOCKERFILE=""
47fi
48
49if [[ -z "${TRAMPOLINE_BUILD_FILE:-}" ]]; then
50 TRAMPOLINE_BUILD_FILE=""
51fi