-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvalues.yaml
More file actions
116 lines (107 loc) · 2.98 KB
/
values.yaml
File metadata and controls
116 lines (107 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
image:
repository: gcr.io/seqr-project/seqr-pipeline-runner
pullPolicy: Always
imagePullSecrets: []
serviceAccount:
create: true
annotations: {}
podAnnotations: {}
deploymentAnnotations: {}
additionalSecrets:
- name: CLICKHOUSE_WRITER_PASSWORD
valueFrom:
secretKeyRef:
name: clickhouse-secrets
key: writer_password
volumes: |-
- name: seqr-datasets
persistentVolumeClaim:
readOnly: false
claimName: {{ include "lib.pvc-name" . }}
- name: docker-socket
hostPath:
path: /var/run/docker.sock
- name: luigi-config
configMap:
name: luigi-config
items:
- key: luigi.cfg
path: luigi.cfg
volumeMounts: |-
- name: seqr-datasets
mountPath: /var/seqr
readOnly: false
- name: docker-socket
mountPath: /var/run/docker.sock
readOnly: false
- name: luigi-config
mountPath: /etc/luigi/luigi.cfg
subPath: luigi.cfg
pods:
- name: api
service:
type: ClusterIP
port: 6000
healthCheckRoute: /status
command: ["uv", "run", "python3", "-m", "loading_pipeline.api"]
initContainers: {}
resources: {}
sidecar:
command: ["uv", "run", "python3", "-m", "loading_pipeline.bin.pipeline_worker"]
privileged: true
- name: ui
service:
type: NodePort
port: 8082
nodePort: 30951
healthCheckRoute: /
command: ["uv", "run", "luigid"]
initContainers: |-
- name: mkdir-luigi-state
image: busybox:1.35
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: ['/bin/mkdir', '-p', {{ .Values.environment.LUIGI_STATE_DIR }}]
{{- with $.Values.volumeMounts }}
volumeMounts:
{{- tpl . $ | nindent 4 }}
{{- end }}
resources: {}
sidecar: {}
networkPolicy:
enabled: false
hailWorkerResources: |-
requests:
memory: "12Gi"
environment:
REFERENCE_DATASETS_DIR: "/var/seqr/seqr-reference-data"
PIPELINE_DATA_DIR: "/var/seqr/pipeline-data"
LUIGI_STATE_DIR: "/var/seqr/luigi-state"
CLICKHOUSE_WRITER_USER: "seqr_clickhouse_writer"
affinity: |-
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 1.0
podAffinityTerm:
labelSelector:
matchExpressions:
- key: "app.kubernetes.io/part-of"
operator: In
values:
- "seqr-platform"
topologyKey: "kubernetes.io/hostname"
nodeSelector: {}
tolerations: []
jobAfterHook: ""
jobBeforeHook: ""
cronJobs:
- name: reference-data-sync-37
schedule: "*/5 * * * *"
command: "./loading_pipeline/bin/rsync_reference_data.bash GRCh37 && ./loading_pipeline/bin/download_vep_reference_data.bash GRCh37"
- name: reference-data-sync-38
schedule: "*/5 * * * *"
command: "./loading_pipeline/bin/rsync_reference_data.bash GRCh38 && ./loading_pipeline/bin/download_vep_reference_data.bash GRCh38"
global:
seqrPlatformDeploy: false
seqr:
environment:
CLICKHOUSE_SERVICE_HOSTNAME: 'seqr-clickhouse'