You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deploying this solution with a Nvidia based setup leads to three modules failing to build due to absence of the NGC_CLI_API_KEY key in the passed secret:
[Container] Running command if [ -n "${NGC_CLI_API_KEY+x}" ]; then echo $NGC_CLI_API_KEY | docker login --username '$oauthtoken' --password-stdin nvcr.io; else echo "NGC_CLI_API_KEY is unset"; if [[ $NAME == *-nim ]]; then echo "NGC_CLI_API_KEY required to build NIM containers, exiting"; JSON_DATA=$( jq -n --arg uid "$NAME" '{Status:"SUCCESS", Reason:"Configuration Complete","UniqueId":$uid, "Data":"Application has completed configuration."}' ); curl -X PUT -H "Content-Type:" --data-binary "$JSON_DATA" "$WAIT_CONDITION_HANDLE"; fi fi
NGC_CLI_API_KEY is unset
NGC_CLI_API_KEY required to build NIM containers, exiting
This key value pair NGC_CLI_API_KEY is not mentioned in the main README.md in favor of API_KEY and ORG, but is instead buried in the asset workflows README e.g. alphabind
This would require a duplication of information for the final secret, e.g.:
Deploying this solution with a Nvidia based setup leads to three modules failing to build due to absence of the
NGC_CLI_API_KEY
key in the passed secret:This key value pair
NGC_CLI_API_KEY
is not mentioned in the mainREADME.md
in favor ofAPI_KEY
andORG
, but is instead buried in the asset workflows README e.g. alphabindThis would require a duplication of information for the final secret, e.g.:
For ease of use, could we either:
NGC_CLI_API_KEY
NGC_CLI_ORG
to instead point atAPI_KEY
/ORG
The text was updated successfully, but these errors were encountered: