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
$ cyclone server 6eb76733-95b7-4867-9f83-a6ab19804e2f --local-disk --to-key-name my-nova-keypair
133
133
```
134
134
135
+
### Clone only server artifacts
136
+
137
+
The `--skip-server-creation` flag clones only images or volumes, which are used or attached to the source server. The destination server won't be created.
138
+
The example below will convert the server's local bootable disk to a bootable block storage, which can be attached to some server lately.
139
+
140
+
```sh
141
+
$ source openrc-of-the-source-project
142
+
$ cyclone server 6eb76733-95b7-4867-9f83-a6ab19804e2f --bootable-volume 64 --skip-server-creation
143
+
```
144
+
135
145
### Upload a local image file into a backup
136
146
137
147
Properties must be defined, when a backup supposed to be restored to a bootable volume.
ServerCmd.Flags().BoolP("local-disk", "", false, "convert the attached bootable volume to a local disk")
928
945
ServerCmd.Flags().BoolP("delete-volume-on-termination", "", true, "specifies whether or not to delete the attached bootable volume when the server is terminated")
929
946
ServerCmd.Flags().BoolP("bootable-disk-only", "", false, "clone only the bootable disk/volume, skipping the rest attached volumes")
947
+
ServerCmd.Flags().BoolP("skip-server-creation", "", false, "skip server creation, clone only server's artifacts: image and volumes")
0 commit comments