-
Notifications
You must be signed in to change notification settings - Fork 1
/
environment
27 lines (22 loc) · 911 Bytes
/
environment
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
# Gitlab Infra Environment Variables.
#
# Source this file in your bash shell using "source environment".
# Resolve the location of this file and set GITLAB_HOME to the root
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
export GITLAB_HOME="$(cd -P "$(dirname "$SOURCE")" && pwd)"
set -a
GOOGLE_PROJECT_NAME="platform-dev"
GOOGLE_PROJECT_ID="platform-dev-178517"
GOOGLE_REGION="us-west1"
GOOGLE_ZONE="us-west1-b"
# TODO: check for GOOGLE_APPLICATION_CREDENTIALS
GOOGLE_APPLICATION_CREDENTIALS='/home/quokka/.credentials/platform-dev.json'
SECRETSTORE_GITHUB_APP="gitlab_server-github_app"
SECRETSTORE_SSH_KEYS="gitlab_server-ssh_keys"
SECRETSTORE_RUNNER_TOKEN="gitlab_server-runner_token"
GITLAB_SERVER_NAME="smallspark"
GITLAB_USERNAME="ubuntu"
EXTERNAL_URL="biodata-integration-tests.net"
TERRAFORM_BACKEND_STATE_BUCKET='terraform-gitlab-state-d3443c'
set +a