Skip to content

Commit

Permalink
feat(blob/artifact): add blob domain in config (#1154)
Browse files Browse the repository at this point in the history
Because

blob service in artifact need the config to know the its domain

This commit

add the blob domain in config for different environment
  • Loading branch information
Yougigun authored Nov 18, 2024
1 parent ef82953 commit a432a60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion charts/core/templates/artifact-backend/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,6 @@ data:
host: {{ template "core.milvus" . }}
port: {{ template "core.milvus.port" . }}
filetoembeddingworker:
numberofworkers: {{ .Values.artifactBackend.numberOfWorkers }}
numberofworkers: {{ .Values.artifactBackend.numberOfWorkers }}
blob:
hostport: {{ .Values.artifactBackend.blob.hostport }}
2 changes: 2 additions & 0 deletions charts/core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,8 @@ artifactBackend:
rootpwd: minioadmin
bucketname: instill-ai-knowledge-bases
numberOfWorkers: 20
blob:
hostport: http://localhost:8080
# -- The configuration of console
console:
# -- Enable console deployment or not
Expand Down

0 comments on commit a432a60

Please sign in to comment.