Skip to content
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/das/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ maintainers:

type: application

version: 0.6.8
version: 0.7.0

appVersion: "v3.7.3-e421729"
appVersion: "v3.8.0-rc.7-ef47e28"
17 changes: 0 additions & 17 deletions charts/das/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,6 @@ extraEnv:
| `startupProbe` | startupProbe | |
| `startupProbe.enabled` | Enable startup probe | `false` |
| `updateStrategy.type` | Update strategy type | `RollingUpdate` |
| `persistence.localdbstorage` | This will only be created if local db storage is enabled in the configmap | |
| `persistence.localdbstorage.size` | Size of the persistent volume claim | `100Gi` |
| `persistence.localdbstorage.storageClassName` | Storage class of the persistent volume claim | `nil` |
| `persistence.localdbstorage.accessModes` | Access modes of the persistent volume claim | `["ReadWriteOnce"]` |
| `persistence.localfilestorage` | This will only be created if local file storage is enabled in the configmap | |
| `persistence.localfilestorage.size` | Size of the persistent volume claim | `100Gi` |
| `persistence.localfilestorage.storageClassName` | Storage class of the persistent volume claim | `nil` |
Expand Down Expand Up @@ -244,9 +240,6 @@ extraEnv:
| `configmap.data.rpc-port` | rpc api port | `9876` |
| `configmap.data.data-availability.parent-chain-node-url` | Parent chain node url | `""` |
| `configmap.data.data-availability.sequencer-inbox-address` | Sequencer inbox address | `""` |
| `configmap.data.data-availability.local-db-storage.enable` | Enable local db storage | `false` |
| `configmap.data.data-availability.local-db-storage.data-dir` | Data directory | `""` |
| `configmap.data.data-availability.local-db-storage.discard-after-timeout` | Discard after timeout | `""` |
| `configmap.data.data-availability.local-file-storage.enable` | Enable local file storage | `false` |
| `configmap.data.data-availability.local-file-storage.data-dir` | | `""` |
| `configmap.data.data-availability.s3-storage.enable` | Enable s3 storage | `false` |
Expand Down Expand Up @@ -295,20 +288,10 @@ Option | Description | Default
`data-availability.key.priv-key` | string the base64 BLS private key to use for signing DAS certificates; if using any of the DAS storage types exactly one of key-dir or priv-key must be specified | None
`data-availability.local-cache.capacity` | int Maximum number of entries (up to 64KB each) to store in the cache. | `20000`
`data-availability.local-cache.enable` | Enable local in-memory caching of sequencer batch data | None
`data-availability.local-db-storage.base-table-size` | int BadgerDB option: sets the maximum size in bytes for LSM table or file in the base level | `2097152`
`data-availability.local-db-storage.data-dir` | string directory in which to store the database | None
`data-availability.local-db-storage.discard-after-timeout` | discard data after its expiry timeout | None
`data-availability.local-db-storage.enable` | !!!DEPRECATED, USE local-file-storage!!! enable storage/retrieval of sequencer batch data from a database on the local filesystem | None
`data-availability.local-db-storage.num-compactors` | int BadgerDB option: Sets the number of compaction workers to run concurrently | `4`
`data-availability.local-db-storage.num-level-zero-tables` | int BadgerDB option: sets the maximum number of Level 0 tables before compaction starts | `5`
`data-availability.local-db-storage.num-level-zero-tables-stall` | int BadgerDB option: sets the number of Level 0 tables that once reached causes the DB to stall until compaction succeeds | `15`
`data-availability.local-db-storage.num-memtables` | int BadgerDB option: sets the maximum number of tables to keep in memory before stalling | `5`
`data-availability.local-db-storage.value-log-file-size` | int BadgerDB option: sets the maximum size of a single log file | `1073741823`
`data-availability.local-file-storage.data-dir` | string local data directory | None
`data-availability.local-file-storage.enable` | enable storage/retrieval of sequencer batch data from a directory of files, one per batch | None
`data-availability.local-file-storage.enable-expiry` | enable expiry of batches | None
`data-availability.local-file-storage.max-retention` | duration store requests with expiry times farther in the future than max-retention will be rejected | `504h0m0s`
`data-availability.migrate-local-db-to-file-storage` | daserver will migrate all data on startup from local-db-storage to local-file-storage, then mark local-db-storage as unusable | None
`data-availability.panic-on-error` | whether the Data Availability Service should fail immediately on errors (not recommended) | None
`data-availability.parent-chain-connection-attempts` | int parent chain RPC connection attempts (spaced out at least 1 second per attempt, 0 to retry infinitely), only used in standalone daserver; when running as part of a node that node's parent chain configuration is used | `15`
`data-availability.parent-chain-node-url` | string URL for parent chain node, only used in standalone daserver and daprovider; when running as part of a node that node's L1 configuration is used | None
Expand Down
25 changes: 0 additions & 25 deletions charts/das/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,6 @@ spec:
{{- toYaml . | nindent 12 }}
{{- end }}
volumeMounts:
{{- if index .Values "configmap" "data" "data-availability" "local-db-storage" "enable" }}
- name: localdbstorage
mountPath: {{ index .Values "configmap" "data" "data-availability" "local-db-storage" "data-dir" }}
{{- end }}
{{- if index .Values "configmap" "data" "data-availability" "local-file-storage" "enable" }}
- name: localfilestorage
mountPath: {{ index .Values "configmap" "data" "data-availability" "local-file-storage" "data-dir" }}
Expand Down Expand Up @@ -253,27 +249,6 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
volumeClaimTemplates:
{{- if index .Values "configmap" "data" "data-availability" "local-db-storage" "enable" }}
- metadata:
name: localdbstorage
{{- with .Values.storageAnnotations }}
annotations:
{{- toYaml . | nindent 10 }}
{{- end }}
labels:
app: {{ template "das.name" . }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
spec:
accessModes:
{{- toYaml .Values.persistence.localdbstorage.accessModes | nindent 8 }}
{{- if .Values.persistence.localdbstorage.storageClassName }}
storageClassName: {{ .Values.persistence.localdbstorage.storageClassName | quote }}
{{- end }}
resources:
requests:
storage: {{ .Values.persistence.localdbstorage.size | quote }}
{{- end }}
{{- if index .Values "configmap" "data" "data-availability" "local-file-storage" "enable" }}
- metadata:
name: localfilestorage
Expand Down
17 changes: 0 additions & 17 deletions charts/das/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,6 @@ updateStrategy:
type: RollingUpdate

persistence:
## @extra persistence.localdbstorage This will only be created if local db storage is enabled in the configmap
## @param persistence.localdbstorage.size Size of the persistent volume claim
## @param persistence.localdbstorage.storageClassName [string, nullable] Storage class of the persistent volume claim
## @param persistence.localdbstorage.accessModes Access modes of the persistent volume claim
localdbstorage:
size: 100Gi
storageClassName: null
accessModes:
- ReadWriteOnce
## @extra persistence.localfilestorage This will only be created if local file storage is enabled in the configmap
## @param persistence.localfilestorage.size Size of the persistent volume claim
## @param persistence.localfilestorage.storageClassName [string, nullable] Storage class of the persistent volume claim
Expand Down Expand Up @@ -220,14 +211,6 @@ configmap:
parent-chain-node-url: ""
sequencer-inbox-address: ""

## @param configmap.data.data-availability.local-db-storage.enable Enable local db storage
## @param configmap.data.data-availability.local-db-storage.data-dir Data directory
## @param configmap.data.data-availability.local-db-storage.discard-after-timeout Discard after timeout
local-db-storage:
enable: false
data-dir: ""
discard-after-timeout: ""

## @param configmap.data.data-availability.local-file-storage.enable Enable local file storage
## @param configmap.data.data-availability.local-file-storage.data-dir
local-file-storage:
Expand Down
4 changes: 2 additions & 2 deletions charts/nitro/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ maintainers:

type: application

version: 0.7.15
version: 0.8.0

appVersion: "v3.7.3-e421729"
appVersion: "v3.8.0-rc.7-ef47e28"
Loading