Skip to content

Commit

Permalink
update charts to have configurable values and mark breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
noot committed Nov 5, 2024
1 parent 19c81f1 commit ca02d51
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/sequencer/files/cometbft/config/genesis.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@
{{ include "sequencer.address" $value }}
{{- end }}
],
{{- if not .Values.global.dev }}
{{- else }}
"connect": {
"marketMap": {
"marketMap": {
Expand All @@ -135,8 +137,6 @@
"nextId": "0"
}
}
{{- if not .Values.global.dev }}
{{- else }}
{{- end}}
},
"chain_id": "{{ .Values.genesis.chainId }}",
Expand Down
4 changes: 2 additions & 2 deletions charts/sequencer/templates/configmaps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ data:
OTEL_EXPORTER_OTLP_HEADERS: "{{ .Values.sequencer.otel.otlpHeaders }}"
OTEL_EXPORTER_OTLP_TRACE_HEADERS: "{{ .Values.sequencer.otel.traceHeaders }}"
OTEL_SERVICE_NAME: "{{ tpl .Values.sequencer.otel.serviceName . }}"
ASTRIA_SEQUENCER_ORACLE_GRPC_ADDR: "http://127.0.0.1:8081"
ASTRIA_SEQUENCER_ORACLE_CLIENT_TIMEOUT_MILLISECONDS: "1000"
ASTRIA_SEQUENCER_ORACLE_GRPC_ADDR: "http://127.0.0.1:{{ .Values.ports.oracleGrpc }}"
ASTRIA_SEQUENCER_ORACLE_CLIENT_TIMEOUT_MILLISECONDS: "{{ .Values.sequencer.oracle.clientTimeout }}"
{{- if not .Values.global.dev }}
{{- else }}
ASTRIA_SEQUENCER_NO_ORACLE: "true"
Expand Down
3 changes: 3 additions & 0 deletions charts/sequencer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ sequencer:
mempool:
parked:
maxTxCount: 200
oracle:
clientTimeout: 1000
metrics:
enabled: false
otel:
Expand Down Expand Up @@ -276,6 +278,7 @@ ports:
sequencerGrpc: 8080
relayerRpc: 2450
sequencerMetrics: 9000
oracleGrpc: 8081

# ServiceMonitor configuration
serviceMonitor:
Expand Down

0 comments on commit ca02d51

Please sign in to comment.