Skip to content

Commit 534f1be

Browse files
shu-unifrayiweichi
andauthored
set default namespace and disable loki (#212)
* set default namespace to 'default' for dashboard Kubernetes / Views / Pods * disable loki * prometheus chart should installed first * bump version --------- Co-authored-by: Morty <[email protected]>
1 parent 3c6e315 commit 534f1be

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
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.6
5+
version: 0.0.7
66
appVersion: v0.1.0
77
kubeVersion: ">=1.22.0-0"
88
maintainers:

charts/scroll-monitor/grafana/kubernetes-dashboards/k8s-views-pods.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2572,9 +2572,9 @@
25722572
},
25732573
{
25742574
"current": {
2575-
"selected": false,
2576-
"text": "monitoring",
2577-
"value": "monitoring"
2575+
"selected": true,
2576+
"text": "default",
2577+
"value": "default"
25782578
},
25792579
"datasource": {
25802580
"type": "prometheus",

charts/scroll-monitor/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ grafana:
5353
- "grafana.scrollsdk"
5454

5555
loki:
56-
enabled: true
56+
enabled: false
5757
fullnameOverride: loki
5858
deploymentMode: SingleBinary
5959
persistence:

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.57
5+
version: 0.0.58
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.6
101+
version: 0.0.7
102102
repository: "oci://ghcr.io/scroll-tech/scroll-sdk/helm"
103103
condition: scroll-monitor.enabled
104104
- name: admin-system-backend

charts/scroll-sdk/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ scroll-monitor:
136136
hosts:
137137
- grafana.scrollsdk
138138
loki:
139-
enabled: true
139+
enabled: false
140140
promtail:
141141
enabled: true
142142
kube-prometheus-stack:

devnet/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ L1_RPC_HOST := l1-devnet.scrollsdk
77

88
bootstrap:
99
echo "Pulling helm chart..."
10-
helm pull oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-sdk --version 0.0.57
10+
helm pull oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-sdk --version 0.0.58
1111
echo "Extracting helm chart..."
1212
tar -xvf *.tgz
1313
$(MAKE) config

examples/Makefile.example

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
NAMESPACE ?= default
22

33
install:
4+
helm upgrade -i scroll-monitor oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-monitor -n $(NAMESPACE) \
5+
--version=0.0.4 \
6+
--values values/scroll-monitor-production.yaml \
7+
--values values/alert-manager.yaml
8+
49
helm upgrade -i scroll-common oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-common -n $(NAMESPACE) \
510
--version=0.0.4 \
611
--values values/genesis.yaml
@@ -90,11 +95,6 @@ install:
9095
--values values/scroll-common-config-contracts.yaml \
9196
--values values/scroll-common-config.yaml
9297

93-
helm upgrade -i scroll-monitor oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-monitor -n $(NAMESPACE) \
94-
--version=0.0.4 \
95-
--values values/scroll-monitor-production.yaml \
96-
--values values/alert-manager.yaml
97-
9898
helm upgrade -i balance-checker oci://ghcr.io/scroll-tech/scroll-sdk/helm/balance-checker -n $(NAMESPACE) \
9999
--version=0.0.4 \
100100
--values values/balance-checker-production.yaml \

0 commit comments

Comments
 (0)