-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: addon support for chatgpt-retrieval-plugin milvus qdrant weavia…
…te (#2385)
- Loading branch information
Showing
7 changed files
with
113 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
deploy/helm/templates/addons/chatgpt-retrieval-plugin.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
apiVersion: extensions.kubeblocks.io/v1alpha1 | ||
kind: Addon | ||
metadata: | ||
name: chatgpt-retrieval-plugin | ||
labels: | ||
{{- include "kubeblocks.labels" . | nindent 4 }} | ||
"kubeblocks.io/provider": apecloud | ||
{{- if .Values.keepAddons }} | ||
annotations: | ||
helm.sh/resource-policy: keep | ||
{{- end }} | ||
spec: | ||
description: 'Deploys a ChatGPT Retrieval Plugin application in a cluster. | ||
ChatGPT Retrieval Plugin is an application for personalizing your ChatGPT dialogue through your private data.' | ||
type: Helm | ||
|
||
helm: | ||
chartLocationURL: https://jihulab.com/api/v4/projects/85949/packages/helm/stable/charts/chatgpt-retrieval-plugin-{{ default .Chart.Version .Values.versionOverride }}.tgz | ||
valuesMapping: | ||
valueMap: | ||
replicaCount: replicaCount | ||
|
||
jsonMap: | ||
tolerations: tolerations | ||
|
||
resources: | ||
cpu: | ||
requests: resources.requests.cpu | ||
limits: resources.limits.cpu | ||
memory: | ||
requests: resources.requests.memory | ||
limits: resources.limits.memory | ||
|
||
defaultInstallValues: | ||
- replicas: 1 | ||
|
||
installable: | ||
autoInstall: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
apiVersion: extensions.kubeblocks.io/v1alpha1 | ||
kind: Addon | ||
metadata: | ||
name: milvus | ||
labels: | ||
{{- include "kubeblocks.labels" . | nindent 4 }} | ||
"kubeblocks.io/provider": community | ||
{{- if .Values.keepAddons }} | ||
annotations: | ||
helm.sh/resource-policy: keep | ||
{{- end }} | ||
spec: | ||
description: 'Milvus is an open source (Apache-2.0 licensed) vector database built to power embedding similarity search and AI applications.' | ||
|
||
type: Helm | ||
|
||
helm: | ||
chartLocationURL: https://jihulab.com/api/v4/projects/85949/packages/helm/stable/charts/milvus-{{ default .Chart.Version .Values.versionOverride }}.tgz | ||
|
||
installable: | ||
autoInstall: false | ||
|
||
defaultInstallValues: | ||
- enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
apiVersion: extensions.kubeblocks.io/v1alpha1 | ||
kind: Addon | ||
metadata: | ||
name: qdrant | ||
labels: | ||
{{- include "kubeblocks.labels" . | nindent 4 }} | ||
"kubeblocks.io/provider": community | ||
{{- if .Values.keepAddons }} | ||
annotations: | ||
helm.sh/resource-policy: keep | ||
{{- end }} | ||
spec: | ||
description: 'Qdrant is an open source (Apache-2.0 licensed), vector similarity search engine and vector database.' | ||
|
||
type: Helm | ||
|
||
helm: | ||
chartLocationURL: https://jihulab.com/api/v4/projects/85949/packages/helm/stable/charts/qdrant-{{ default .Chart.Version .Values.versionOverride }}.tgz | ||
|
||
installable: | ||
autoInstall: false | ||
|
||
defaultInstallValues: | ||
- enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
apiVersion: extensions.kubeblocks.io/v1alpha1 | ||
kind: Addon | ||
metadata: | ||
name: weaviate | ||
labels: | ||
{{- include "kubeblocks.labels" . | nindent 4 }} | ||
"kubeblocks.io/provider": community | ||
{{- if .Values.keepAddons }} | ||
annotations: | ||
helm.sh/resource-policy: keep | ||
{{- end }} | ||
spec: | ||
description: 'Weaviate is an open-source (BSD-3.0 licensed) vector database. It allows you to store data objects and vector embeddings from your favorite ML-models, and scale seamlessly into billions of data objects.' | ||
|
||
type: Helm | ||
|
||
helm: | ||
chartLocationURL: https://jihulab.com/api/v4/projects/85949/packages/helm/stable/charts/weaviate-{{ default .Chart.Version .Values.versionOverride }}.tgz | ||
|
||
installable: | ||
autoInstall: false | ||
|
||
defaultInstallValues: | ||
- enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.