-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathenv.conf
32 lines (22 loc) · 1.09 KB
/
env.conf
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
28
29
30
31
#!/bin/bash
# Container environment settings
# EDITOR - editor to use when configuring settings. EDITOR=vi(default)|nano
export EDITOR=vi
# VERBOSE - show command being executed, prior to running it. VERBOSE="true"(default)|"false"
export VERBOSE=true
# ENV_HOME - home directory for container environment. ENV_HOME=/hyperpod/. Path must end with '/'.
export ENV_HOME=/hyperpod/
# IMPL - hyperpod implementation. IMPL=eks(default)|slurm
export IMPL=eks
# CONF - location of hyperpod cluster configuration. CONF=conf/eks/aws-do-hyperpod-eks(default)|conf/slurm/aws-do-hyperpod-slurm|... folder-name==cluster-name
export CONF=conf/eks/aws-do-hyperpod-eks
#export CONF=conf/eks/hybrid-hyperpod-eks
# AWS_REGION - current AWS region
export AWS_REGION=$(aws configure get region)
# DELETE_ALL - set to true to delete CFN stack in addition to hyperpod cluster. DELETE_ALL=false(default)|true
export DELETE_ALL=false
# ENDPOINT - hyperpod service endpoint (optional), default will always point to production
export ENDPOINT=""
if [ ! "$ENDPOINT" == "" ]; then
export ENDPOINT_ARG="--endpoint $ENDPOINT"
fi