Open
Description
When I create an Scylla node on AWS instance with the following user data , the yaml is ignored. The cluster comes up with a random name.
seed_exp.json:
{
"scylla_yaml": {
"cluster_name": "FooBarExperimental",
"experimental": true,
"alternator_port" : 8000,
"alternator_write_isolation" : "only_rmw_uses_lwt"
},
"start_scylla_on_first_boot": true
}
Once the experimental
field is removed, the node creation goes through.
How the instance was created? I used the scylla machine image for us-east-1.
aws ec2 run-instances --image-id ami-0bf4f7af3188c4304 --instance-type i4i.xlarge --key-name xyz --count 1 --ebs-optimized --network-interfaces 'AssociatePublicIpAddress=true,DeviceIndex=0, Groups=[abc]' --tag-specifications 'ResourceType=instance,Tags=[{Key=Name,Value=test-1}]' --placement 'AvailabilityZone=us-east-1a' --user-data file://seed_exp.json/
cc: @gcarmin