You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/stackit_beta_server_create.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,23 +27,23 @@ stackit beta server create [flags]
27
27
28
28
```
29
29
--affinity-group string The affinity group the server is assigned to
30
-
--availability-zone string Availability zone
30
+
--availability-zone string The availability zone of the server
31
31
--boot-volume-delete-on-termination Delete the volume during the termination of the server. Defaults to false
32
32
--boot-volume-performance-class string Boot volume performance class
33
-
--boot-volume-size int Boot volume size (GB). Size is required for the image type boot volumes
33
+
--boot-volume-size source_typeThe size of the boot volume in GB. Must be provided when source_type is `image`
34
34
--boot-volume-source-id string ID of the source object of boot volume. It can be either 'image-id' or 'volume-id'
35
35
--boot-volume-source-type string Type of the source object of boot volume. It can be either 'image' or 'volume'
36
36
-h, --help Help for "stackit beta server create"
37
-
--image-id string ID of the image. Either image-id or boot volume is required
38
-
--keypair-name string The SSH keypair used during the server creation
37
+
--image-id string The image ID to be used for an ephemeral disk on the server. Either image-id or boot volume is required
38
+
--keypair-name string The name of the SSH keypair used during the server creation
39
39
--labels stringToString Labels are key-value string pairs which can be attached to a server. E.g. '--labels key1=value1,key2=value2,...' (default [])
40
-
--machine-type string Machine type the server shall belong to
40
+
--machine-type string Name of the type of the machine for the server. Possible values are documented in [Virtual machine flavors](https://docs.stackit.cloud/stackit/en/virtual-machine-flavors-75137231.html)
41
41
-n, --name string Server name
42
42
--network-id string ID of the network for the initial networking setup for the server creation
43
43
--network-interface-ids strings List of network interface IDs for the initial networking setup for the server creation
44
44
--security-groups strings The initial security groups for the server creation
45
45
--service-account-emails strings List of the service account mails
46
-
--user-data string User data that is provided to the server
46
+
--user-data string User data that is passed via cloud-init to the server
47
47
--volumes strings The list of volumes attached to the server
cmd.Flags().String(machineTypeFlag, "", "Machine type the server shall belong to")
143
+
cmd.Flags().String(machineTypeFlag, "", "Name of the type of the machine for the server. Possible values are documented in [Virtual machine flavors](https://docs.stackit.cloud/stackit/en/virtual-machine-flavors-75137231.html)")
144
144
cmd.Flags().String(affinityGroupFlag, "", "The affinity group the server is assigned to")
cmd.Flags().Bool(bootVolumeDeleteOnTerminationFlag, false, "Delete the volume during the termination of the server. Defaults to false")
151
-
cmd.Flags().String(imageIdFlag, "", "ID of the image. Either image-id or boot volume is required")
152
-
cmd.Flags().String(keypairNameFlag, "", "The SSH keypair used during the server creation")
151
+
cmd.Flags().String(imageIdFlag, "", "The image ID to be used for an ephemeral disk on the server. Either image-id or boot volume is required")
152
+
cmd.Flags().String(keypairNameFlag, "", "The name of the SSH keypair used during the server creation")
153
153
cmd.Flags().StringToString(labelFlag, nil, "Labels are key-value string pairs which can be attached to a server. E.g. '--labels key1=value1,key2=value2,...'")
154
154
cmd.Flags().String(networkIdFlag, "", "ID of the network for the initial networking setup for the server creation")
155
155
cmd.Flags().StringSlice(networkInterfaceIdsFlag, []string{}, "List of network interface IDs for the initial networking setup for the server creation")
156
156
cmd.Flags().StringSlice(securityGroupsFlag, []string{}, "The initial security groups for the server creation")
157
157
cmd.Flags().StringSlice(serviceAccountEmailsFlag, []string{}, "List of the service account mails")
158
-
cmd.Flags().String(userDataFlag, "", "User data that is provided to the server")
158
+
cmd.Flags().String(userDataFlag, "", "User data that is passed via cloud-init to the server")
159
159
cmd.Flags().StringSlice(volumesFlag, []string{}, "The list of volumes attached to the server")
0 commit comments