Skip to content

Commit

Permalink
slash is import with pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
ctr26 committed Oct 30, 2022
1 parent ff50637 commit 6ce22f3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion charts/hypha/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.15.8-3
version: 0.15.8-4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
24 changes: 12 additions & 12 deletions charts/hypha/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,19 @@ spec:
command: ["/bin/sh", "-c"]
args:
- |
python3 -m hypha.server
--host=0.0.0.0
--port={{ .Values.service.port}}
--enable-server-apps
--in-docker
--enable-s3
--public-base-url={{ .Values.imjoyHostName }}
--access-key-id={{ $S3_ACCESS_KEY }}
--secret-access-key={{ $S3_SECRET_KEY }}
--endpoint-url=http://{{ .Values.minio.fullnameOverride }}:{{.Values.minio.service.port}}
--endpoint-url-public={{ $S3_ENDPOINT_URL_PUBLIC }}
python3 -m hypha.server \
--host=0.0.0.0 \
--port={{ .Values.service.port}} \
--enable-server-apps \
--in-docker \
--enable-s3 \
--public-base-url={{ .Values.imjoyHostName }} \
--access-key-id={{ $S3_ACCESS_KEY }} \
--secret-access-key={{ $S3_SECRET_KEY }} \
--endpoint-url=http://{{ .Values.minio.fullnameOverride }}:{{.Values.minio.service.port}} \
--endpoint-url-public={{ $S3_ENDPOINT_URL_PUBLIC }} \
{{- if (index .Values "tritoninfereceserver-hypha" "enabled") }}
--triton-servers=http://{{(index .Values "tritoninfereceserver-hypha" "fullnameOverride")}}:{{(index .Values "tritoninfereceserver-hypha" "service" "port")}}
--triton-servers=http://{{(index .Values "tritoninfereceserver-hypha" "fullnameOverride")}}:{{(index .Values "tritoninfereceserver-hypha" "service" "port")}} \
{{- end }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
Expand Down

0 comments on commit 6ce22f3

Please sign in to comment.