Skip to content
Merged
2 changes: 1 addition & 1 deletion tools/deployment/spider-helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: "v2"
name: "spider"
description: "A Helm chart for the Spider Huntsman deployment"
type: "application"
version: "0.1.10"
version: "0.1.11"
appVersion: "0.1.0-dev"
home: "https://github.com/y-scope/spider"
sources: ["https://github.com/y-scope/spider"]
Expand Down
7 changes: 3 additions & 4 deletions tools/deployment/spider-helm/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ data:
advertised_endpoint:
host: {{ include "spider.componentFullname" (dict "root" . "component" "scheduler") | quote }}
port: {{ .Values.spiderConfig.scheduler.port }}
scheduler:
policy: {{ .Values.spiderConfig.scheduler.runtime.scheduler.policy | quote }}
config:
{{- toYaml .Values.spiderConfig.scheduler.runtime.scheduler.config | nindent 10 }}
{{- with .Values.spiderConfig.scheduler.runtime }}
{{- toYaml (omit . "advertised_endpoint") | nindent 6 }}
{{- end }}
storage_endpoint:
host: {{ include "spider.componentFullname" (dict "root" . "component" "storage") | quote }}
port: {{ .Values.spiderConfig.storage.port }}
Expand Down
10 changes: 10 additions & 0 deletions tools/deployment/spider-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ spiderConfig:
log_level: "INFO"
port: 50052
runtime:
em_registry:
dead_em_cutoff_sec: 30
liveness_tracking_interval_ms: 1000
Comment thread
LinZhihao-723 marked this conversation as resolved.
scheduler:
policy: "round_robin"
config:
Expand All @@ -72,10 +75,17 @@ spiderConfig:
log_level: "INFO"
port: 50051
runtime:
job_cache_gc:
gc_interval_sec: 30
terminated_job_retention_sec: 300
ready_queue:
cleanup_capacity: 256
commit_capacity: 256
task_capacity: 1048576
task_instance_pool:
execution_manager_stale_cutoff_sec: 60
gc_interval_sec: 30
message_channel_capacity: 128

worker:
extra_envs: []
Expand Down
Loading