kserve inferenceservice chart create
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
apiVersion: serving.kserve.io/v1beta1
|
||||
kind: InferenceService
|
||||
metadata:
|
||||
name: {{ .Values.inferenceService.name }}
|
||||
namespace: {{ .Values.inferenceService.namespace }}
|
||||
labels:
|
||||
{{- include "kserve.labels" . | nindent 4 }}
|
||||
spec:
|
||||
predictor:
|
||||
runtimeClassName: {{ .Values.inferenceService.runtimeClassName }}
|
||||
model:
|
||||
modelFormat:
|
||||
name: {{ .Values.inferenceService.model.modelFormat.name }}
|
||||
{{- with .Values.inferenceService.model.args }}
|
||||
args:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
storageUri: {{ .Values.inferenceService.model.storageUri }}
|
||||
resources:
|
||||
{{- toYaml .Values.inferenceService.resources | nindent 8 }}
|
||||
Reference in New Issue
Block a user