Skip to content

Commit

Permalink
update globus compute endpoint chart (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
jstidd authored May 8, 2023
1 parent afc3819 commit da4b30c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/globus-compute/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,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.
version: 0.1.2
version: 0.1.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
Expand Down
4 changes: 2 additions & 2 deletions charts/globus-compute/templates/endpoint-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ spec:
fsGroup: 1000
containers:
- name: {{ .Release.Name }}-endpoint
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
image: hub.opensciencegrid.org/slate/globus-compute:0.0.1
command: [ "/bin/bash", "-c", "--" ]
args: [ "/home/compute/boot.sh {{ coalesce .Values.endpointName .Release.Name }} {{ .Values.endpointUUID }} {{ .Values.endpointCLIargs }}" ]
tty: true
stdin: true
imagePullPolicy: {{ .Values.image.pullPolicy }}
imagePullPolicy: Always
{{- if .Values.resources }}
resources:
{{ toYaml .Values.resources | indent 10 }}
Expand Down
13 changes: 6 additions & 7 deletions charts/globus-compute/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

Instance: default

replicaCount: 1
funcXServiceAddress: https://api2.funcx.org
image:
repository: compute/kube-endpoint
tag: main-3.10
pullPolicy: Always

workerDebug: false
workerImage: python:3.10
Expand All @@ -24,10 +22,10 @@ initCPU: 1
maxCPU: 2

initBlocks: 0
minBlocks: 1
minBlocks: 0
maxBlocks: 100
maxWorkersPerPod: 1
maxIdleTime: 3600
maxIdleTime: 600

# endpoint is required
endpointUUID:
Expand All @@ -36,5 +34,6 @@ endpointUUID:
endpointCLIargs: --log-to-console

# Will fail until user specifies one of these in their values.yaml
useClientCredentials: false
secrets:
useClientCredentials: true
useUserCredentials: false

0 comments on commit da4b30c

Please sign in to comment.