-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
125 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
#!/bin/bash | ||
|
||
PROJECT_ROOT_DIR=$(dirname "$(realpath "${BASH_SOURCE[0]}")") | ||
|
||
# Default values | ||
CLOUD="${CLOUD:-public}" | ||
REGION="${REGION:-westus3}" | ||
CXSTAMP="${CXSTAMP:-1}" | ||
EXTRA_ARGS="" | ||
|
||
# Function to display usage | ||
usage() { | ||
echo "Usage: $0 deploy_env pipeline pipeline_step [-c cloud] [-d] [-r region] [-x cxstamp] [-e]" | ||
echo " deploy_env Deployment environment" | ||
echo " pipeline Pipeline file" | ||
echo " pipeline_step Pipeline step" | ||
echo " -c Set the cloud (default: public)" | ||
echo " -d Dry run" | ||
echo " -r Set the region (default: westus3)" | ||
echo " -x Set the cxstamp (default: 1)" | ||
echo " -e Extra args for config interpolation" | ||
echo " -p Pipeline to inspect" | ||
echo " -s Pipeline step to inspect" | ||
exit 1 | ||
} | ||
|
||
# Check if at least one positional argument is provided | ||
if [ "$#" -lt 1 ]; then | ||
usage | ||
fi | ||
|
||
# Positional arguments | ||
DEPLOY_ENV=$1 | ||
shift | ||
|
||
if [ "$#" -ge 1 ] && [[ ! "$1" =~ ^- ]]; then | ||
PIPELINE=$1 | ||
shift | ||
fi | ||
|
||
if [ "$#" -ge 1 ] && [[ ! "$1" =~ ^- ]]; then | ||
PIPELINE_STEP=$1 | ||
shift | ||
fi | ||
|
||
|
||
# Parse optional flags | ||
while getopts "c:dr:x:e:i:o:p:s:" opt; do | ||
case ${opt} in | ||
c) | ||
CLOUD=${OPTARG} | ||
;; | ||
d) | ||
DRY_RUN="--dry-run" | ||
;; | ||
r) | ||
REGION=${OPTARG} | ||
;; | ||
x) | ||
CXSTAMP=${OPTARG} | ||
;; | ||
e) | ||
EXTRA_ARGS="--extra-args ${OPTARG}" | ||
;; | ||
p) | ||
PIPELINE=${OPTARG} | ||
;; | ||
s) | ||
PIPELINE_STEP=${OPTARG} | ||
;; | ||
*) | ||
usage | ||
;; | ||
esac | ||
done | ||
|
||
# short names from EV2 prod ServiceConfig | ||
case ${REGION} in | ||
eastus) | ||
REGION_SHORT="use" | ||
;; | ||
westus) | ||
REGION_SHORT="usw" | ||
;; | ||
centralus) | ||
REGION_SHORT="usc" | ||
;; | ||
northcentralus) | ||
REGION_SHORT="usnc" | ||
;; | ||
southcentralus) | ||
REGION_SHORT="ussc" | ||
;; | ||
westus2) | ||
REGION_SHORT="usw2" | ||
;; | ||
westus3) | ||
REGION_SHORT="usw3" | ||
;; | ||
*) | ||
echo "unsupported region: ${REGION}" | ||
exit 1 | ||
esac | ||
|
||
if [ "$DEPLOY_ENV" == "personal-dev" ]; then | ||
REGION_STAMP="${REGION_SHORT}${USER:0:4}" | ||
else | ||
CLEAN_DEPLOY_ENV=$(echo "${DEPLOY_ENV}" | tr -cd '[:alnum:]') | ||
REGION_STAMP="${CLEAN_DEPLOY_ENV}" | ||
fi | ||
|
||
make -s -C ${PROJECT_ROOT_DIR}/tooling/templatize templatize | ||
TEMPLATIZE="${PROJECT_ROOT_DIR}/tooling/templatize/templatize" | ||
|
||
CONFIG_FILE=${CONFIG_FILE:-${PROJECT_ROOT_DIR}/config/config.yaml} | ||
$TEMPLATIZE pipeline run \ | ||
--config-file=${CONFIG_FILE} \ | ||
--cloud=${CLOUD} \ | ||
--deploy-env=${DEPLOY_ENV} \ | ||
--region=${REGION} \ | ||
--region-short=${REGION_STAMP} \ | ||
--stamp=${CXSTAMP} \ | ||
--pipeline-file=${PIPELINE} \ | ||
--step=${PIPELINE_STEP} \ | ||
${DRY_RUN} |