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

- old
+ new

@@ -22,19 +22,22 @@ the version for the Kubernetes cluster. private: --private the indicator if the cluster is public or private. Be aware that setting it to false is currently in beta phase. - gateway_ip: --gateway GATEWAY_IP - the IP address of the gateway used by the cluster. This is mandatory when `public` is set to `false` and should not be provided otherwise. - - 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. + api_subnet_allow_list: --subnets SUBNET[,SUBNET,...] + access to the K8s API server is restricted to these CIDRs. Cluster-internal traffic is not affected by this restriction. If no allowlist is specified, access is not restricted. If an IP without subnet mask is provided, the default value will be used: 32 for IPv4 and 128 for IPv6. + + s3_buckets: --s3-buckets BUCKET[,BUCKET,...] + list of S3 bucket configured for K8s usage. For now it contains only one S3 bucket used to store K8s API audit logs. + ionoscloud_username: --username USERNAME, -u USERNAME your Ionoscloud username (required) ionoscloud_password: --password PASSWORD, -p PASSWORD your Ionoscloud password (required) @@ -44,7 +47,7 @@ ``` ## Example ```text -knife ionoscloud k8s create --name NAME --version VERSION --private --gateway GATEWAY_IP --maintenance-day MAINTENANCE_DAY --maintenance-time MAINTENANCE_TIME --username USERNAME --password PASSWORD --extra-config EXTRA_CONFIG_FILE_PATH +knife ionoscloud k8s create --name NAME --version VERSION --private --maintenance-day MAINTENANCE_DAY --maintenance-time MAINTENANCE_TIME --subnets SUBNET[,SUBNET,...] --s3-buckets BUCKET[,BUCKET,...] --username USERNAME --password PASSWORD --extra-config EXTRA_CONFIG_FILE_PATH ```