File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11apiVersion : v1
22name : core
33description : This chart will deploy Stellar Core node
4- version : 0.6.0
5- appVersion : " 25.2.0-3058.bb195c49d .jammy"
4+ version : 0.6.1
5+ appVersion : " 26.0.1-3109.e78c97ed0 .jammy"
66maintainers :
77 - name : Stellar Development Foundation
88sources :
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ data:
116116 AUTOMATIC_MAINTENANCE_COUNT={{ .Values.core.config.automaticMaintenanceCount }}
117117 {{ end -}}
118118 {{ if (.Values.core.config).runStandalone -}}
119- RUN_STANDALONE={{ .Values.core.config.runStandalone | quote }}
119+ RUN_STANDALONE={{ .Values.core.config.runStandalone }}
120120 {{ end -}}
121121 {{ if (.Values.core.config).invariantChecks -}}
122122 INVARIANT_CHECKS=["{{- join "\",\"" .Values.core.config.invariantChecks }}"]
Original file line number Diff line number Diff line change 7474 {{- end }}
7575 imagePullPolicy : {{ .Values.global.image.core.pullPolicy }}
7676 ports :
77- - containerPort : 11626
77+ - containerPort : {{ int (.Values.core.config).httpPort | default 11626 }}
7878 name : core
79+ - containerPort : {{ int (.Values.core.config).peerPort | default 11625 }}
80+ name : core-peer
7981 {{- if (.Values.core).resources }}
8082 resources :
8183{{ toYaml .Values.core.resources | indent 10 }}
@@ -161,8 +163,11 @@ spec:
161163 publishNotReadyAddresses : true
162164 ports :
163165 - name : core
164- port : 11626
165- targetPort : 11626
166+ port : {{ int (.Values.core.config).httpPort | default 11626 }}
167+ targetPort : {{ int (.Values.core.config).httpPort | default 11626 }}
168+ - name : core-peer
169+ port : {{ int (.Values.core.config).peerPort | default 11625 }}
170+ targetPort : {{ int (.Values.core.config).peerPort | default 11625 }}
166171 {{- if (.Values.core.historyProxy).enabled }}
167172 - name : http
168173 port : 80
You can’t perform that action at this time.
0 commit comments