<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Tasks on OME</title><link>https://ome-projects.github.io/ome/docs/tasks/</link><description>Recent content in Tasks on OME</description><generator>Hugo</generator><language>en</language><lastBuildDate>Sun, 12 Jul 2026 21:48:17 -0700</lastBuildDate><atom:link href="https://ome-projects.github.io/ome/docs/tasks/index.xml" rel="self" type="application/rss+xml"/><item><title>Deploy a Simple Inference Service</title><link>https://ome-projects.github.io/ome/docs/tasks/run-workloads/deploy-inference-service/</link><pubDate>Tue, 14 Mar 2023 00:00:00 +0000</pubDate><guid>https://ome-projects.github.io/ome/docs/tasks/run-workloads/deploy-inference-service/</guid><description>&lt;p&gt;This page shows you how to deploy a simple inference service using OME. You&amp;rsquo;ll learn how to create an InferenceService that serves a pre-trained model for real-time inference using SGLang and OpenAI-compatible APIs.&lt;/p&gt;
&lt;h2 id="before-you-begin"&gt;
Before you begin
&lt;a href="#before-you-begin" class="anchor-link"&gt;
 &lt;svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" width="24" height="24" viewBox="0 0 24 24"&gt;
 &lt;path d="M0 0h24v24H0z" fill="none"&gt;&lt;/path&gt;
 &lt;path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"&gt;&lt;/path&gt;
&lt;/svg&gt;

&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;You need to have the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A Kubernetes cluster with OME installed&lt;/li&gt;
&lt;li&gt;&lt;code&gt;kubectl&lt;/code&gt; configured to communicate with your cluster&lt;/li&gt;
&lt;li&gt;GPU nodes available in your cluster (A100, H100, H200, or B4)&lt;/li&gt;
&lt;li&gt;Access to OME container registry (&lt;code&gt;ghcr.io/sgl-project/&lt;/code&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="step-1-verify-prerequisites"&gt;
Step 1: Verify prerequisites
&lt;a href="#step-1-verify-prerequisites" class="anchor-link"&gt;
 &lt;svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" width="24" height="24" viewBox="0 0 24 24"&gt;
 &lt;path d="M0 0h24v24H0z" fill="none"&gt;&lt;/path&gt;
 &lt;path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"&gt;&lt;/path&gt;
&lt;/svg&gt;

&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Check that OME is installed and running:&lt;/p&gt;</description></item><item><title>Run Performance Benchmarks</title><link>https://ome-projects.github.io/ome/docs/tasks/run-workloads/run-benchmarks/</link><pubDate>Tue, 14 Mar 2023 00:00:00 +0000</pubDate><guid>https://ome-projects.github.io/ome/docs/tasks/run-workloads/run-benchmarks/</guid><description>&lt;p&gt;This page shows you how to run performance benchmarks on your inference services using OME&amp;rsquo;s BenchmarkJob. You&amp;rsquo;ll learn how to test different traffic scenarios, measure performance metrics, and store results for analysis.&lt;/p&gt;
&lt;h2 id="before-you-begin"&gt;
Before you begin
&lt;a href="#before-you-begin" class="anchor-link"&gt;
 &lt;svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" width="24" height="24" viewBox="0 0 24 24"&gt;
 &lt;path d="M0 0h24v24H0z" fill="none"&gt;&lt;/path&gt;
 &lt;path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"&gt;&lt;/path&gt;
&lt;/svg&gt;

&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;You need to have the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A Kubernetes cluster with OME installed&lt;/li&gt;
&lt;li&gt;&lt;code&gt;kubectl&lt;/code&gt; configured to communicate with your cluster&lt;/li&gt;
&lt;li&gt;An InferenceService deployed and ready&lt;/li&gt;
&lt;li&gt;Access to storage for benchmark results (OCI Object Storage or PVC)&lt;/li&gt;
&lt;li&gt;OME benchmark tool image available&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="step-1-verify-prerequisites"&gt;
Step 1: Verify prerequisites
&lt;a href="#step-1-verify-prerequisites" class="anchor-link"&gt;
 &lt;svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" width="24" height="24" viewBox="0 0 24 24"&gt;
 &lt;path d="M0 0h24v24H0z" fill="none"&gt;&lt;/path&gt;
 &lt;path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"&gt;&lt;/path&gt;
&lt;/svg&gt;

&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Check that your inference service is running:&lt;/p&gt;</description></item></channel></rss>