Skip to content

Commit 9c6c5ae

Browse files
authored
Managed K8S resources should match standalone. (#2288)
The CPU and memory requests for a standalone agent were updated to higher values than what is currently used for Fleet managed agents. Update the managed configuration to match the standalone configuration there is no reason for them to be different.
1 parent a6d0a9f commit 9c6c5ae

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

deploy/kubernetes/elastic-agent-managed-kubernetes.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ spec:
6666
runAsUser: 0
6767
resources:
6868
limits:
69-
memory: 500Mi
69+
memory: 700Mi
7070
requests:
7171
cpu: 100m
72-
memory: 200Mi
72+
memory: 400Mi
7373
volumeMounts:
7474
- name: proc
7575
mountPath: /hostfs/proc

deploy/kubernetes/elastic-agent-managed/elastic-agent-managed-daemonset.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ spec:
6666
runAsUser: 0
6767
resources:
6868
limits:
69-
memory: 500Mi
69+
memory: 700Mi
7070
requests:
7171
cpu: 100m
72-
memory: 200Mi
72+
memory: 400Mi
7373
volumeMounts:
7474
- name: proc
7575
mountPath: /hostfs/proc

dev-tools/kubernetes/base/elastic-agent-managed/daemonset.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ spec:
3838
runAsUser: 0
3939
resources:
4040
limits:
41-
memory: 500Mi
41+
memory: 700Mi
4242
requests:
4343
cpu: 100m
44-
memory: 200Mi
44+
memory: 400Mi
4545
volumeMounts:
4646
- name: proc
4747
mountPath: /hostfs/proc

0 commit comments

Comments
 (0)