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
<DashboardHelpTooltipcontent="Deployment modes define which technology stack will be used to deploy a model, offering different levels of management and scalability. The default deployment mode will be automatically selected during deployment."/>
153
+
<Popover
154
+
bodyContent={
155
+
<>
156
+
<div>
157
+
The selected deployment mode determines how the model server runs in
158
+
your environment. The default deployment mode will be automatically
159
+
selected for users during deployment.
160
+
</div>
161
+
<ul
162
+
style={{
163
+
listStyleType: 'disc',
164
+
paddingLeft: '1.5rem',
165
+
marginTop: '0.5rem',
166
+
marginBottom: 0,
167
+
}}
168
+
>
169
+
<li>
170
+
<strong>Knative Serverless</strong>: Autoscale to and from zero based
171
+
on request volume with minimal customization. Recommended for most
172
+
workloads.
173
+
</li>
174
+
<li>
175
+
<strong>KServe RawDeployment</strong>: Always running with no
176
+
autoscaling. Use for custom serving setups or if your model needs to
0 commit comments