@@ -118,6 +118,7 @@ A locally-focused workflow (local development, local execution) with the CLI may
118118- [ ` lean object-store properties ` ] ( #lean-object-store-properties )
119119- [ ` lean object-store set ` ] ( #lean-object-store-set )
120120- [ ` lean optimize ` ] ( #lean-optimize )
121+ - [ ` lean private-cloud add-compute ` ] ( #lean-private-cloud-add-compute )
121122- [ ` lean private-cloud start ` ] ( #lean-private-cloud-start )
122123- [ ` lean private-cloud stop ` ] ( #lean-private-cloud-stop )
123124- [ ` lean project-create ` ] ( #lean-project-create )
@@ -1818,6 +1819,34 @@ Options:
18181819
18191820_ See code: [ lean/commands/optimize.py] ( lean/commands/optimize.py ) _
18201821
1822+ ### ` lean private-cloud add-compute `
1823+
1824+ Add private cloud compute
1825+
1826+ ```
1827+ Usage: lean private-cloud add-compute [OPTIONS]
1828+
1829+ Add private cloud compute
1830+
1831+ Options:
1832+ --token TEXT The master server token
1833+ --master-domain, --master-ip TEXT
1834+ The master server domain
1835+ --master-port INTEGER The master server port
1836+ --slave-domain, --slave-ip TEXT
1837+ The slave server domain
1838+ --update Pull the latest image before starting
1839+ --no-update Do not update to the latest version
1840+ --compute TEXT Compute configuration to use
1841+ --extra-docker-config TEXT Extra docker configuration as a JSON string
1842+ --stop Stop any existing deployment
1843+ --lean-config FILE The Lean configuration file that should be used (defaults to the nearest lean.json)
1844+ --verbose Enable debug logging
1845+ --help Show this message and exit.
1846+ ```
1847+
1848+ _ See code: [ lean/commands/private_cloud/add_compute.py] ( lean/commands/private_cloud/add_compute.py ) _
1849+
18211850### ` lean private-cloud start `
18221851
18231852Start a new private cloud
@@ -1828,20 +1857,22 @@ Usage: lean private-cloud start [OPTIONS]
18281857 Start a new private cloud
18291858
18301859Options:
1831- --master Run in master mode
1832- --slave Run in slave mode
1833- --token TEXT The master server token
1834- --master-domain TEXT The master server domain
1835- --master-port INTEGER The master server port
1836- --slave-domain TEXT The slave server domain
1837- --update Pull the latest image before starting
1838- --no-update Do not update to the latest version
1839- --compute TEXT Compute configuration to use
1840- --extra-docker-config TEXT Extra docker configuration as a JSON string
1841- --stop Stop any existing deployment
1842- --lean-config FILE The Lean configuration file that should be used (defaults to the nearest lean.json)
1843- --verbose Enable debug logging
1844- --help Show this message and exit.
1860+ --master Run in master mode
1861+ --slave Run in slave mode
1862+ --token TEXT The master server token
1863+ --master-domain, --master-ip TEXT
1864+ The master server domain
1865+ --master-port INTEGER The master server port
1866+ --slave-domain, --slave-ip TEXT
1867+ The slave server domain
1868+ --update Pull the latest image before starting
1869+ --no-update Do not update to the latest version
1870+ --compute TEXT Compute configuration to use
1871+ --extra-docker-config TEXT Extra docker configuration as a JSON string
1872+ --stop Stop any existing deployment
1873+ --lean-config FILE The Lean configuration file that should be used (defaults to the nearest lean.json)
1874+ --verbose Enable debug logging
1875+ --help Show this message and exit.
18451876```
18461877
18471878_ See code: [ lean/commands/private_cloud/start.py] ( lean/commands/private_cloud/start.py ) _
0 commit comments