Skip to content

Commit 7047501

Browse files
authored
limit collector container resource requests (#11)
1 parent 9b2b2f9 commit 7047501

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.github/workflows/reindex.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
release:
55
types: [released]
66
workflow_dispatch:
7+
workflow_call:
78

89
permissions:
910
id-token: write

.github/workflows/release.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77

88
permissions:
99
contents: write
10+
id-token: write
11+
pages: write
1012

1113
jobs:
1214
release:
@@ -25,4 +27,8 @@ jobs:
2527
- name: Create a release
2628
uses: softprops/[email protected]
2729
with:
28-
files: '*.tgz'
30+
files: '*.tgz'
31+
32+
reindex:
33+
needs: release
34+
uses: ./.github/workflows/reindex.yaml

Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: collector
33
description: A Helm chart for Better Stack Collector - monitoring solution that collects metrics, logs, and traces
44
type: application
5-
version: 0.1.10
5+
version: 0.1.11
66
appVersion: "latest"
77
keywords:
88
- monitoring

values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ collector:
2222
cpu: 2000m
2323
memory: 2Gi
2424
requests:
25-
cpu: 2000m
26-
memory: 2Gi
25+
cpu: 500m
26+
memory: 512Mi
2727

2828
# Node selector
2929
nodeSelector: {}
@@ -73,7 +73,7 @@ beyla:
7373
cpu: 1000m
7474
memory: 1536Mi
7575
requests:
76-
cpu: 1000m
76+
cpu: 500m
7777
memory: 1536Mi
7878

7979
# Memory restart threshold in MiB (optional)

0 commit comments

Comments
 (0)