diff --git a/charts/core/Chart.yaml b/charts/core/Chart.yaml index 5adc38f..4392437 100644 --- a/charts/core/Chart.yaml +++ b/charts/core/Chart.yaml @@ -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: diff --git a/charts/core/templates/core-cm.yaml b/charts/core/templates/core-cm.yaml index a6e063a..0f5c1bd 100644 --- a/charts/core/templates/core-cm.yaml +++ b/charts/core/templates/core-cm.yaml @@ -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 }}"] diff --git a/charts/core/templates/core-sts.yaml b/charts/core/templates/core-sts.yaml index 5da4c69..97a3f4c 100644 --- a/charts/core/templates/core-sts.yaml +++ b/charts/core/templates/core-sts.yaml @@ -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 }} @@ -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