diff --git a/latest/index.html b/latest/index.html index 0f43f49..a89615d 100644 --- a/latest/index.html +++ b/latest/index.html @@ -1127,8 +1127,8 @@
Creating a virtual machine with plugin
-
$ kubectl vm create -os ubuntu -n boot # Using latest operating system version
-$ kubectl vm create -os ubuntu:22.04 -n boot # Using exact operating system version
+
$ kubectl vm create my-vm -os ubuntu -n boot # Using latest operating system version
+$ kubectl vm create my-vm -os ubuntu:22.04 -n boot # Using exact operating system version
@@ -1138,7 +1138,7 @@
Providing explicit authorized keys file to plugin
$ echo "ssh-rsa AAAAB3N... some-key" >> authorized_keys # Create a list of SSH authorized keys
-$ kubectl vm create -os ubuntu -auth-keys authorized_keys -n boot # Using latest operating system version
+$ kubectl vm create my-vm -os ubuntu -auth-keys authorized_keys -n boot # Using latest operating system version
@@ -1248,8 +1248,8 @@

Providing explicit computing resource to a new virtual machine with a plugin
-
$ kubectl vm create -os ubuntu -cpu 1.0 -mem 512Mi -n boot
-$ kubectl vm create -os ubuntu -cpu '1.0/0.5' -mem '512Mi/256Mi' -n boot # Different requests and limits
+
$ kubectl vm create my-vm -os ubuntu -cpu 1.0 -mem 512Mi -n boot
+$ kubectl vm create my-vm -os ubuntu -cpu '1.0/0.5' -mem '512Mi/256Mi' -n boot # Different requests and limits
@@ -1486,7 +1486,7 @@
Adding authorized keys to new virtual machine with kubectl plugin
-
$ kubectl vm create -os ubuntu -auth-keys /path/to/authorized_keys.file -n boot
+
$ kubectl vm create my-vm -os ubuntu -auth-keys /path/to/authorized_keys.file -n boot
@@ -2813,7 +2813,7 @@

3
Creating a virtual machine with plugin
-
$ kubectl vm create -os ubuntu -n team-beta # Like in any kubectl command, -n flag sets namespace name
+
$ kubectl vm create my-vm -os ubuntu -n team-beta # Like in any kubectl command, -n flag sets namespace name
@@ -3392,7 +3392,7 @@

5. Pricing