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
2 changes: 1 addition & 1 deletion charts/core/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: core
description: This chart will deploy Stellar Core node
version: 0.6.1
version: 0.7.0
appVersion: "26.0.1-3109.e78c97ed0.jammy"
maintainers:
- name: Stellar Development Foundation
Expand Down
4 changes: 4 additions & 0 deletions charts/core/templates/core-sts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ spec:
replicas: {{ .Values.core.replicaCount }}
podManagementPolicy: {{ .Values.core.podManagementPolicy }}
serviceName: {{ template "common.fullname" . }}
{{- if and .Values.core.persistence.enabled .Values.core.persistence.persistentVolumeClaimRetentionPolicy }}
persistentVolumeClaimRetentionPolicy:
{{- toYaml .Values.core.persistence.persistentVolumeClaimRetentionPolicy | nindent 4 }}
{{- end }}
selector:
matchLabels:
app: {{ template "common.fullname" . }}
Expand Down
5 changes: 5 additions & 0 deletions charts/core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@ core:
enabled: false
storageClass: default
size: 100G
## Persistent volume claim retention policy for the StatefulSet.
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention
# persistentVolumeClaimRetentionPolicy:
# whenDeleted: Retain
# whenScaled: Retain

## Validators need to publish history archives. historyProxy section
# will make the chart deplo reverse proxy nginx container
Expand Down
2 changes: 1 addition & 1 deletion charts/soroban-rpc/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: soroban-rpc
version: 0.4.1
version: 0.5.0
appVersion: "26.0.0"
description: Stellar RPC Helm Chart. This chart will deploy Stellar RPC server
maintainers:
Expand Down
4 changes: 4 additions & 0 deletions charts/soroban-rpc/templates/soroban-rpc-sts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ spec:
replicas: {{ .Values.sorobanRpc.replicaCount | default 2 | int }}
podManagementPolicy: {{ .Values.sorobanRpc.podManagementPolicy }}
serviceName: {{ template "common.fullname" . }}
{{- if and .Values.sorobanRpc.persistence.enabled .Values.sorobanRpc.persistence.persistentVolumeClaimRetentionPolicy }}
persistentVolumeClaimRetentionPolicy:
{{- toYaml .Values.sorobanRpc.persistence.persistentVolumeClaimRetentionPolicy | nindent 4 }}
{{- end }}
selector:
matchLabels:
app: {{ template "common.fullname" . }}
Expand Down
5 changes: 5 additions & 0 deletions charts/soroban-rpc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@ sorobanRpc:
enabled: false
storageClass: default
size: 100G
## Persistent volume claim retention policy for the StatefulSet.
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention
# persistentVolumeClaimRetentionPolicy:
# whenDeleted: Retain
# whenScaled: Retain

## Soroban RPC pods do not need to be initialized in a specific order
podManagementPolicy: Parallel
Expand Down
Loading