Skip to content

Commit

Permalink
Documentation for Boot commit 306b3aae64bb250a6a213af5f807d09b17e8d0b1
Browse files Browse the repository at this point in the history
  • Loading branch information
aerokube/boot1 committed Sep 23, 2023
1 parent 60d48c0 commit 8537e56
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions latest/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1127,8 +1127,8 @@ <h5 id="virtual-machines-create-plugin"><a class="anchor" href="#virtual-machine
<div class="listingblock">
<div class="title">Creating a virtual machine with plugin</div>
<div class="content">
<pre class="CodeRay highlight"><code data-lang="bash">$ 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</code></pre>
<pre class="CodeRay highlight"><code data-lang="bash">$ 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</code></pre>
</div>
</div>
<div class="paragraph">
Expand All @@ -1138,7 +1138,7 @@ <h5 id="virtual-machines-create-plugin"><a class="anchor" href="#virtual-machine
<div class="title">Providing explicit authorized keys file to plugin</div>
<div class="content">
<pre class="CodeRay highlight"><code data-lang="bash">$ echo &quot;ssh-rsa AAAAB3N... some-key&quot; &gt;&gt; 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</code></pre>
$ kubectl vm create my-vm -os ubuntu -auth-keys authorized_keys -n boot # Using latest operating system version</code></pre>
</div>
</div>
</div>
Expand Down Expand Up @@ -1248,8 +1248,8 @@ <h4 id="virtual-machines-resources"><a class="anchor" href="#virtual-machines-re
<div class="listingblock">
<div class="title">Providing explicit computing resource to a new virtual machine with a plugin</div>
<div class="content">
<pre class="CodeRay highlight"><code data-lang="bash">$ 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</code></pre>
<pre class="CodeRay highlight"><code data-lang="bash">$ 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</code></pre>
</div>
</div>
</div>
Expand Down Expand Up @@ -1486,7 +1486,7 @@ <h5 id="access-auth-technologies-keys"><a class="anchor" href="#access-auth-tech
<div class="listingblock">
<div class="title">Adding authorized keys to new virtual machine with kubectl plugin</div>
<div class="content">
<pre class="CodeRay highlight"><code data-lang="bash">$ kubectl vm create -os ubuntu -auth-keys /path/to/authorized_keys.file -n boot</code></pre>
<pre class="CodeRay highlight"><code data-lang="bash">$ kubectl vm create my-vm -os ubuntu -auth-keys /path/to/authorized_keys.file -n boot</code></pre>
</div>
</div>
<div class="paragraph">
Expand Down Expand Up @@ -1671,7 +1671,7 @@ <h5 id="access-auth-technologies-certs"><a class="anchor" href="#access-auth-tec
<div class="listingblock">
<div class="title">Adding trusted certification authorities to new virtual machine with kubectl plugin</div>
<div class="content">
<pre class="CodeRay highlight"><code data-lang="bash">$ kubectl vm create -os ubuntu -user-ca-keys /path/to/truster_user_ca.file -n boot</code></pre>
<pre class="CodeRay highlight"><code data-lang="bash">$ kubectl vm create my-vm -os ubuntu -user-ca-keys /path/to/truster_user_ca.file -n boot</code></pre>
</div>
</div>
</li>
Expand Down Expand Up @@ -2813,7 +2813,7 @@ <h3 id="multiple-namespaces"><a class="anchor" href="#multiple-namespaces"></a>3
<div class="listingblock">
<div class="title">Creating a virtual machine with plugin</div>
<div class="content">
<pre class="CodeRay highlight"><code data-lang="bash">$ kubectl vm create -os ubuntu -n team-beta # Like in any kubectl command, -n flag sets namespace name</code></pre>
<pre class="CodeRay highlight"><code data-lang="bash">$ kubectl vm create my-vm -os ubuntu -n team-beta # Like in any kubectl command, -n flag sets namespace name</code></pre>
</div>
</div>
</li>
Expand Down Expand Up @@ -3392,7 +3392,7 @@ <h2 id="_pricing"><a class="anchor" href="#_pricing"></a>5. Pricing</h2>
<div id="footer">
<div id="footer-text">
Version latest<br>
Last updated 2023-09-23 07:14:09 UTC
Last updated 2023-09-23 16:22:07 UTC
</div>
</div>
</body>
Expand Down

0 comments on commit 8537e56

Please sign in to comment.