GorgeousPuppy74 user credentials cannot be set from the configuration files - they are dynamically created (and can also be revoked by the user).
Hi GorgeousPuppy74 , you can get the key/secret pair from the ClearML UI.
I think this is the documentation you were looking for: None
You can access the settings page via the profile icon at the top right.
so single script i can create master & worker.. this my concern sir.. if you csnt help also let me know.. thanks
Also, please don't send messages to the channel when posting in a thread
i hope u understand my concern.. i want to install clearml server & cleaerml agen together.. same script..
this will work but i need clearml_basic_token or secret key & accesss key
You can just copy a ready clearml.conf file and replace the credentials there, you don't actually need to call clearml-init
once the server is up, you cannot change it
i tell u my issue.. i created the template to come up clearml server & clearml work worker.. so our ml enginner expecting no manual authentication. they want all automation. now your case all manual.. when we want make pipeline like jenkins..we need automation.. my expectation.. only i need access key & secret key .. how to create?? other steps i created for the template.. then i will approach to my team.. thn they start cleaml enterprises solution
user creation even it will work after containers is up right
okay.. this clearml dynamic access creation how its work..
Yes, this is how to create fixed users
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
but missing part now.. queue.. this one even not there in doc..little worried now 🥶
SuccessfulKoala55 CostlyOstrich36 do u have any idea??
my concern.. is .. if you can explain how to create access key & secret key from backend then all good..
i am saying in the UI, if u give all in UI .. then give to UI.. why u mixing all.. becz of this password auth issue.. i am trying to do all from backend
You need to authenticate your communication with the ClearML server initially somehow, no? Otherwise basically anyone can create credentials on your server...
After you have authentication you can create credentials via the terminal.
You can create up to 10 sets of credentials per user so if you plan on creating new credentials every time you want to run a job - this is an incorrect approach.
Therefor - you should create the credentials once and then use them as environment variables as you were suggested to do.
Makes sense?
You can open developer tools (F12) and see in the UI what is happening when you create a new queue 🙂
@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
Can you link to the the documentation you're referring to?
this is my scirpt working fine.. thnks for the help..
if u say clearml have good security.. i dont agree.. i dont see any username & password authentication.. its open server
It's totally possible, I think you need to do research on it. There are probably a few ways to do it too. I see CLEARML_API_ACCESS_KEY
& CLEARML_API_SECRET_KEY
in the docker compose - None
You should do some more digging around. One option is to see how you can generate a key/secret pair and inject them via your script into mongoDB where the credentials are stored. Another way is to see how the UI is using/getting these credentials when the server is spun up.
You can also create a "template" database with a key & secret that are already known and then spin the server up with that data already in it..
So you can definitely create a single script that can do all of this.
but i need it.. from terminal.. how to create using terminal in clearml server. this one i needed.. how to create access key & secret key using terminal