...
To manage profiles, navigate to the following directory: /xcompute/slurm/aws/xcompute-daemon/data/profiles
.
Create Profile
Create a Configuration File:
Start by creating a JSON file namedprofile.json
with the following content:
Expand | ||
---|---|---|
| ||
|
Submit the Profile:
Once the configuration file is ready, submit it with the followingcurl
command:Code Block curl -X POST http://localhost:5000/v1/profile \ -H 'Content-Type: application/json' \ -H 'Accept: application/json' \ -d "@profile.json"
Confirm Profile Creation:
Upon successful submission, the response will include a new profile ID, confirming that the profile has been created. Example response:Code Block {"Id": "13167214-4da7-4a53-8b09-a019046cf053"}
Update Profile
Edit the
profile.json
file according to the sample provided below:
...
After updating the profile, submit the changes with a PUT request using
curl
:Code Block curl -X PUT http://localhost:5000/v1/profile \ -H 'Content-Type: application/json' \ -d @profile.json