Skip to content

Commit

Permalink
Bumping up version to 0.10.0 for all the manifests. (kubeflow#2615)
Browse files Browse the repository at this point in the history
Signed-off-by: rachitchauhan43 <rachitchauhan43@gmail.com>

Signed-off-by: rachitchauhan43 <rachitchauhan43@gmail.com>

Signed-off-by: rachitchauhan43 <rachitchauhan43@gmail.com>
  • Loading branch information
rachitchauhan43 authored Dec 21, 2022
1 parent 01a08fb commit 89c7e4f
Show file tree
Hide file tree
Showing 14 changed files with 60,279 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/kserve-crd/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: kserve-crd
version: v0.10.0-rc0
version: v0.10.0
description: Helm chart for deploying kserve crds
keywords:
- kserve
Expand Down
1,817 changes: 1,817 additions & 0 deletions charts/kserve-crd/serving.kserve.io_clusterservingruntimes.yaml

Large diffs are not rendered by default.

122 changes: 122 additions & 0 deletions charts/kserve-crd/serving.kserve.io_inferencegraphs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@

---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.4.0
creationTimestamp: null
name: inferencegraphs.serving.kserve.io
spec:
group: serving.kserve.io
names:
kind: InferenceGraph
listKind: InferenceGraphList
plural: inferencegraphs
shortNames:
- ig
singular: inferencegraph
scope: Namespaced
versions:
- additionalPrinterColumns:
- jsonPath: .status.url
name: URL
type: string
- jsonPath: .status.conditions[?(@.type=='Ready')].status
name: Ready
type: string
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
name: v1alpha1
schema:
openAPIV3Schema:
properties:
apiVersion:
type: string
kind:
type: string
metadata:
type: object
spec:
properties:
nodes:
additionalProperties:
properties:
routerType:
enum:
- Sequence
- Splitter
- Ensemble
- Switch
type: string
steps:
items:
properties:
condition:
type: string
data:
type: string
name:
type: string
nodeName:
type: string
serviceName:
type: string
serviceUrl:
type: string
weight:
format: int64
type: integer
type: object
type: array
required:
- routerType
type: object
type: object
required:
- nodes
type: object
status:
properties:
annotations:
additionalProperties:
type: string
type: object
conditions:
items:
properties:
lastTransitionTime:
type: string
message:
type: string
reason:
type: string
severity:
type: string
status:
type: string
type:
type: string
required:
- status
- type
type: object
type: array
observedGeneration:
format: int64
type: integer
url:
type: string
type: object
type: object
served: true
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
Loading

0 comments on commit 89c7e4f

Please sign in to comment.