Skip to content

Commit 07c520e

Browse files
authored
Adding changes for Fleet v4.55.2 (#21831)
1 parent 6e448f2 commit 07c520e

File tree

19 files changed

+29
-25
lines changed

19 files changed

+29
-25
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## Fleet 4.55.2 (Sep 05, 2024)
2+
3+
### Bug fixes
4+
5+
* Removed validation of APNS certificate from server startup. This was no longer necessary because we now allow for APNS certificates to be renewed in the UI.
6+
* Fixed logic to properly catch and log APNs errors.
7+
18
## Fleet 4.55.1 (Aug 14, 2024)
29

310
### Bug fixes

changes/21683-apns-cert-validation-on-start

-2
This file was deleted.

changes/apns-errors

-1
This file was deleted.

charts/fleet/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version: v6.2.0
88
home: https://github.com/fleetdm/fleet
99
sources:
1010
- https://github.com/fleetdm/fleet.git
11-
appVersion: v4.55.1
11+
appVersion: v4.55.2
1212
dependencies:
1313
- name: mysql
1414
condition: mysql.enabled

charts/fleet/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
hostName: fleet.localhost
44
replicas: 3 # The number of Fleet instances to deploy
55
imageRepository: fleetdm/fleet
6-
imageTag: v4.55.1 # Version of Fleet to deploy
6+
imageTag: v4.55.2 # Version of Fleet to deploy
77
podAnnotations: {} # Additional annotations to add to the Fleet pod
88
serviceAccountAnnotations: {} # Additional annotations to add to the Fleet service account
99
resources:

infrastructure/dogfood/terraform/aws/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ variable "database_name" {
5656

5757
variable "fleet_image" {
5858
description = "the name of the container image to run"
59-
default = "fleetdm/fleet:v4.55.1"
59+
default = "fleetdm/fleet:v4.55.2"
6060
}
6161

6262
variable "software_inventory" {

infrastructure/dogfood/terraform/gcp/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ variable "redis_mem" {
6868
}
6969

7070
variable "image" {
71-
default = "fleetdm/fleet:v4.55.1"
71+
default = "fleetdm/fleet:v4.55.2"
7272
}
7373

7474
variable "software_installers_bucket_name" {

terraform/README.md

+1-1
Large diffs are not rendered by default.

terraform/addons/vuln-processing/variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ variable "fleet_config" {
2424
vuln_processing_cpu = optional(number, 2048)
2525
vuln_data_stream_mem = optional(number, 1024)
2626
vuln_data_stream_cpu = optional(number, 512)
27-
image = optional(string, "fleetdm/fleet:v4.55.1")
27+
image = optional(string, "fleetdm/fleet:v4.55.2")
2828
family = optional(string, "fleet-vuln-processing")
2929
sidecars = optional(list(any), [])
3030
extra_environment_variables = optional(map(string), {})
@@ -82,7 +82,7 @@ variable "fleet_config" {
8282
vuln_processing_cpu = 2048
8383
vuln_data_stream_mem = 1024
8484
vuln_data_stream_cpu = 512
85-
image = "fleetdm/fleet:v4.55.1"
85+
image = "fleetdm/fleet:v4.55.2"
8686
family = "fleet-vuln-processing"
8787
sidecars = []
8888
extra_environment_variables = {}

terraform/byo-vpc/README.md

+1-1
Large diffs are not rendered by default.

terraform/byo-vpc/byo-db/README.md

+1-1
Large diffs are not rendered by default.

terraform/byo-vpc/byo-db/byo-ecs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ No modules.
5252
| Name | Description | Type | Default | Required |
5353
|------|-------------|------|---------|:--------:|
5454
| <a name="input_ecs_cluster"></a> [ecs\_cluster](#input\_ecs\_cluster) | The name of the ECS cluster to use | `string` | n/a | yes |
55-
| <a name="input_fleet_config"></a> [fleet\_config](#input\_fleet\_config) | The configuration object for Fleet itself. Fields that default to null will have their respective resources created if not specified. | <pre>object({<br> task_mem = optional(number, null)<br> task_cpu = optional(number, null)<br> mem = optional(number, 4096)<br> cpu = optional(number, 512)<br> pid_mode = optional(string, null)<br> image = optional(string, "fleetdm/fleet:v4.55.1")<br> family = optional(string, "fleet")<br> sidecars = optional(list(any), [])<br> depends_on = optional(list(any), [])<br> mount_points = optional(list(any), [])<br> volumes = optional(list(any), [])<br> extra_environment_variables = optional(map(string), {})<br> extra_iam_policies = optional(list(string), [])<br> extra_execution_iam_policies = optional(list(string), [])<br> extra_secrets = optional(map(string), {})<br> security_groups = optional(list(string), null)<br> security_group_name = optional(string, "fleet")<br> iam_role_arn = optional(string, null)<br> repository_credentials = optional(string, "")<br> private_key_secret_name = optional(string, "fleet-server-private-key")<br> service = optional(object({<br> name = optional(string, "fleet")<br> }), {<br> name = "fleet"<br> })<br> database = object({<br> password_secret_arn = string<br> user = string<br> database = string<br> address = string<br> rr_address = optional(string, null)<br> })<br> redis = object({<br> address = string<br> use_tls = optional(bool, true)<br> })<br> awslogs = optional(object({<br> name = optional(string, null)<br> region = optional(string, null)<br> create = optional(bool, true)<br> prefix = optional(string, "fleet")<br> retention = optional(number, 5)<br> }), {<br> name = null<br> region = null<br> prefix = "fleet"<br> retention = 5<br> })<br> loadbalancer = object({<br> arn = string<br> })<br> extra_load_balancers = optional(list(any), [])<br> networking = object({<br> subnets = optional(list(string), null)<br> security_groups = optional(list(string), null)<br> ingress_sources = object({<br> cidr_blocks = optional(list(string), [])<br> ipv6_cidr_blocks = optional(list(string), [])<br> security_groups = optional(list(string), [])<br> prefix_list_ids = optional(list(string), [])<br> })<br> })<br> autoscaling = optional(object({<br> max_capacity = optional(number, 5)<br> min_capacity = optional(number, 1)<br> memory_tracking_target_value = optional(number, 80)<br> cpu_tracking_target_value = optional(number, 80)<br> }), {<br> max_capacity = 5<br> min_capacity = 1<br> memory_tracking_target_value = 80<br> cpu_tracking_target_value = 80<br> })<br> iam = optional(object({<br> role = optional(object({<br> name = optional(string, "fleet-role")<br> policy_name = optional(string, "fleet-iam-policy")<br> }), {<br> name = "fleet-role"<br> policy_name = "fleet-iam-policy"<br> })<br> execution = optional(object({<br> name = optional(string, "fleet-execution-role")<br> policy_name = optional(string, "fleet-execution-role")<br> }), {<br> name = "fleet-execution-role"<br> policy_name = "fleet-iam-policy-execution"<br> })<br> }), {<br> name = "fleetdm-execution-role"<br> })<br> software_installers = optional(object({<br> create_bucket = optional(bool, true)<br> bucket_name = optional(string, null)<br> bucket_prefix = optional(string, "fleet-software-installers-")<br> s3_object_prefix = optional(string, "")<br> }), {<br> create_bucket = true<br> bucket_name = null<br> bucket_prefix = "fleet-software-installers-"<br> s3_object_prefix = ""<br> })<br> })</pre> | <pre>{<br> "autoscaling": {<br> "cpu_tracking_target_value": 80,<br> "max_capacity": 5,<br> "memory_tracking_target_value": 80,<br> "min_capacity": 1<br> },<br> "awslogs": {<br> "create": true,<br> "name": null,<br> "prefix": "fleet",<br> "region": null,<br> "retention": 5<br> },<br> "cpu": 256,<br> "database": {<br> "address": null,<br> "database": null,<br> "password_secret_arn": null,<br> "rr_address": null,<br> "user": null<br> },<br> "depends_on": [],<br> "extra_environment_variables": {},<br> "extra_execution_iam_policies": [],<br> "extra_iam_policies": [],<br> "extra_load_balacners": [],<br> "extra_secrets": {},<br> "family": "fleet",<br> "iam": {<br> "execution": {<br> "name": "fleet-execution-role",<br> "policy_name": "fleet-iam-policy-execution"<br> },<br> "role": {<br> "name": "fleet-role",<br> "policy_name": "fleet-iam-policy"<br> }<br> },<br> "iam_role_arn": null,<br> "image": "fleetdm/fleet:v4.55.1",<br> "loadbalancer": {<br> "arn": null<br> },<br> "mem": 512,<br> "mount_points": [],<br> "networking": {<br> "ingress_sources": {<br> "cidr_blocks": [],<br> "ipv6_cidr_blocks": [],<br> "prefix_list_ids": [],<br> "security_groups": []<br> },<br> "security_groups": null,<br> "subnets": null<br> },<br> "pid_mode": null,<br> "private_key_secret_name": "fleet-server-private-key",<br> "redis": {<br> "address": null,<br> "use_tls": true<br> },<br> "repository_credentials": "",<br> "security_group_name": "fleet",<br> "security_groups": null,<br> "service": {<br> "name": "fleet"<br> },<br> "sidecars": [],<br> "software_installers": {<br> "bucket_name": null,<br> "bucket_prefix": "fleet-software-installers-",<br> "create_bucket": true,<br> "s3_object_prefix": ""<br> },<br> "task_cpu": null,<br> "task_mem": null,<br> "volumes": []<br>}</pre> | no |
55+
| <a name="input_fleet_config"></a> [fleet\_config](#input\_fleet\_config) | The configuration object for Fleet itself. Fields that default to null will have their respective resources created if not specified. | <pre>object({<br> task_mem = optional(number, null)<br> task_cpu = optional(number, null)<br> mem = optional(number, 4096)<br> cpu = optional(number, 512)<br> pid_mode = optional(string, null)<br> image = optional(string, "fleetdm/fleet:v4.55.2")<br> family = optional(string, "fleet")<br> sidecars = optional(list(any), [])<br> depends_on = optional(list(any), [])<br> mount_points = optional(list(any), [])<br> volumes = optional(list(any), [])<br> extra_environment_variables = optional(map(string), {})<br> extra_iam_policies = optional(list(string), [])<br> extra_execution_iam_policies = optional(list(string), [])<br> extra_secrets = optional(map(string), {})<br> security_groups = optional(list(string), null)<br> security_group_name = optional(string, "fleet")<br> iam_role_arn = optional(string, null)<br> repository_credentials = optional(string, "")<br> private_key_secret_name = optional(string, "fleet-server-private-key")<br> service = optional(object({<br> name = optional(string, "fleet")<br> }), {<br> name = "fleet"<br> })<br> database = object({<br> password_secret_arn = string<br> user = string<br> database = string<br> address = string<br> rr_address = optional(string, null)<br> })<br> redis = object({<br> address = string<br> use_tls = optional(bool, true)<br> })<br> awslogs = optional(object({<br> name = optional(string, null)<br> region = optional(string, null)<br> create = optional(bool, true)<br> prefix = optional(string, "fleet")<br> retention = optional(number, 5)<br> }), {<br> name = null<br> region = null<br> prefix = "fleet"<br> retention = 5<br> })<br> loadbalancer = object({<br> arn = string<br> })<br> extra_load_balancers = optional(list(any), [])<br> networking = object({<br> subnets = optional(list(string), null)<br> security_groups = optional(list(string), null)<br> ingress_sources = object({<br> cidr_blocks = optional(list(string), [])<br> ipv6_cidr_blocks = optional(list(string), [])<br> security_groups = optional(list(string), [])<br> prefix_list_ids = optional(list(string), [])<br> })<br> })<br> autoscaling = optional(object({<br> max_capacity = optional(number, 5)<br> min_capacity = optional(number, 1)<br> memory_tracking_target_value = optional(number, 80)<br> cpu_tracking_target_value = optional(number, 80)<br> }), {<br> max_capacity = 5<br> min_capacity = 1<br> memory_tracking_target_value = 80<br> cpu_tracking_target_value = 80<br> })<br> iam = optional(object({<br> role = optional(object({<br> name = optional(string, "fleet-role")<br> policy_name = optional(string, "fleet-iam-policy")<br> }), {<br> name = "fleet-role"<br> policy_name = "fleet-iam-policy"<br> })<br> execution = optional(object({<br> name = optional(string, "fleet-execution-role")<br> policy_name = optional(string, "fleet-execution-role")<br> }), {<br> name = "fleet-execution-role"<br> policy_name = "fleet-iam-policy-execution"<br> })<br> }), {<br> name = "fleetdm-execution-role"<br> })<br> software_installers = optional(object({<br> create_bucket = optional(bool, true)<br> bucket_name = optional(string, null)<br> bucket_prefix = optional(string, "fleet-software-installers-")<br> s3_object_prefix = optional(string, "")<br> }), {<br> create_bucket = true<br> bucket_name = null<br> bucket_prefix = "fleet-software-installers-"<br> s3_object_prefix = ""<br> })<br> })</pre> | <pre>{<br> "autoscaling": {<br> "cpu_tracking_target_value": 80,<br> "max_capacity": 5,<br> "memory_tracking_target_value": 80,<br> "min_capacity": 1<br> },<br> "awslogs": {<br> "create": true,<br> "name": null,<br> "prefix": "fleet",<br> "region": null,<br> "retention": 5<br> },<br> "cpu": 256,<br> "database": {<br> "address": null,<br> "database": null,<br> "password_secret_arn": null,<br> "rr_address": null,<br> "user": null<br> },<br> "depends_on": [],<br> "extra_environment_variables": {},<br> "extra_execution_iam_policies": [],<br> "extra_iam_policies": [],<br> "extra_load_balacners": [],<br> "extra_secrets": {},<br> "family": "fleet",<br> "iam": {<br> "execution": {<br> "name": "fleet-execution-role",<br> "policy_name": "fleet-iam-policy-execution"<br> },<br> "role": {<br> "name": "fleet-role",<br> "policy_name": "fleet-iam-policy"<br> }<br> },<br> "iam_role_arn": null,<br> "image": "fleetdm/fleet:v4.55.2",<br> "loadbalancer": {<br> "arn": null<br> },<br> "mem": 512,<br> "mount_points": [],<br> "networking": {<br> "ingress_sources": {<br> "cidr_blocks": [],<br> "ipv6_cidr_blocks": [],<br> "prefix_list_ids": [],<br> "security_groups": []<br> },<br> "security_groups": null,<br> "subnets": null<br> },<br> "pid_mode": null,<br> "private_key_secret_name": "fleet-server-private-key",<br> "redis": {<br> "address": null,<br> "use_tls": true<br> },<br> "repository_credentials": "",<br> "security_group_name": "fleet",<br> "security_groups": null,<br> "service": {<br> "name": "fleet"<br> },<br> "sidecars": [],<br> "software_installers": {<br> "bucket_name": null,<br> "bucket_prefix": "fleet-software-installers-",<br> "create_bucket": true,<br> "s3_object_prefix": ""<br> },<br> "task_cpu": null,<br> "task_mem": null,<br> "volumes": []<br>}</pre> | no |
5656
| <a name="input_migration_config"></a> [migration\_config](#input\_migration\_config) | The configuration object for Fleet's migration task. | <pre>object({<br> mem = number<br> cpu = number<br> })</pre> | <pre>{<br> "cpu": 1024,<br> "mem": 2048<br>}</pre> | no |
5757
| <a name="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id) | n/a | `string` | `null` | no |
5858

terraform/byo-vpc/byo-db/byo-ecs/variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ variable "fleet_config" {
1616
mem = optional(number, 4096)
1717
cpu = optional(number, 512)
1818
pid_mode = optional(string, null)
19-
image = optional(string, "fleetdm/fleet:v4.55.1")
19+
image = optional(string, "fleetdm/fleet:v4.55.2")
2020
family = optional(string, "fleet")
2121
sidecars = optional(list(any), [])
2222
depends_on = optional(list(any), [])
@@ -120,7 +120,7 @@ variable "fleet_config" {
120120
mem = 512
121121
cpu = 256
122122
pid_mode = null
123-
image = "fleetdm/fleet:v4.55.1"
123+
image = "fleetdm/fleet:v4.55.2"
124124
family = "fleet"
125125
sidecars = []
126126
depends_on = []

terraform/byo-vpc/byo-db/variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ variable "fleet_config" {
7777
mem = optional(number, 4096)
7878
cpu = optional(number, 512)
7979
pid_mode = optional(string, null)
80-
image = optional(string, "fleetdm/fleet:v4.55.1")
80+
image = optional(string, "fleetdm/fleet:v4.55.2")
8181
family = optional(string, "fleet")
8282
sidecars = optional(list(any), [])
8383
depends_on = optional(list(any), [])
@@ -206,7 +206,7 @@ variable "fleet_config" {
206206
mem = 512
207207
cpu = 256
208208
pid_mode = null
209-
image = "fleetdm/fleet:v4.55.1"
209+
image = "fleetdm/fleet:v4.55.2"
210210
family = "fleet"
211211
sidecars = []
212212
depends_on = []

terraform/byo-vpc/example/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ provider "aws" {
1717
}
1818

1919
locals {
20-
fleet_image = "fleetdm/fleet:v4.55.1"
20+
fleet_image = "fleetdm/fleet:v4.55.2"
2121
domain_name = "example.com"
2222
}
2323

terraform/byo-vpc/variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ variable "fleet_config" {
170170
mem = optional(number, 4096)
171171
cpu = optional(number, 512)
172172
pid_mode = optional(string, null)
173-
image = optional(string, "fleetdm/fleet:v4.55.1")
173+
image = optional(string, "fleetdm/fleet:v4.55.2")
174174
family = optional(string, "fleet")
175175
sidecars = optional(list(any), [])
176176
depends_on = optional(list(any), [])
@@ -299,7 +299,7 @@ variable "fleet_config" {
299299
mem = 512
300300
cpu = 256
301301
pid_mode = null
302-
image = "fleetdm/fleet:v4.55.1"
302+
image = "fleetdm/fleet:v4.55.2"
303303
family = "fleet"
304304
sidecars = []
305305
depends_on = []

terraform/example/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ module "fleet" {
6363

6464
fleet_config = {
6565
# To avoid pull-rate limiting from dockerhub, consider using our quay.io mirror
66-
# for the Fleet image. e.g. "quay.io/fleetdm/fleet:v4.55.1"
67-
image = "fleetdm/fleet:v4.55.1" # override default to deploy the image you desire
66+
# for the Fleet image. e.g. "quay.io/fleetdm/fleet:v4.55.2"
67+
image = "fleetdm/fleet:v4.55.2" # override default to deploy the image you desire
6868
# See https://fleetdm.com/docs/deploy/reference-architectures#aws for appropriate scaling
6969
# memory and cpu.
7070
autoscaling = {

0 commit comments

Comments
 (0)