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/soroban-rpc/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: soroban-rpc
version: 0.4.0
appVersion: "25.0.1"
version: 0.4.1
appVersion: "26.0.0"
description: Stellar RPC Helm Chart. This chart will deploy Stellar RPC server
maintainers:
- name: Stellar Development Foundation
Expand Down
2 changes: 1 addition & 1 deletion charts/soroban-rpc/templates/soroban-rpc-sts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
# Having two replicas also ensures zero downtime during upgrades as at least one replica is
# gauranteed to be running while the other one is upgraded and catching backup to network
# after restart
replicas: 2
replicas: {{ .Values.sorobanRpc.replicaCount | default 2 | int }}
podManagementPolicy: {{ .Values.sorobanRpc.podManagementPolicy }}
serviceName: {{ template "common.fullname" . }}
selector:
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 @@ -36,6 +36,9 @@ sorobanRpc:
## marking pods as Ready
requireFullRetentionWindow: false

## For production use cases we recommend at least 2 replicas
replicaCount: 2

## Soroban-rpc config variables
sorobanRpcConfig:
friendbotUrl: "https://friendbot-futurenet.stellar.org/"
Expand Down
Loading