Skip to content

Commit

Permalink
Fix for sandbox vuln processing
Browse files Browse the repository at this point in the history
  • Loading branch information
zwinnerman-fleetdm committed Jul 14, 2023
1 parent 5cbc863 commit f3b714f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ spec:
resources:
limits:
cpu: {{ .Values.resources.limits.cpu }}
memory: {{ .Values.resources.limits.memory }}
memory: "2Gi"
requests:
cpu: {{ .Values.resources.requests.cpu }}
memory: {{ .Values.resources.requests.memory }}
memory: "2Gi"
env:
## BEGIN FLEET SECTION
- name: FLEET_SERVER_SANDBOX_ENABLED
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
value: elasticapm
- name: FLEET_LOGGING_TRACING_ENABLED
value: "true"
- name: FLEET_VULNERABILITIES_EXTERNAL_SCHEDULED
- name: FLEET_VULNERABILITIES_DISABLE_SCHEDULE
value: "true"
- name: FLEET_SESSION_DURATION
value: "1y"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,16 @@ resource "helm_release" "main" {
name = "apm.token"
value = var.apm_token
}

set {
name = "resources.limits.memory"
value = "512Mi"
}

set {
name = "resources.requests.memory"
value = "512Mi"
}
}

data "aws_iam_policy_document" "main" {
Expand Down

0 comments on commit f3b714f

Please sign in to comment.