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.0.3
version: 0.1.0
appVersion: "19.12.0-1378.2109a168a.focal"
maintainers:
- name: Stellar Development Foundation
Expand Down
1 change: 1 addition & 0 deletions charts/core/templates/core-sts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ metadata:
heritage: {{ .Release.Service }}
spec:
replicas: {{ .Values.core.replicaCount }}
podManagementPolicy: {{ .Values.core.podManagementPolicy }}
serviceName: {{ template "common.fullname" . }}
selector:
matchLabels:
Expand Down
3 changes: 3 additions & 0 deletions charts/core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ core:
## For production use cases we recommend at least 2 replicas
replicaCount: 1

## Core pods do not need to be initialized in a specific order
podManagementPolicy: Parallel

## Uncomment to use custom service account
# serviceAccountName: default

Expand Down
2 changes: 1 addition & 1 deletion charts/horizon/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: horizon
version: 0.0.7
version: 0.1.0
appVersion: "2.26.1"
description: Stellar Horizon Helm Chart. This chart will deploy Stellar Horizon API server
maintainers:
Expand Down
1 change: 1 addition & 0 deletions charts/horizon/templates/ingest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ metadata:
spec:
replicas: {{ .Values.ingest.replicaCount }}
{{- if not (.Values.useDeployment) }}
podManagementPolicy: {{ .Values.ingest.podManagementPolicy }}
serviceName: {{ include "common.fullname" . }}-ingest
{{- end }}
selector:
Expand Down
3 changes: 3 additions & 0 deletions charts/horizon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ ingest:
## For production use cases we recommend at least 2 replicas
replicaCount: 1

## Horizon ingest pods do not need to be initialized in a specific order
podManagementPolicy: Parallel

serviceAccountName: default

## Additional annotations or labels to add the Deployment template
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.1.1
version: 0.2.0
appVersion: "0.9.3"
description: Stellar Soroban RPC Helm Chart. This chart will deploy Stellar Soroban API server
maintainers:
Expand Down
1 change: 1 addition & 0 deletions charts/soroban-rpc/templates/soroban-rpc-sts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ spec:
# gauranteed to be running while the other one is upgraded and catching backup to network
# after restart
replicas: 2
podManagementPolicy: {{ .Values.sorobanRpc.podManagementPolicy }}
serviceName: {{ template "common.fullname" . }}
selector:
matchLabels:
Expand Down
3 changes: 3 additions & 0 deletions charts/soroban-rpc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ sorobanRpc:
storageClass: default
size: 100G

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

## Uncomment to use custom service account
# serviceAccountName: default

Expand Down
Loading