Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added horizon apply migrations flag #72

Merged
merged 2 commits into from
Sep 25, 2023
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/horizon/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: horizon
version: 0.0.6
appVersion: "2.24.1"
version: 0.0.7
appVersion: "2.26.1"
description: Stellar Horizon Helm Chart. This chart will deploy Stellar Horizon API server
maintainers:
- name: Stellar Development Foundation
Expand Down
1 change: 1 addition & 0 deletions charts/horizon/templates/horizon-ingest-cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ metadata:
heritage: {{ .Release.Service }}
data:
ADMIN_PORT: {{ .Values.ingest.horizonConfig.adminPort | default "6000" | quote}}
APPLY_MIGRATIONS: {{ .Values.ingest.horizonConfig.applyMigrations | default "false" | quote}}
ALLOW_EMPTY_LEDGER_DATA_RESPONSES: {{ .Values.ingest.horizonConfig.allowEmptyLedgerDataResponses | default "true" | quote}}
CAPTIVE_CORE_CONFIG_APPEND_PATH: "/config/stellar-core.cfg"
CAPTIVE_CORE_REUSE_STORAGE_PATH: "True"
Expand Down
3 changes: 2 additions & 1 deletion charts/horizon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ ingest:

## This variable allows overrides of default settings
horizonConfig:
{}
applyMigrations: false
# port: 8001


## pre existing secret that contains the DATABASE_URL key with postgres URL
existingSecret: ""

Expand Down