Skip to content

Commit 08e8324

Browse files
Updated app version and fixed sqs config
1 parent 3d26215 commit 08e8324

File tree

4 files changed

+86
-3
lines changed

4 files changed

+86
-3
lines changed

charts/osmosis-fullnode/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: osmosis-fullnode
33
description: A Helm chart for deploying Osmosis fullnode with monitoring and sentinel
44
type: application
5-
version: 0.1.9
5+
version: 0.2.0
66
appVersion: "29.0.2"
77
keywords:
88
- osmosis

charts/osmosis-fullnode/templates/_helpers.tpl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,9 @@ Create SQS environment variables
146146
Create SQS configuration JSON
147147
*/}}
148148
{{- define "osmosis-fullnode.sqsConfig" -}}
149+
{{- if .Values.sqs.config.json }}
150+
{{- .Values.sqs.config.json | toJson }}
151+
{{- else }}
149152
{
150153
"flight-record": {
151154
"enabled": {{ .Values.sqs.config.flightRecord.enabled | toString | lower }}
@@ -167,5 +170,6 @@ Create SQS configuration JSON
167170
}
168171
}
169172
{{- end }}
173+
{{- end }}
170174

171175

charts/osmosis-fullnode/values-testnet.yaml

Lines changed: 65 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace: testnet-fullnodes
1414
images:
1515
osmosis:
1616
repository: osmolabs/osmosis-cosmovisor
17-
tag: "29.0.2"
17+
tag: "30.0.3"
1818
pullPolicy: IfNotPresent
1919
droid:
2020
repository: osmolabs/droid
@@ -253,6 +253,70 @@ sqs:
253253

254254
# SQS configuration
255255
config:
256+
# Custom JSON configuration - if specified, this will be used instead of the default configuration below
257+
json:
258+
server-address: ":9092"
259+
logger-filename: "sqs.log"
260+
logger-is-production: true
261+
logger-level: "info"
262+
grpc-gateway-endpoint: "osmosis:9090"
263+
grpc-tendermint-rpc-endpoint: "http://osmosis:26657"
264+
chain-id: "osmo-test-5"
265+
chain-registry-assets-url: "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/osmo-test-5/generated/frontend/assetlist.json"
266+
update-assets-height-interval: 200
267+
router:
268+
preferred-pool-ids: []
269+
max-pools-per-route: 4
270+
max-routes: 20
271+
max-split-routes: 3
272+
min-pool-liquidity-cap: 0
273+
route-cache-enabled: false
274+
candidate-route-cache-expiry-seconds: 1200
275+
ranked-route-cache-expiry-seconds: 1
276+
dynamic-min-liquidity-cap-filters-desc: []
277+
flight-record:
278+
enabled: false
279+
trace-threshold-ms: 1000
280+
trace-file-name: "/tmp/sqs-flight-record.trace"
281+
pools:
282+
transmuter-code-ids:
283+
- 3084
284+
- 4643
285+
alloyed-transmuter-code-ids:
286+
- 8319
287+
general-cosmwasm-code-ids:
288+
- 6688
289+
- 6978
290+
orderbook-code-ids: []
291+
pricing:
292+
cache-expiry-ms: 2000
293+
default-source: 0
294+
default-quote-human-denom: "usdc"
295+
max-pools-per-route: 4
296+
max-routes: 3
297+
min-pool-liquidity-cap: 0
298+
coingecko-url: "https://prices.osmosis.zone/api/v3/simple/price"
299+
coingecko-quote-currency: "usd"
300+
worker-min-pool-liquidity-cap: 1
301+
passthrough:
302+
numia-url: "https://data.testnet.osmosis.zone/"
303+
timeseries-url: "https://stage-proxy-data-api.osmosis-labs.workers.dev"
304+
apr-fetch-interval-minutes: 5
305+
pool-fees-fetch-interval-minutes: 5
306+
grpc-ingester:
307+
enabled: true
308+
max-receive-msg-size-bytes: 16777216
309+
server-address: ":50051"
310+
server-connection-timeout-seconds: 10
311+
otel:
312+
enabled: true
313+
environment: "sqs-testnet"
314+
cors:
315+
allowed-origin: "*"
316+
allowed-methods: "HEAD, GET, POST, HEAD, GET, POST, DELETE, OPTIONS, PATCH, PUT"
317+
allowed-headers: "Origin, Accept, Content-Type, X-Requested-With, X-Server-Time, Origin, Accept, Content-Type, X-Requested-With, X-Server-Time, Accept-Encoding, sentry-trace, baggage"
318+
319+
# Default configuration fields (used only if json is not specified)
256320
flightRecord:
257321
enabled: false
258322
otel:

charts/osmosis-fullnode/values.yaml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace: fullnodes
1414
images:
1515
osmosis:
1616
repository: osmolabs/osmosis-cosmovisor
17-
tag: "29.0.2"
17+
tag: "30.0.3"
1818
pullPolicy: IfNotPresent
1919
droid:
2020
repository: osmolabs/droid
@@ -405,6 +405,21 @@ sqs:
405405

406406
# SQS configuration
407407
config:
408+
# Custom JSON configuration - if specified, this will override the default configuration below
409+
# Set to null or omit to use the default configuration
410+
# Example:
411+
# json:
412+
# server-address: ":9092"
413+
# logger-filename: "sqs.log"
414+
# logger-is-production: true
415+
# logger-level: "info"
416+
# grpc-gateway-endpoint: "osmosis:9090"
417+
# grpc-tendermint-rpc-endpoint: "http://osmosis:26657"
418+
# chain-id: "osmosis-1"
419+
# ...
420+
json: null
421+
422+
# Default configuration fields (used only if json is not specified)
408423
flightRecord:
409424
enabled: false
410425
otel:

0 commit comments

Comments
 (0)