JoinTokens contains the tokens workers and managers need to join the swarm. JoinTokens

interface JoinTokens {
    Manager?: string;
    Worker?: string;
}

Properties

Properties

Manager?: string

The token managers can use to join the swarm.

Worker?: string

The token workers can use to join the swarm.