yangwwei commented on a change in pull request #81: [YUNIKORN-28] Support
validating yunikorn-configs before admitting it
URL:
https://github.com/apache/incubator-yunikorn-k8shim/pull/81#discussion_r393371996
##########
File path: deployments/admission-controllers/scheduler/admission_util.sh
##########
@@ -46,6 +46,42 @@ delete_resources() {
return 0
}
+updateEnvVars() {
+ # update environment variables
+ while true; do
+ case $1 in
+ -e|--env)
+ shift
+ if [ -z "$1" ]; then
+ echo "empty argument to -e|--env flag"
+ exit 1
+ fi
+ setEnvCmd=$1
+ case $setEnvCmd in
+ *=*)
+ echo "Update environment variable: $setEnvCmd"
+ eval "$setEnvCmd"
Review comment:
why not export the environment variables here?
so we don't need that in `create_resources()`
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]