Skip to content
Merged
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
4 changes: 2 additions & 2 deletions charts/core/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
name: core
description: This chart will deploy Stellar Core node
version: 0.6.0
appVersion: "25.2.0-3058.bb195c49d.jammy"
version: 0.6.1
appVersion: "26.0.1-3109.e78c97ed0.jammy"
maintainers:
- name: Stellar Development Foundation
sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/core/templates/core-cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ data:
AUTOMATIC_MAINTENANCE_COUNT={{ .Values.core.config.automaticMaintenanceCount }}
{{ end -}}
{{ if (.Values.core.config).runStandalone -}}
RUN_STANDALONE={{ .Values.core.config.runStandalone | quote }}
RUN_STANDALONE={{ .Values.core.config.runStandalone }}
{{ end -}}
{{ if (.Values.core.config).invariantChecks -}}
INVARIANT_CHECKS=["{{- join "\",\"" .Values.core.config.invariantChecks }}"]
Expand Down
11 changes: 8 additions & 3 deletions charts/core/templates/core-sts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,10 @@ spec:
{{- end }}
imagePullPolicy: {{ .Values.global.image.core.pullPolicy }}
ports:
- containerPort: 11626
- containerPort: {{ int (.Values.core.config).httpPort | default 11626 }}
name: core
- containerPort: {{ int (.Values.core.config).peerPort | default 11625 }}
name: core-peer
{{- if (.Values.core).resources }}
resources:
{{ toYaml .Values.core.resources | indent 10 }}
Expand Down Expand Up @@ -161,8 +163,11 @@ spec:
publishNotReadyAddresses: true
ports:
- name: core
port: 11626
targetPort: 11626
port: {{ int (.Values.core.config).httpPort | default 11626 }}
targetPort: {{ int (.Values.core.config).httpPort | default 11626 }}
- name: core-peer
port: {{ int (.Values.core.config).peerPort | default 11625 }}
targetPort: {{ int (.Values.core.config).peerPort | default 11625 }}
{{- if (.Values.core.historyProxy).enabled }}
- name: http
port: 80
Expand Down
Loading