When trying to create users using the `cluster` utility, by default users are given super user rights. The fix is to simply change [line 164 ](https://github.com/oracle-quickstart/oci-hpc/blob/6c9652eea6a71e866bdfa99b4b163ea740549adc/playbooks/roles/cluster-cli/files/cluster#L164C1-L164C73) in the following way ``` @click.option('-g', '--gid', default="9876", help='Add to this groupID') ``` to ``` @click.option('-g', '--gid', default=None, help='Add to this groupID') ```