Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit c43f23e

Browse files
committed
Reduce resource allocation to a tenth to run in CI
1 parent 7486f47 commit c43f23e

File tree

1 file changed

+45
-1
lines changed

1 file changed

+45
-1
lines changed

operations/phlare/helm/phlare/ci/micro-services-values.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Default values for phlare.
2+
# This is a YAML-formatted file.
3+
# Declare variables to be passed into your templates.
4+
5+
phlare:
6+
components:
7+
querier:
8+
kind: Deployment
9+
replicaCount: 3
10+
resources:
11+
limits:
12+
memory: 1Gi
13+
requests:
14+
memory: 32Mi
15+
cpu: 10m
16+
distributor:
17+
kind: Deployment
18+
replicaCount: 2
19+
resources:
20+
limits:
21+
memory: 1Gi
22+
requests:
23+
memory: 32Mi
24+
cpu: 50m
25+
agent:
26+
kind: Deployment
27+
replicaCount: 1
28+
resources:
29+
limits:
30+
memory: 512Mi
31+
requests:
32+
memory: 16Mi
33+
cpu: 5m
34+
ingester:
35+
kind: StatefulSet
36+
replicaCount: 3
37+
resources:
38+
limits:
39+
memory: 12Gi
40+
requests:
41+
memory: 256Mi
42+
cpu: 100m
43+
44+
minio:
45+
enabled: true

0 commit comments

Comments
 (0)