Skip to content

Commit

Permalink
Merge pull request #731 from getgems-io/helm_tvm_extra_args
Browse files Browse the repository at this point in the history
feat: tvm chart extra args
  • Loading branch information
akostylev0 authored Mar 19, 2024
2 parents 5feb602 + 89e5ed9 commit 993a156
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion charts/tvm-grpc/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ spec:
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- end }}

args:
- /bin/tvm-grpc
{{- if .Values.extraArgs }}
{{- toYaml .Values.extraArgs | nindent 12 }}
{{- end }}
ports:
- name: http
containerPort: 50052
Expand Down
2 changes: 2 additions & 0 deletions charts/tvm-grpc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,5 @@ tolerations: []
affinity: {}

max_threads: "12"

extraArgs: {}

0 comments on commit 993a156

Please sign in to comment.