File tree 2 files changed +87
-1
lines changed
2 files changed +87
-1
lines changed Original file line number Diff line number Diff line change 12
12
enabled : true
13
13
minio :
14
14
enabled : true
15
- createSecret : true
15
+ createSecret : false
16
16
17
17
cloud :
18
18
logs :
@@ -32,3 +32,85 @@ grafana:
32
32
paths :
33
33
- path : /
34
34
pathType : Prefix
35
+
36
+ minio :
37
+ existingSecret : " "
38
+ rootUser : " abcdefghi"
39
+ rootPassword : " defghijkl"
40
+
41
+ loki :
42
+ deploymentMode : SingleBinary
43
+ singleBinary :
44
+ replicas : 1
45
+ resources :
46
+ limits :
47
+ cpu : 3
48
+ memory : 4Gi
49
+ requests :
50
+ cpu : 2
51
+ memory : 2Gi
52
+ extraEnv :
53
+ # Keep a little bit lower than memory limits
54
+ - name : GOMEMLIMIT
55
+ value : 3750MiB
56
+
57
+ chunksCache :
58
+ # default is 500MB, with limited memory keep this smaller
59
+ writebackSizeLimit : 10MB
60
+
61
+ # Zero out replica counts of other deployment modes
62
+ backend :
63
+ replicas : 0
64
+ read :
65
+ replicas : 0
66
+ write :
67
+ replicas : 0
68
+
69
+ ingester :
70
+ replicas : 0
71
+ querier :
72
+ replicas : 0
73
+ queryFrontend :
74
+ replicas : 0
75
+ queryScheduler :
76
+ replicas : 0
77
+ distributor :
78
+ replicas : 0
79
+ compactor :
80
+ replicas : 0
81
+ indexGateway :
82
+ replicas : 0
83
+ bloomCompactor :
84
+ replicas : 0
85
+ bloomGateway :
86
+ replicas : 0
87
+
88
+ mimir-distributed :
89
+ minio :
90
+ enabled : false
91
+ global :
92
+ extraEnvFrom :
93
+ - secretRef :
94
+ name : " meta-minio"
95
+
96
+ tempo-distributed :
97
+ distributor :
98
+ extraEnvFrom :
99
+ - secretRef :
100
+ name : " meta-minio"
101
+ ingester :
102
+ extraEnvFrom :
103
+ - secretRef :
104
+ name : " meta-minio"
105
+ compactor :
106
+ extraEnvFrom :
107
+ - secretRef :
108
+ name : " meta-minio"
109
+ querier :
110
+ extraEnvFrom :
111
+ - secretRef :
112
+ name : " meta-minio"
113
+ queryFrontend :
114
+ extraEnvFrom :
115
+ - secretRef :
116
+ name : " meta-minio"
Original file line number Diff line number Diff line change 51
51
protocol : TCP
52
52
envFrom :
53
53
- secretRef :
54
+ {{- if .Values.local.minio.enabled }}
55
+ name : {{ $.Release.Namespace }}-minio
56
+ {{- else }}
54
57
name : minio
58
+ {{- end }}
55
59
readinessProbe :
56
60
failureThreshold : 3
57
61
httpGet :
You can’t perform that action at this time.
0 commit comments