Skip to main content
Subnet admission has two types:
  • developer: accounts that may submit workloads.
  • provider: fleets or nodes that may join as capacity.

1. Review current admission

idyl subnet admission get --subnet <subnet>

2. Require approval for developers

idyl subnet admission set --subnet <subnet> --admission-type developer --mode approval

3. Grant developer admission

idyl subnet admission grant --subnet <subnet> --developer-account <account-id>

4. Require approval for providers

idyl subnet admission set --subnet <subnet> --admission-type provider --mode approval

5. Grant provider fleet admission

idyl subnet admission grant --subnet <subnet> --provider-fleet <fleet-id>
Grant a specific node instead:
idyl subnet admission grant --subnet <subnet> --provider-node <node-id>

6. Revoke a grant

Find the grant ID:
idyl subnet admission get --subnet <subnet>
Revoke it:
idyl subnet admission revoke --subnet <subnet> --grant <grant-id>