Skip to content

Commit

Permalink
Deployed e64ed94 to master with MkDocs 1.5.3 and mike 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 5, 2023
1 parent 7df37ab commit b5aed70
Show file tree
Hide file tree
Showing 6 changed files with 181 additions and 165 deletions.
20 changes: 18 additions & 2 deletions master/get_started/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1118,9 +1118,25 @@ <h3 id="install-kind-kubernetes-in-docker">Install Kind (Kubernetes in Docker)<a
<h3 id="install-the-kubernetes-cli">Install the Kubernetes CLI<a class="headerlink" href="#install-the-kubernetes-cli" title="Permanent link"></a></h3>
<p>The <a href="https://kubernetes.io/docs/tasks/tools/install-kubectl" target="_blank">Kubernetes CLI (<code>kubectl</code>)</a>, allows you to run commands against Kubernetes clusters. You can use <code>kubectl</code> to deploy applications, inspect and manage cluster resources, and view logs.</p>
<h2 id="install-the-kserve-quickstart-environment">Install the KServe "Quickstart" environment<a class="headerlink" href="#install-the-kserve-quickstart-environment" title="Permanent link"></a></h2>
<p>You can get started with a local deployment of KServe by using <em>KServe Quick installation script on Kind</em>:</p>
<div class="highlight"><pre><span></span><code>curl<span class="w"> </span>-s<span class="w"> </span><span class="s2">"https://raw.githubusercontent.com/kserve/kserve/release-0.11/hack/quick_install.sh"</span><span class="w"> </span><span class="p">|</span><span class="w"> </span>bash
<ol>
<li>
<p>After having kind installed, create a <code>kind</code> cluster with:</p>
<p><div class="highlight"><pre><span></span><code>kind<span class="w"> </span>create<span class="w"> </span>cluster
</code></pre></div>
2. Then run:</p>
</li>
</ol>
<p><div class="highlight"><pre><span></span><code>kubectl<span class="w"> </span>config<span class="w"> </span>get-contexts
</code></pre></div>
It should list out a list of contexts you have, one of them should be <code>kind-kind</code>. Then run:</p>
<p><div class="highlight"><pre><span></span><code>kubectl<span class="w"> </span>config<span class="w"> </span>use-context<span class="w"> </span>kind-kind
</code></pre></div>
to use this context
3. You can then get started with a local deployment of KServe by using <em>KServe Quick installation script on Kind</em>:</p>
<pre><code>```bash
curl -s "https://raw.githubusercontent.com/kserve/kserve/release-0.11/hack/quick_install.sh" | bash
```
</code></pre>
</article>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion master/reference/swagger-ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1396,7 +1396,7 @@ <h1>
</a>
<h1 id="open-inference-protocol-api-specification">Open Inference Protocol API Specification<a class="headerlink" href="#open-inference-protocol-api-specification" title="Permanent link"></a></h1>
<h2 id="rest">REST<a class="headerlink" href="#rest" title="Permanent link"></a></h2>
<p><iframe class="swagger-ui-iframe" frameborder="0" id="8a66d7ef" src="swagger-8a66d7ef.html" style="overflow:hidden;width:100%;" width="100%"></iframe></p>
<p><iframe class="swagger-ui-iframe" frameborder="0" id="1ebf3f67" src="swagger-1ebf3f67.html" style="overflow:hidden;width:100%;" width="100%"></iframe></p>
<h2 id="grpc">GRPC<a class="headerlink" href="#grpc" title="Permanent link"></a></h2>
<h3 id="serverlive">ServerLive<a class="headerlink" href="#serverlive" title="Permanent link"></a></h3>
<p>The ServerLive API indicates if the inference server is able to receive
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
}

const resize_ob = new ResizeObserver(function(entries) {
parent.update_swagger_ui_iframe_height("8a66d7ef");
parent.update_swagger_ui_iframe_height("1ebf3f67");
});

// start observing for resizing
Expand Down
2 changes: 1 addition & 1 deletion master/search/search_index.json

Large diffs are not rendered by default.

Loading

0 comments on commit b5aed70

Please sign in to comment.