SuccessfulKoala55 CostlyOstrich36 thanks for the help.. i created creds.. using this command
curl -s -u "antony:antony"
now i need help to bypass clearml-init manual paste key its wont support .. any other bypass is available
The reason am asking.. while agen is spin up.. it will add queue also ..
You can just copy a ready clearml.conf file and replace the credentials there, you don't actually need to call clearml-init
Also, please don't send messages to the channel when posting in a thread
@Jake H.
#!/bin/bash
# Get the access key and secret key from the API response
response=$(curl -s -u "antony:antony"
)
access_key=$(echo "$response" | jq -r '.data.credentials.access_key')
secret_key=$(echo "$response" | jq -r '.data.credentials.secret_key')
# Echo the access key and secret key
echo "Access Key: $access_key"
echo "Secret Key: $secret_key"
# Verify the presence of access key and secret key
if [[ -n "$access_key" && -n "$secret_key" ]]; then
echo "Access key and secret key are set."
else
echo "Access key or secret key is missing."
fi
this is my scirpt working fine.. thnks for the help..
but missing part now.. queue.. this one even not there in doc..little worried now 🥶
SuccessfulKoala55 CostlyOstrich36 do u have any idea??
You can open developer tools (F12) and see in the UI what is happening when you create a new queue 🙂