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

fix(node): add solana to values 🐛 #67

Merged
merged 2 commits into from
Sep 10, 2024
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/node/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ maintainers:

type: application

version: 0.10.0
version: 0.11.0

appVersion: "1.6.0"
appVersion: "1.6.4"
2 changes: 0 additions & 2 deletions charts/node/templates/engine-cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,10 @@ data:

[sol.rpc]
http_endpoint = "{{ required "Please provide a http_endpoint of a Solana RPC Node" .Values.engine.settings.sol.http_endpoint }}"
ws_endpoint = "{{ required "Please provide a ws_endpoint of a Solana RPC Node" .Values.engine.settings.sol.ws_endpoint }}"

{{ if .Values.engine.settings.arb_backup.enabled }}
[arb.backup_rpc]
http_endpoint = "{{ .Values.engine.settings.arb_backup.http_endpoint }}"
ws_endpoint = "{{ .Values.engine.settings.arb_backup.ws_endpoint }}"
{{- end }}

{{- if .Values.engine.ports.metrics.enabled }}
Expand Down
4 changes: 3 additions & 1 deletion charts/node/tests/values/happy.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ engine:
basic_auth_password: "flip"
arb:
ws_endpoint: "test"
http_endpoint: "test"
http_endpoint: "test"
sol:
http_endpoint: "test"
4 changes: 3 additions & 1 deletion charts/node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,9 @@ engine:

# -- arb node http endpoint
http_endpoint: ""

sol:
# -- solana node http endpoint
http_endpoint: ""
livenessProbe:
# -- enable liveness probe
enabled: true
Expand Down
Loading