docs/subcommands/nodepool_create.md in knife-ionoscloud-5.1.1 vs docs/subcommands/nodepool_create.md in knife-ionoscloud-5.1.2

- old
+ new

@@ -13,11 +13,11 @@ ### Required options: * datacenter\_id * cluster\_id * name -* version +* k8s\_version * node\_count * cpu\_family * cores * ram * availability\_zone @@ -34,14 +34,14 @@ iD of the Kubernetes cluster (required) name: --name NAME, -n NAME name of the Kubernetes node pool (required) - version: --version VERSION, -v VERSION - the version for the Kubernetes cluster. (required) + k8s_version: --version VERSION, -v VERSION + the version for the Kubernetes Nodepool. (required) - maintenance_day: --maintenance-day MAINTENANCE_DAY, -d MAINTENANCE_DAY + maintenance_day: --maintenance-day MAINTENANCE_DAY day Of the week when to perform the maintenance. maintenance_time: --maintenance-time MAINTENANCE_TIME, -t MAINTENANCE_TIME time Of the day when to perform the maintenance. @@ -76,10 +76,16 @@ an array of additional private LANs attached to worker nodes public_ips: --ips PUBLIC_IP [PUBLIC_IP] optional array of reserved public IP addresses to be used by the nodes. IPs must be from same location as the data center used for the node pool. The array must contain one extra IP than maximum number of nodes could be. (nodeCount+1 if fixed node amount or maxNodeCount+1 if auto scaling is used) The extra provided IP Will be used during rebuilding of nodes. + labels: --labels LABEL [LABEL] + map of labels attached to node pool + + annotations: --annotations ANNOTATION [ANNOTATION] + map of annotations attached to node pool + ionoscloud_username: --username USERNAME, -u USERNAME your Ionoscloud username (required) ionoscloud_password: --password PASSWORD, -p PASSWORD your Ionoscloud password (required) @@ -89,7 +95,7 @@ ``` ## Example ```text -knife ionoscloud nodepool create --datacenter-id DATACENTER_ID --cluster-id CLUSTER_ID --name NAME --version VERSION --maintenance-day MAINTENANCE_DAY --maintenance-time MAINTENANCE_TIME --node-count NODE_COUNT --cpu-family CPU_FAMILY --cores CORES --ram RAM --availability-zone AVAILABILITY_ZONE --storage-type STORAGE_TYPE --storage-size STORAGE_SIZE --min-node-count MIN_NODE_COUNT --max-node-count MAX_NODE_COUNT --lans LAN_ID [LAN_ID] --ips PUBLIC_IP [PUBLIC_IP] --username USERNAME --password PASSWORD --extra-config EXTRA_CONFIG_FILE_PATH +knife ionoscloud nodepool create --datacenter-id DATACENTER_ID --cluster-id CLUSTER_ID --name NAME --version VERSION --maintenance-day MAINTENANCE_DAY --maintenance-time MAINTENANCE_TIME --node-count NODE_COUNT --cpu-family CPU_FAMILY --cores CORES --ram RAM --availability-zone AVAILABILITY_ZONE --storage-type STORAGE_TYPE --storage-size STORAGE_SIZE --min-node-count MIN_NODE_COUNT --max-node-count MAX_NODE_COUNT --lans LAN_ID [LAN_ID] --ips PUBLIC_IP [PUBLIC_IP] --labels LABEL [LABEL] --annotations ANNOTATION [ANNOTATION] --username USERNAME --password PASSWORD --extra-config EXTRA_CONFIG_FILE_PATH ```