-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.template
28 lines (21 loc) · 1.07 KB
/
.env.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Choose the name for the container you are going to use for logging into gcloud:
# This is the same container name you created by building ./Dockerfile in this folder
export MY_GCLOUD_IMAGE=google-cloud-magic
# Set your gcloud project's name:
export MY_PROJ=CHANGEME
# Choose a name for your gcloud configuration and its subfolder:
export MY_CFG=CHANGEME
export MY_CONTAINER_NAME=gcloud-config-${MY_CFG}
# Choos a name for the function that will be used to run the container:
# Hint: the shorter the better
export MY_CFG_docker_function=gcloud_dev_userx
# Choose a name for the function that will be used to run the container with k9s:
export MY_CFG_docker_function_k9s=gcloud_dev_userx_k9s
# Set your gcloud account's email to login in this sandboxed environment:
export MY_ACCOUNT=dev@stagedates.com
# Set your gcloud region and zone:
export MY_REGION=europe-west3
export MY_ZONE=a
# Set the path to the gcloud configuration file and its corresponding mount point in the containers:
export CLOUDSDK_CONFIG=`pwd`/gcloud_configs/${MY_CFG}
export CLOUDSDK_CONFIG_MOUNT_POINT=/config/${MY_CFG}