Skip to content

Commit 0ce6610

Browse files
authored
Adding changes for Fleet v4.55.1 (#21319)
1 parent e0c845e commit 0ce6610

27 files changed

+37
-33
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## Fleet 4.55.1 (Aug 14, 2024)
2+
3+
### Bug fixes
4+
5+
* Added a disabled overlay to the Other Workflows modal on the policy page.
6+
* Updated text for "Turn on MDM" banners in UI.
7+
* Fixed a bug when a cached prepared statement got deleted in the MySQL server itself without Fleet knowing.
8+
* Continued with an empty CVE description when the NVD CVE feed didn't include description entries (instead of panicking).
9+
* Scheduled maintenance events are now scheduled over calendar events marked "Free" (not busy) in Google Calendar.
10+
* Fixed a bug where the wrong API path was used to download a software installer.
11+
* Improved fleetctl gitops error message when trying to change team name to a team that already exists.
12+
* Updated ABM (Apple Business Manager) host tooltip copy on the manage host page to clarify when host vitals will be available to view.
13+
* Added index to query_results DB table to speed up finding the last query timestamp for a given query and host.
14+
* Displayed the label names in case-insensitive alphabetical order in the fleet UI.
15+
116
## Fleet 4.55.0 (Aug 8, 2024)
217

318
**NOTE:** Beginning with v4.55.0, Fleet no longer supports MySQL 5.7 because it has reached [end of life](https://mattermost.com/blog/mysql-5-7-reached-eol-upgrade-to-mysql-8-x-today/#:~:text=In%20October%202023%2C%20MySQL%205.7,to%20upgrade%20to%20MySQL%208.). The minimum version supported is MySQL 8.0.36.

changes/20194-sort-label-names-in-ui

-1
This file was deleted.

changes/20781-cached-statements

-1
This file was deleted.

changes/20882-ui-update-turn-on-mdm-banner

-1
This file was deleted.

changes/20933-disable-overlay-other-workflows-modal

-1
This file was deleted.

changes/21065-update-host-tooltip-copy

-2
This file was deleted.

changes/21104-gitops-team-conflict

-1
This file was deleted.

changes/21242-nvd-input-validation

-1
This file was deleted.

changes/21251-bugfix-download-software-installer

-1
This file was deleted.

changes/21268-calendar-free

-1
This file was deleted.

changes/21296-query-results-index

-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.0
11+
appVersion: v4.55.1
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.0 # Version of Fleet to deploy
6+
imageTag: v4.55.1 # 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.0"
59+
default = "fleetdm/fleet:v4.55.1"
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.0"
71+
default = "fleetdm/fleet:v4.55.1"
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.0")
27+
image = optional(string, "fleetdm/fleet:v4.55.1")
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.0"
85+
image = "fleetdm/fleet:v4.55.1"
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.0")<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.0",<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.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 |
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.0")
19+
image = optional(string, "fleetdm/fleet:v4.55.1")
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.0"
123+
image = "fleetdm/fleet:v4.55.1"
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.0")
80+
image = optional(string, "fleetdm/fleet:v4.55.1")
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.0"
209+
image = "fleetdm/fleet:v4.55.1"
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.0"
20+
fleet_image = "fleetdm/fleet:v4.55.1"
2121
domain_name = "example.com"
2222
}
2323

0 commit comments

Comments
 (0)