Skip to content
This repository was archived by the owner on May 8, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: v2
description: Helm chart for Orchestrate
name: orchestrate
type: application
version: 3.0.0
version: 3.0.1
home: https://docs.orchestrate.consensys.net/
icon: https://docs.orchestrate.consensys.net/en/stable/images/logo.svg
maintainers:
Expand Down
3 changes: 2 additions & 1 deletion templates/migration/init-migrate-hook.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if .Values.api.enabled }}
---
apiVersion: batch/v1
kind: Job
Expand Down Expand Up @@ -46,4 +47,4 @@ spec:
name: {{ .Values.api.existingSecret }}
optional: true
{{- end }}

{{- end }}
6 changes: 3 additions & 3 deletions templates/tx-listener/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ metadata:
spec:
type: {{ .Values.txListener.service.type }}
ports:
- port: {{ .Values.txListener.service.metrics.port }}
targetPort: http-metrics
- port: {{ .Values.txListener.service.http.port }}
targetPort: http-svc
protocol: TCP
name: http-metrics
name: http-svc
selector:
{{- include "orchestrate.txListener.selectorLabels" . | nindent 4 }}
{{- end }}
6 changes: 3 additions & 3 deletions templates/tx-sender/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ metadata:
spec:
type: {{ .Values.txSender.service.type }}
ports:
- port: {{ .Values.txSender.service.metrics.port }}
targetPort: http-metrics
- port: {{ .Values.txSender.service.http.port }}
targetPort: http-svc
protocol: TCP
name: http-metrics
name: http-svc
selector:
{{- include "orchestrate.txSender.selectorLabels" . | nindent 4 }}
{{- end }}
4 changes: 4 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ txListener:

service:
type: ClusterIP
http:
port: 8080
metrics:
port: 8082

Expand Down Expand Up @@ -166,6 +168,8 @@ txSender:

service:
type: ClusterIP
http:
port: 8080
metrics:
port: 8082

Expand Down