Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit 18efd45

Browse files
authored
fix helm chart (#537)
* fix orchestrator validation * discovery: match existing secrets name
1 parent 329897b commit 18efd45

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

deployment/k8s/discovery-chart/templates/secret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: v1
33
kind: Secret
44
metadata:
5-
name: {{ include "discovery.fullname" . }}-secret
5+
name: {{ include "discovery.fullname" . }}-secrets
66
namespace: {{ include "discovery.namespace" . }}
77
type: Opaque
88
data:

deployment/k8s/orchestrator-chart/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
value: {{ $root.Values.url }}
5050
- name: DOMAIN_ID
5151
value: {{ $root.Values.domainId }}
52-
{{- if .Values.computePoolId }}
52+
{{- if $root.Values.computePoolId }}
5353
- name: COMPUTE_POOL_ID
5454
value: {{ $root.Values.computePoolId }}
5555
{{- end }}

deployment/k8s/orchestrator-chart/templates/processor-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ spec:
1313
labels:
1414
app: {{ include "orchestrator.fullname" . }}-processor
1515
spec:
16-
containers: {{- include "orchestrator.container" (dict "root" . "mode" "api") | nindent 6 }}
16+
containers: {{- include "orchestrator.container" (dict "root" . "mode" "processor") | nindent 6 }}

0 commit comments

Comments
 (0)