Skip to content

Commit

Permalink
update doc to get kserve value
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayJagan committed Mar 8, 2024
1 parent 3ad878b commit 52b6c9d
Show file tree
Hide file tree
Showing 15 changed files with 409 additions and 5 deletions.
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,8 @@ CLEANFILES += odh-manifests/*

.PHONY: api-docs
api-docs: crd-ref-docs ## Creates API docs using https://github.com/elastic/crd-ref-docs
$(CRD_REF_DOCS) --source-path ./apis --output-path ./docs/api-overview.md --renderer markdown --config ./crd-ref-docs.config.yaml
##@ Build

$(CRD_REF_DOCS) --source-path ./ --output-path ./docs/api-overview.md --renderer markdown --config ./crd-ref-docs.config.yaml && \
egrep -v '\.io/[^v][^1].*)$$' ./docs/api-overview.md > temp.md && mv ./temp.md ./docs/api-overview.md
.PHONY: build
build: generate fmt vet ## Build manager binary.
go build -o bin/manager main.go
Expand Down
2 changes: 2 additions & 0 deletions apis/infrastructure/v1/groupversion_info.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// +groupName=datasciencecluster.opendatahub.io
package v1
1 change: 1 addition & 0 deletions components/codeflare/codeflare.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Package codeflare provides utility functions to config CodeFlare as part of the stack
// which makes managing distributed compute infrastructure in the cloud easy and intuitive for Data Scientists
// +groupName=datasciencecluster.opendatahub.io
package codeflare

import (
Expand Down
1 change: 1 addition & 0 deletions components/component.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// +groupName=datasciencecluster.opendatahub.io
package components

import (
Expand Down
1 change: 1 addition & 0 deletions components/dashboard/dashboard.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Package dashboard provides utility functions to config Open Data Hub Dashboard: A web dashboard that displays
// installed Open Data Hub components with easy access to component UIs and documentation
// +groupName=datasciencecluster.opendatahub.io
package dashboard

import (
Expand Down
1 change: 1 addition & 0 deletions components/datasciencepipelines/datasciencepipelines.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Package datasciencepipelines provides utility functions to config Data Science Pipelines:
// Pipeline solution for end to end MLOps workflows that support the Kubeflow Pipelines SDK and Tekton
// +groupName=datasciencecluster.opendatahub.io
package datasciencepipelines

import (
Expand Down
1 change: 1 addition & 0 deletions components/kserve/kserve.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Package kserve provides utility functions to config Kserve as the Controller for serving ML models on arbitrary frameworks
// +groupName=datasciencecluster.opendatahub.io
package kserve

import (
Expand Down
1 change: 1 addition & 0 deletions components/kueue/kueue.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// +groupName=datasciencecluster.opendatahub.io
package kueue

import (
Expand Down
1 change: 1 addition & 0 deletions components/modelmeshserving/modelmeshserving.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Package modelmeshserving provides utility functions to config MoModelMesh, a general-purpose model serving management/routing layer
// +groupName=datasciencecluster.opendatahub.io
package modelmeshserving

import (
Expand Down
1 change: 1 addition & 0 deletions components/modelregistry/modelregistry.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Package modelregistry provides utility functions to config ModelRegistry, an ML Model metadata repository service
// +groupName=datasciencecluster.opendatahub.io
package modelregistry

import (
Expand Down
1 change: 1 addition & 0 deletions components/ray/ray.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Package ray provides utility functions to config Ray as part of the stack
// which makes managing distributed compute infrastructure in the cloud easy and intuitive for Data Scientists
// +groupName=datasciencecluster.opendatahub.io
package ray

import (
Expand Down
1 change: 1 addition & 0 deletions components/trustyai/trustyai.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Package trustyai provides utility functions to config TrustyAI, a bias/fairness and explainability toolkit
// +groupName=datasciencecluster.opendatahub.io
package trustyai

import (
Expand Down
1 change: 1 addition & 0 deletions components/workbenches/workbenches.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Package workbenches provides utility functions to config Workbenches to secure Jupyter Notebook in Kubernetes environments with support for OAuth
// +groupName=datasciencecluster.opendatahub.io
package workbenches

import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ spec:
This can be set to 'Serverless' or 'RawDeployment'. The
value specified in this field will be used to set the default
deployment mode in the 'inferenceservice-config' configmap
for Kserve
for Kserve If no default deployment mode is specified, Kserve
will use Serverless mode
enum:
- Serverless
- RawDeployment
Expand Down
Loading

0 comments on commit 52b6c9d

Please sign in to comment.