Skip to content
Open
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
8 changes: 7 additions & 1 deletion kubernetes/linera-validator/templates/shards.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,13 @@ spec:
--storage {{ .Values.storage | quote }} \
--server /config/server.json \
--shard $ORDINAL \
--storage-replication-factor {{ .Values.storageReplicationFactor | quote }}
--storage-replication-factor {{ .Values.storageReplicationFactor | quote }} \
{{- if .Values.crossChainQueueSize }}
--cross-chain-queue-size {{ .Values.crossChainQueueSize }}
{{- end }}
{{- if .Values.notificationQueueSize }}
--notification-queue-size {{ .Values.notificationQueueSize }}
{{- end }}
env:
- name: RUST_LOG
value: {{ .Values.logLevel }}
Expand Down
8 changes: 8 additions & 0 deletions kubernetes/linera-validator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ proxyResources: {}
# Set to empty string to use default Tokio thread count
serverTokioThreads: ""

# Cross-chain message queue size (default in binary is 1000)
# Set to empty string to use default
crossChainQueueSize: ""

# Notification queue size for proxy notifications (default in binary is 1000)
# Set to empty string to use default
notificationQueueSize: ""

# ============================================================================
# Storage Configuration
# ============================================================================
Expand Down
Loading