If you are using the current version of Cumulus NetQ, the content on this page may not be up to date. The current version of the documentation is available here. If you are redirected to the main page of the user guide, then this page may have been renamed; please search for it there.

bootstrap

netq bootstrap refresh

Syntax

netq bootstrap refresh 
    <text-tarball-name> 
    [ecr-access-key <text-ecr-access-key> ecr-secret-key <text-ecr-secret-key>]
    [s3-access-key <text-s3-access-key> s3-secret-key <text-s3-secret-key>]

Required Arguments

ArgumentValueDescription
NA<text-tarball-name>Full path of the installation file, for example, /mnt/installables/netq-bootstrap-4.0.0.tgz

Options

OptionValueDescription
ecr-access-key<text-ecr-access-key>AWS access key ID
ecr-secret-key<text-ecr-secret-key>AWS secret key ID
s3-access-key<text-s3-access-key>AWS S3 access key ID
s3-secret-key<text-s3-secret-key>AWS S3 secret key ID

None


netq bootstrap reset

Reset the node to prepare it for loading the installation program. In on-premises deployments with database on site, you can choose whether to save the current data or discard it (default) during the reset process. NetQ saves all data by default in remotely hosted database deployments.

Syntax

netq bootstrap reset
    [keep-db | purge-db]
    [purge-images]

Required Arguments

None

Options

OptionValueDescription
keep-dbNASave existing data before resetting the node. Only applies to deployments with local databases.
purge-dbNADiscard existing data when resetting the node. Only applies to deployments with local databases.
purge-imagesNADiscard Docker images when resetting the node. Only applies to deployments with local databases.

Sample Usage

Prepare node for bootstrapping and discard data:

cumulus@switch:~$ netq bootstrap reset

Prepare node for bootstrapping while keeping existing data:

cumulus@switch:~$ netq bootstrap reset keep-db

None