Skip to content

Commit

Permalink
fix(node): add solana to values πŸ› (#67)
Browse files Browse the repository at this point in the history
* fix(node): add solana to values πŸ›

* fix(node): bump chart version πŸ€¦β€β™‚οΈ
  • Loading branch information
ahasna committed Sep 10, 2024
1 parent c6894de commit e5ad273
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
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

0 comments on commit e5ad273

Please sign in to comment.