File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ help() {
1111 echo " This script takes at least 3 parameters."
1212 echo
1313 echo " The following optional environment variables can be set to alter this script behavior:"
14+ echo " - NAMESPACE | string | name of the targeted namespace. Generated when not set"
1415 echo " - ARGO_MINIO_ACCESS_KEY | string | AccessKey for MinIO. Generated when not set"
1516 echo " - ARGO_MINIO_SECRET_KEY | string | SecretKey for MinIO. Generated when not set"
1617 echo " - ARGO_MINIO_REQUESTS_MEMORY | units of bytes (default is 4Gi) | Memory requests for the Argo MinIO server"
@@ -33,7 +34,7 @@ export API_VERSION="$3"
3334HELM_CHARTS_BASE_PATH=$( realpath " $( dirname " $0 " ) " )
3435
3536# Create namespace if it does not exist
36- kubectl create namespace " ${NAMESPACE} " --dry-run=client -o yaml | kubectl apply -f -
37+ kubectl create namespace " ${NAMESPACE:- phoenix } " --dry-run=client -o yaml | kubectl apply -f -
3738
3839# Argo
3940export ARGO_RELEASE_NAME=argo
You can’t perform that action at this time.
0 commit comments