mirror of https://github.com/kubernetes/kops.git
update cli docs
This commit is contained in:
parent
e1136f6d9a
commit
2d6d7ec4ad
|
|
@ -23,7 +23,7 @@ kops toolbox instance-selector [flags]
|
|||
kops toolbox instance-selector my-spot-mig --usage-class spot --flexible
|
||||
|
||||
## Create a best-practices on-demand instance-group with custom vcpus and memory range filters
|
||||
kops toolbox instance-selector ondemand-ig --vcpus-min=2 --vcpus-max=4 --memory-min 2048 --memory-max 4096
|
||||
kops toolbox instance-selector ondemand-ig --vcpus-min=2 --vcpus-max=4 --memory-min 2gb --memory-max 4gb
|
||||
```
|
||||
|
||||
### Options
|
||||
|
|
@ -38,18 +38,18 @@ kops toolbox instance-selector [flags]
|
|||
--dry-run If true, only print the object that would be sent, without sending it. This flag can be used to create a cluster YAML or JSON manifest.
|
||||
--ena-support Instance types where ENA is supported or required
|
||||
--flexible Retrieves a group of instance types spanning multiple generations based on opinionated defaults and user overridden resource filters
|
||||
--gpu-memory-total string Number of GPUs' total memory (Example: 4 GiB) (sets --gpu-memory-total-min and -max to the same value)
|
||||
--gpu-memory-total-max string Maximum Number of GPUs' total memory (Example: 4 GiB) If --gpu-memory-total-min is not specified, the lower bound will be 0
|
||||
--gpu-memory-total-min string Minimum Number of GPUs' total memory (Example: 4 GiB) If --gpu-memory-total-max is not specified, the upper bound will be infinity
|
||||
--gpu-memory-total string Number of GPUs' total memory (Example: 4gb) (sets --gpu-memory-total-min and -max to the same value)
|
||||
--gpu-memory-total-max string Maximum Number of GPUs' total memory (Example: 4gb) If --gpu-memory-total-min is not specified, the lower bound will be 0
|
||||
--gpu-memory-total-min string Minimum Number of GPUs' total memory (Example: 4gb) If --gpu-memory-total-max is not specified, the upper bound will be infinity
|
||||
--gpus int Total number of GPUs (Example: 4) (sets --gpus-min and -max to the same value)
|
||||
--gpus-max int Maximum Total number of GPUs (Example: 4) If --gpus-min is not specified, the lower bound will be 0
|
||||
--gpus-min int Minimum Total number of GPUs (Example: 4) If --gpus-max is not specified, the upper bound will be infinity
|
||||
-h, --help help for instance-selector
|
||||
--ig-count int Number of instance groups to create w/ different vcpus-to-memory-ratios starting at 1:2 and doubling.
|
||||
--max-results int Maximum number of instance types to return back (default 20)
|
||||
--memory string Amount of memory available (Example: 4 GiB) (sets --memory-min and -max to the same value)
|
||||
--memory-max string Maximum Amount of memory available (Example: 4 GiB) If --memory-min is not specified, the lower bound will be 0
|
||||
--memory-min string Minimum Amount of memory available (Example: 4 GiB) If --memory-max is not specified, the upper bound will be infinity
|
||||
--memory string Amount of memory available (Example: 4gb) (sets --memory-min and -max to the same value)
|
||||
--memory-max string Maximum Amount of memory available (Example: 4gb) If --memory-min is not specified, the lower bound will be 0
|
||||
--memory-min string Minimum Amount of memory available (Example: 4gb) If --memory-max is not specified, the upper bound will be infinity
|
||||
--network-interfaces int Number of network interfaces (ENIs) that can be attached to the instance (sets --network-interfaces-min and -max to the same value)
|
||||
--network-interfaces-max int Maximum Number of network interfaces (ENIs) that can be attached to the instance If --network-interfaces-min is not specified, the lower bound will be 0
|
||||
--network-interfaces-min int Minimum Number of network interfaces (ENIs) that can be attached to the instance If --network-interfaces-max is not specified, the upper bound will be infinity
|
||||
|
|
|
|||
Loading…
Reference in New Issue