Skip to content

Commit

Permalink
chore(helm): setup Artifact component infra
Browse files Browse the repository at this point in the history
  • Loading branch information
donch1989 committed Aug 12, 2024
1 parent 3b9480b commit 2882a68
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions charts/core/templates/pipeline-backend/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ data:
cert: /etc/instill-ai/vdp/ssl/mgmt/tls.crt
key: /etc/instill-ai/vdp/ssl/mgmt/tls.key
{{- end }}
artifactbackend:
host: {{ default (include "core.artifactBackend" . ) .Values.pipelineBackend.artifactBackendHostOverride }}
publicport: {{ default (include "core.artifactBackend.publicPort" . ) .Values.pipelineBackend.artifactBackendPortOverride }}
{{- if .Values.internalTLS.enabled }}
https:
cert: /etc/instill-ai/vdp/ssl/artifact/tls.crt
key: /etc/instill-ai/vdp/ssl/artifact/tls.key
{{- end }}
modelbackend:
host: {{ default (include "core.modelBackend" . ) .Values.pipelineBackend.modelBackendHostOverride }}
publicport: {{ default (include "core.modelBackend.publicPort" . ) .Values.pipelineBackend.modelBackendPortOverride }}
Expand Down
2 changes: 2 additions & 0 deletions charts/core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,8 @@ pipelineBackend:
maxUnavailable:
modelBackendHostOverride:
modelBackendPortOverride:
artifactBackendHostOverride:
artifactBackendPortOverride:
# -- The configuration of model-backend
modelBackend:
# -- The image of model-backend
Expand Down

0 comments on commit 2882a68

Please sign in to comment.