File tree Expand file tree Collapse file tree 2 files changed +28
-5
lines changed Expand file tree Collapse file tree 2 files changed +28
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ token_url = https://accounts.google.com/o/oauth2/token
12
12
allowed_domains = zinclabs.io
13
13
allow_sign_up = true
14
14
15
- enable_alpha = false
15
+ [plugins]
16
+ enable_alpha = true
16
17
app_tls_skip_verify_insecure = false
17
18
# Enter a comma-separated list of plugin identifiers to identify plugins to load even if they are unsigned. Plugins with modified signatures are never loaded.
18
19
allow_loading_unsigned_plugins = zinclabs_zincobserve
Original file line number Diff line number Diff line change
1
+ apiVersion : cert-manager.io/v1
2
+ kind : Issuer
3
+ metadata :
4
+ name : letsencrypt-prod
5
+ spec :
6
+ acme :
7
+
8
+ privateKeySecretRef :
9
+ name : letsencrypt-prod
10
+ server : https://acme-v02.api.letsencrypt.org/directory
11
+ solvers :
12
+ - http01 :
13
+ ingress :
14
+ class : nginx
15
+ ---
16
+
1
17
apiVersion : apps/v1
2
18
kind : StatefulSet
3
19
metadata :
@@ -13,10 +29,14 @@ spec:
13
29
labels :
14
30
app : grafana
15
31
spec :
16
- initContainers :
17
- - name : zincobserve_plugin_loader
18
- image : busybox
19
- command : ['sh', '-c', 'cp -R /code/dist/* /var/lib/grafana/plugins/']
32
+ securityContext :
33
+ fsGroup : 2000
34
+ runAsUser : 10000
35
+ runAsGroup : 3000
36
+ # initContainers:
37
+ # - name: zincobserve_plugin_loader
38
+ # image: busybox
39
+ # command: ['sh', '-c', 'cp -R /code/dist/* /var/lib/grafana/plugins/']
20
40
containers :
21
41
- name : grafana
22
42
image : grafana/grafana:latest
28
48
mountPath : /var/lib/grafana
29
49
- name : grafana-plugins
30
50
mountPath : /var/lib/grafana/plugins
51
+ - name : grafana-config
52
+ mountPath : /etc/grafana
31
53
volumes :
32
54
- name : grafana-base
33
55
persistentVolumeClaim :
You can’t perform that action at this time.
0 commit comments