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/galexie/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: galexie
version: 0.4.1
version: 0.5.0
appVersion: "24.0.0"
description: Stellar Galexie Helm Chart. This chart will install Stellar Galexie
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/galexie/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
command:
- "galexie"
- "append"
- {{ .Values.galexieCommand | quote }}
- "--config-file=/galexie-config/config.toml"
{{- range .Values.additionalFlags }}
- {{ . | quote }}
Expand Down
8 changes: 6 additions & 2 deletions charts/galexie/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@ image:
tag: 24.0.0
pullPolicy: IfNotPresent

# Additional flags to append to the galexie append command
# By default this include start - The earliest ledger to create data for in the datastore.
# Galexie command to run. By default run append which exports any missing
# ledger data after start flag and before end flag
galexieCommand: "append"

# Additional flags to append to the galexie command
# By default this includes start - The earliest ledger to create data for in the datastore.
# For quicker catchup, choose a ledger closer to the most recent ledger in the network
additionalFlags:
- "--start=59000000"
Expand Down
Loading