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
2 changes: 1 addition & 1 deletion charts/l2-bootnode/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v2
description: l2-bootnode helm chart
name: l2-bootnode
version: 0.0.12
version: 0.0.13
appVersion: v0.1.0
kubeVersion: ">=1.22.0-0"
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/l2-bootnode/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# l2-bootnode

![Version: 0.0.12](https://img.shields.io/badge/Version-0.0.12-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
![Version: 0.0.13](https://img.shields.io/badge/Version-0.0.13-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)

l2-bootnode helm chart

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
global:
fullnameOverride: l2-bootnode-3
fullnameOverride: l2-bootnode-0

envFrom:
- configMapRef:
name: l2-bootnode-3-env
name: l2-bootnode-0-env

initContainers:
wait-for-l1:
Expand All @@ -14,7 +14,7 @@ initContainers:
- /wait-for-l1.sh $L2GETH_L1_ENDPOINT
envFrom:
- configMapRef:
name: l2-bootnode-3-env
name: l2-bootnode-0-env
volumeMounts:
- name: wait-for-l1-script
mountPath: /wait-for-l1.sh
Expand All @@ -25,7 +25,7 @@ persistence:
enabled: true
type: configMap
mountPath: /config/
name: l2-bootnode-3-env
name: l2-bootnode-0-env

configMaps:
env:
Expand Down
2 changes: 1 addition & 1 deletion charts/l2-rpc/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v2
description: l2-rpc helm chart
name: l2-rpc
version: 0.0.11
version: 0.0.12
appVersion: v0.1.0
kubeVersion: ">=1.22.0-0"
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/l2-rpc/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# l2-rpc

![Version: 0.0.11](https://img.shields.io/badge/Version-0.0.11-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
![Version: 0.0.12](https://img.shields.io/badge/Version-0.0.12-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)

l2-rpc helm chart

Expand Down
2 changes: 1 addition & 1 deletion charts/l2-sequencer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v2
description: l2-sequencer helm charts
name: l2-sequencer
version: 0.0.10
version: 0.0.11
appVersion: v0.1.0
kubeVersion: ">=1.22.0-0"
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/l2-sequencer/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# l2-sequencer

![Version: 0.0.10](https://img.shields.io/badge/Version-0.0.10-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
![Version: 0.0.11](https://img.shields.io/badge/Version-0.0.11-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)

l2-sequencer helm charts

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
global:
fullnameOverride: l2-sequencer-3
fullnameOverride: l2-sequencer-0

envFrom:
- configMapRef:
name: l2-sequencer-3-env
name: l2-sequencer-0-env
- secretRef:
name: l2-sequencer-secret-3-env
name: l2-sequencer-secret-0-env

initContainers:
wait-for-l1:
Expand All @@ -16,7 +16,7 @@ initContainers:
- /wait-for-l1.sh $L2GETH_L1_ENDPOINT
envFrom:
- configMapRef:
name: l2-sequencer-3-env
name: l2-sequencer-0-env
volumeMounts:
- name: wait-for-l1-script
mountPath: /wait-for-l1.sh
Expand All @@ -25,7 +25,6 @@ initContainers:
configMaps:
env:
enabled: true
provider: aws
data:
CHAIN_ID: ""
L2GETH_L1_ENDPOINT: ""
Expand All @@ -37,22 +36,23 @@ persistence:
env:
enabled: true
type: configMap
name: l2-sequencer-3-env
name: l2-sequencer-0-env

externalSecrets:
l2-sequencer-secret-3-env:
l2-sequencer-secret-0-env:
provider: aws
data:
- remoteRef:
key: scroll/l2-sequencer-secret-env
property: L2GETH_KEYSTORE_3
property: L2GETH_KEYSTORE_0
secretKey: L2GETH_KEYSTORE
- remoteRef:
key: scroll/l2-sequencer-secret-env
property: L2GETH_PASSWORD_3
property: L2GETH_PASSWORD_0
secretKey: L2GETH_PASSWORD
- remoteRef:
key: scroll/l2-sequencer-secret-env
property: L2GETH_NODEKEY_3
property: L2GETH_NODEKEY_0
secretKey: L2GETH_NODEKEY
refreshInterval: 2m
serviceAccount: external-secrets
1 change: 1 addition & 0 deletions charts/l2-sequencer/values/production-2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ persistence:

externalSecrets:
l2-sequencer-secret-2-env:
provider: aws
data:
- remoteRef:
key: scroll/l2-sequencer-secret-env
Expand Down
8 changes: 4 additions & 4 deletions charts/scroll-sdk/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v2
description: scroll helm charts to deploy scroll sdk
name: scroll-sdk
version: 0.0.40
version: 0.0.41
appVersion: v0.1.0
kubeVersion: ">=1.22.0-0"
maintainers:
Expand Down Expand Up @@ -66,19 +66,19 @@ dependencies:
repository: "oci://ghcr.io/scroll-tech/scroll-sdk/helm"
condition: l1-explorer.enabled
- name: l2-bootnode
version: 0.0.11
version: 0.0.13
repository: "oci://ghcr.io/scroll-tech/scroll-sdk/helm"
condition: l2-bootnode.enabled
- name: l2-rpc
version: 0.0.11
version: 0.0.12
repository: "oci://ghcr.io/scroll-tech/scroll-sdk/helm"
condition: l2-rpc.enabled
- name: grafana
repository: "https://grafana.github.io/helm-charts"
version: 7.3.11
condition: grafana.enabled
- name: l2-sequencer
version: 0.0.10
version: 0.0.11
repository: "oci://ghcr.io/scroll-tech/scroll-sdk/helm"
condition: l2-sequencer.enabled
- name: loki-stack
Expand Down
8 changes: 4 additions & 4 deletions charts/scroll-sdk/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# scroll-sdk

![Version: 0.0.40](https://img.shields.io/badge/Version-0.0.40-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
![Version: 0.0.41](https://img.shields.io/badge/Version-0.0.41-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)

scroll helm charts to deploy scroll sdk

Expand Down Expand Up @@ -37,9 +37,9 @@ Kubernetes: `>=1.22.0-0`
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | gas-oracle | 0.0.8 |
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | l1-devnet | 0.0.3 |
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | l1-explorer | 0.0.2 |
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | l2-bootnode | 0.0.11 |
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | l2-rpc | 0.0.11 |
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | l2-sequencer | 0.0.10 |
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | l2-bootnode | 0.0.13 |
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | l2-rpc | 0.0.12 |
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | l2-sequencer | 0.0.11 |
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | rollup-explorer-backend | 0.0.4 |
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | rollup-node | 0.0.11 |
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | rpc-gateway | 0.0.2 |
Expand Down