Resolve KASM-5044 "Feature/ templated pipelines"

This commit is contained in:
Ryan Kuba
2023-09-25 10:35:54 +00:00
committed by Matthew McClaskey
parent 03f2d0469e
commit 3130a86ab8
10 changed files with 938 additions and 364 deletions

View File

@ -2,12 +2,12 @@
set -e
## Parse input ##
NAME=$(echo $1| awk -F'|' '{print $1}')
BASE=$(echo $1| awk -F'|' '{print $2}')
DOCKERFILE=$(echo $1| awk -F'|' '{print $3}')
ARCH=$2
AWS_ID=$3
AWS_KEY=$4
NAME=$1
BASE=$2
DOCKERFILE=$3
ARCH=$4
AWS_ID=$5
AWS_KEY=$6
# Setup aws cli
export AWS_ACCESS_KEY_ID="${AWS_ID}"