Skip to content

Commit 371aa6e

Browse files
committed
Update AI Model Serving for MicroShift
1 parent fca3f26 commit 371aa6e

14 files changed

+235
-59
lines changed

assets/optional/ai-model-serving/kserve/configmap/inferenceservice.yaml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,20 @@ data:
430430
# ModelMesh https://kserve.github.io/website/master/admin/modelmesh/
431431
"defaultDeploymentMode": "Serverless"
432432
}
433-
433+
434+
# ====================================== SERVICE CONFIGURATION ======================================
435+
# Example
436+
service: |-
437+
{
438+
"serviceClusterIPNone": false
439+
}
440+
service: |-
441+
{
442+
# ServiceClusterIPNone is a boolean flag to indicate if the service should have a clusterIP set to None.
443+
# If the DeploymentMode is Raw, the default value for ServiceClusterIPNone if not set is false
444+
# "serviceClusterIPNone": false
445+
}
446+
434447
# ====================================== METRICS CONFIGURATION ======================================
435448
# Example
436449
metricsAggregator: |-
@@ -584,3 +597,8 @@ data:
584597
{
585598
"autoMountServiceAccountToken": true
586599
}
600+
601+
service: |-
602+
{
603+
"serviceClusterIPNone": true
604+
}

assets/optional/ai-model-serving/kserve/crd/full/serving.kserve.io_inferencegraphs.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,8 @@ spec:
527527
properties:
528528
name:
529529
type: string
530+
request:
531+
type: string
530532
required:
531533
- name
532534
type: object
@@ -592,6 +594,8 @@ spec:
592594
- type
593595
type: object
594596
type: array
597+
deploymentMode:
598+
type: string
595599
observedGeneration:
596600
format: int64
597601
type: integer

0 commit comments

Comments
 (0)