Skip to content

Commit 880f695

Browse files
authored
fix: add scroll-monitor production.yaml (#205)
* fix: add scroll-monitor production * update devnet l2geth * clean up
1 parent 69edd28 commit 880f695

26 files changed

+62
-37585
lines changed

charts/scroll-monitor/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: v2
33
description: helm chart to deploy grafana, prometheus and loki to monitor scroll-sdk
44
name: scroll-monitor
5-
version: 0.0.5
5+
version: 0.0.6
66
appVersion: v0.1.0
77
kubeVersion: ">=1.22.0-0"
88
maintainers:

charts/scroll-monitor/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# scroll-monitor
22

3-
![Version: 0.0.5](https://img.shields.io/badge/Version-0.0.5-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
3+
![Version: 0.0.6](https://img.shields.io/badge/Version-0.0.6-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
44

55
helm chart to deploy grafana, prometheus and loki to monitor scroll-sdk
66

@@ -61,6 +61,7 @@ Kubernetes: `>=1.22.0-0`
6161
| grafana.fullnameOverride | string | `"grafana"` | |
6262
| grafana.ingress.enabled | bool | `true` | |
6363
| grafana.ingress.hosts[0] | string | `"grafana.scrollsdk"` | |
64+
| grafana.ingress.ingressClassName | string | `"nginx"` | |
6465
| grafana.nameOverride | string | `"grafana"` | |
6566
| kube-prometheus-stack.alertmanager.enabled | bool | `true` | |
6667
| kube-prometheus-stack.enabled | bool | `true` | |

charts/scroll-monitor/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ grafana:
4848
kubernetes: grafana-kubernetes-dashboards
4949
ingress:
5050
enabled: true
51-
hosts: ["grafana.scrollsdk"]
51+
ingressClassName: nginx
52+
hosts:
53+
- "grafana.scrollsdk"
5254

5355
loki:
5456
enabled: true
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
grafana:
2+
ingress:
3+
enabled: true
4+
ingressClassName: nginx
5+
hosts:
6+
- ""
7+
8+
kube-prometheus-stack:
9+
alertmanager:
10+
config:
11+
global:
12+
resolve_timeout: 5m
13+
slack_api_url: "" # your webhook url
14+
receivers:
15+
- name: "slack-alerts"
16+
slack_configs:
17+
- channel: "" # your channel name
18+
send_resolved: true
19+
text: "{{ .CommonAnnotations.description }}"
20+
title: "{{ .CommonAnnotations.summary }}"
21+
route:
22+
group_by: ["alertname"]
23+
receiver: "slack-alerts"
24+
routes:
25+
- matchers: []
26+
receiver: "slack-alerts"

charts/scroll-sdk/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: v2
33
description: scroll helm charts to deploy scroll sdk
44
name: scroll-sdk
5-
version: 0.0.56
5+
version: 0.0.57
66
appVersion: v0.1.0
77
kubeVersion: ">=1.22.0-0"
88
maintainers:
@@ -98,7 +98,7 @@ dependencies:
9898
repository: "oci://ghcr.io/scroll-tech/scroll-sdk/helm"
9999
condition: scroll-common.enabled
100100
- name: scroll-monitor
101-
version: 0.0.5
101+
version: 0.0.6
102102
repository: "oci://ghcr.io/scroll-tech/scroll-sdk/helm"
103103
condition: scroll-monitor.enabled
104104
- name: admin-system-backend

charts/scroll-sdk/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# scroll-sdk
22

3-
![Version: 0.0.56](https://img.shields.io/badge/Version-0.0.56-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
3+
![Version: 0.0.57](https://img.shields.io/badge/Version-0.0.57-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
44

55
scroll helm charts to deploy scroll sdk
66

@@ -41,7 +41,7 @@ Kubernetes: `>=1.22.0-0`
4141
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | rollup-node | 0.0.14 |
4242
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | rpc-gateway | 0.0.2 |
4343
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | scroll-common | 0.0.5 |
44-
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | scroll-monitor | 0.0.5 |
44+
| oci://ghcr.io/scroll-tech/scroll-sdk/helm | scroll-monitor | 0.0.6 |
4545
| oci://registry-1.docker.io/bitnamicharts | postgresql | 15.5.0 |
4646

4747
## Values
@@ -138,6 +138,7 @@ Kubernetes: `>=1.22.0-0`
138138
| scroll-monitor.grafana.enabled | bool | `true` | |
139139
| scroll-monitor.grafana.ingress.enabled | bool | `true` | |
140140
| scroll-monitor.grafana.ingress.hosts[0] | string | `"grafana.scrollsdk"` | |
141+
| scroll-monitor.grafana.ingress.ingressClassName | string | `"nginx"` | |
141142
| scroll-monitor.kube-prometheus-stack.enabled | bool | `true` | |
142143
| scroll-monitor.loki.enabled | bool | `true` | |
143144
| scroll-monitor.promtail.enabled | bool | `true` | |

0 commit comments

Comments
 (0)