Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Administrator Guide

Screenshot 2024-04-15 at 13.16.36.png

Update Profile

  • Access Profile Editing: Click on the pencil icon to begin editing your profile.

Screenshot 2024-04-15 at 13.34.01.png
  • Modify Node Group Name: Enter the name for your node group in the designated field.

Screenshot 2024-04-18 at 10.05.28.png
  • Update IAM Instance Profile: Replace the default IAM Instance Profile string with the ARN (Amazon Resource Name) of your Worker IAM Instance Profile.

Screenshot 2024-04-18 at 10.11.03.pngScreenshot 2024-04-18 at 10.12.53.png
  • Completion: A confirmation message, "Submission Successful!" will appear once the profile has been successfully updated.

Screenshot 2024-04-18 at 10.13.20.png

Developer Guide

You can SSH into the head node to issue commands. To do this, locate your instance in the Resources tab of the CloudFormation stack, and connect to the EC2 instance.

Screenshot 2024-04-15 at 13.31.41.png

To manage profiles, navigate to the following directory: /xcompute/slurm/aws/xcompute-daemon/data/profiles.

Update Profile

  1. Edit the profile.json file according to the sample provided below:

 profile.json fields Example
{
   "Worker": {
       "IamInstanceProfile": "arn:aws:iam::374070299695:instance-profile/IntegrationInstaller-ExostellarInstanceProfile-f6FuntTOKYnn"
   },
   "NodeGroupName": "eksnodegroup"
}
  1. After updating the profile, submit the changes with a PUT request using curl:

curl -X PUT http://localhost:5000/v1/profile \
  -H 'Content-Type: application/json' \
  -d @profile.json

  • No labels