Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Temporary release — Temporary release of a chassis assumes that the chassis will be added back into the cluster at a later time. Releasing a chassis lets you deallocate its allows deallocating the cluster resources, such as IP Addresses, or wipe and reset its the configuration.

Once the chassis is powered off, you can release the chassis from the Swarm cluster:

...

Code Block
languagebash
platform add adminuser 	
	[--askpassword]
	[--username <username>]
	[--password <user password>]
	[--update]

The --askpassword flag lets you avoid allows avoiding specifying a password via using the command line by providing the password via using stdin. When this flag is used, you'll be prompted a prompt displays to enter a new/updated password for the user. You can also use the The Linux pipe functionality can be used:

Code Block
languagebash
cat password.txt | platform add adminuser --askpassword --username admin --update

...