Skip to content

Commit 2375d86

Browse files
committed
fix: possibly collect logs in promtail :)
1 parent 37a624c commit 2375d86

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

charts/dashboard/templates/dashboard-deployment.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
subPath: {{ .Values.app.metadata.name }}/data
2727
name: config-volume
2828
- mountPath: /var/log
29-
name: log-volume
29+
name: shared-log-volume
3030
ports:
3131
- containerPort: 3000
3232
env:
@@ -39,8 +39,10 @@ spec:
3939
- name: config-volume
4040
persistentVolumeClaim:
4141
claimName: nfs-pvc
42-
- name: log-volume
43-
emptyDir: {}
42+
- name: shared-log-volume
43+
hostPath:
44+
path: /var/log
45+
type: Directory
4446

4547
---
4648
apiVersion: v1

src/styles/globals.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,7 @@ body,
7676
height: 16px;
7777
border-radius: 50%;
7878
}
79+
80+
::-webkit-scrollbar {
81+
display: none;
82+
}

0 commit comments

Comments
 (0)