Skip to content

Commit 1ed79e0

Browse files
authored
Merge pull request #11 from CSCfi/fixes
Fix DRS-Filer and TESK
2 parents 2fd7771 + 51ad687 commit 1ed79e0

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

charts/drs-filer/templates/drs-filer-ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spec:
99
http:
1010
paths:
1111
- path: /ga4gh/drs/v1
12-
pathType: prefix
12+
pathType: Prefix
1313
backend:
1414
service:
1515
name: drs-filer

charts/drs-filer/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mongodb:
2525
resources:
2626
limits:
2727
cpu: 200m
28-
memory: 256Mi
28+
memory: 512Mi
2929
requests:
3030
cpu: 200m
31-
memory: 256Mi
31+
memory: 512Mi

charts/tesk/templates/common/tesk-svc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ spec:
1010
{{ if eq .Values.service.type "NodePort" }}nodePort: {{ .Values.service.node_port }} # valid only if {{ .Values.service.type }} == NodePort{{ end }}
1111
selector:
1212
app: tesk-api
13-
type: {{ if .Values.service.type }}{{ .Values.service.type }}{{ else }}'ClusterIP'{{ end }}
13+
type: {{ .Values.service.type | default "ClusterIP" }}

charts/tesk/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
"type": ["integer","string"]
101101
},
102102
"port": {
103-
"type": ["integer","integer"]
103+
"type": ["integer","string"]
104104
},
105105
"requestsCpu": {
106106
"type": ["integer","string"]

0 commit comments

Comments
 (0)