Adding changes for Fleet v4.62.2 (#25564)
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
## Fleet 4.62.2 (Jan 17, 2025)
|
||||
|
||||
### Bug fixes
|
||||
|
||||
* Removed request timeout on bootstrap package uploads for consistency with software package upload endpoints.
|
||||
* Fixed bug where iOS devices were being removed prematurely by expiration policy.
|
||||
|
||||
## Fleet 4.62.1 (Jan 14, 2025)
|
||||
|
||||
### Bug fixes
|
||||
|
||||
@@ -4,11 +4,11 @@ name: fleet
|
||||
keywords:
|
||||
- fleet
|
||||
- osquery
|
||||
version: v6.3.2
|
||||
version: v6.3.3
|
||||
home: https://github.com/fleetdm/fleet
|
||||
sources:
|
||||
- https://github.com/fleetdm/fleet.git
|
||||
appVersion: v4.62.1
|
||||
appVersion: v4.62.2
|
||||
dependencies:
|
||||
- name: mysql
|
||||
condition: mysql.enabled
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
hostName: fleet.localhost
|
||||
replicas: 3 # The number of Fleet instances to deploy
|
||||
imageRepository: fleetdm/fleet
|
||||
imageTag: v4.62.1 # Version of Fleet to deploy
|
||||
imageTag: v4.62.2 # Version of Fleet to deploy
|
||||
podAnnotations: {} # Additional annotations to add to the Fleet pod
|
||||
serviceAnnotations: {} # Additional annotations to add to the Fleet service
|
||||
serviceAccountAnnotations: {} # Additional annotations to add to the Fleet service account
|
||||
|
||||
@@ -56,7 +56,7 @@ variable "database_name" {
|
||||
|
||||
variable "fleet_image" {
|
||||
description = "the name of the container image to run"
|
||||
default = "fleetdm/fleet:v4.62.1"
|
||||
default = "fleetdm/fleet:v4.62.2"
|
||||
}
|
||||
|
||||
variable "software_inventory" {
|
||||
|
||||
@@ -68,7 +68,7 @@ variable "redis_mem" {
|
||||
}
|
||||
|
||||
variable "image" {
|
||||
default = "fleetdm/fleet:v4.62.1"
|
||||
default = "fleetdm/fleet:v4.62.2"
|
||||
}
|
||||
|
||||
variable "software_installers_bucket_name" {
|
||||
|
||||
+2
-2
@@ -2,8 +2,8 @@
|
||||
# Manual edits may be lost in future updates.
|
||||
|
||||
provider "registry.terraform.io/hashicorp/aws" {
|
||||
version = "4.62.1"
|
||||
constraints = ">= 3.0.0, >= 4.8.0, >= 4.9.0, ~> 4.62.1"
|
||||
version = "4.62.2"
|
||||
constraints = ">= 3.0.0, >= 4.8.0, >= 4.9.0, ~> 4.62.2"
|
||||
hashes = [
|
||||
"h1:fuIdjl9f2JEH0TLoq5kc9NIPbJAAV7YBbZ8fvNp5XSg=",
|
||||
"zh:0341a460210463a0bebd5c12ce13dc49bd8cae2399b215418c5efa607fed84e4",
|
||||
|
||||
@@ -2,7 +2,7 @@ terraform {
|
||||
required_providers {
|
||||
aws = {
|
||||
source = "hashicorp/aws"
|
||||
version = "~> 4.62.1"
|
||||
version = "~> 4.62.2"
|
||||
}
|
||||
}
|
||||
backend "s3" {
|
||||
|
||||
@@ -2,7 +2,7 @@ terraform {
|
||||
required_providers {
|
||||
aws = {
|
||||
source = "hashicorp/aws"
|
||||
version = "~> 4.62.1"
|
||||
version = "~> 4.62.2"
|
||||
}
|
||||
}
|
||||
backend "s3" {
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
# Manual edits may be lost in future updates.
|
||||
|
||||
provider "registry.terraform.io/hashicorp/aws" {
|
||||
version = "4.62.1"
|
||||
constraints = ">= 3.63.0, ~> 4.62.1"
|
||||
version = "4.62.2"
|
||||
constraints = ">= 3.63.0, ~> 4.62.2"
|
||||
hashes = [
|
||||
"h1:fuIdjl9f2JEH0TLoq5kc9NIPbJAAV7YBbZ8fvNp5XSg=",
|
||||
"zh:0341a460210463a0bebd5c12ce13dc49bd8cae2399b215418c5efa607fed84e4",
|
||||
|
||||
@@ -20,7 +20,7 @@ terraform {
|
||||
required_providers {
|
||||
aws = {
|
||||
source = "hashicorp/aws"
|
||||
version = "~> 4.62.1"
|
||||
version = "~> 4.62.2"
|
||||
}
|
||||
}
|
||||
backend "s3" {
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
# Manual edits may be lost in future updates.
|
||||
|
||||
provider "registry.terraform.io/hashicorp/aws" {
|
||||
version = "4.62.1"
|
||||
constraints = ">= 3.0.0, >= 4.8.0, >= 4.9.0, ~> 4.62.1"
|
||||
version = "4.62.2"
|
||||
constraints = ">= 3.0.0, >= 4.8.0, >= 4.9.0, ~> 4.62.2"
|
||||
hashes = [
|
||||
"h1:fuIdjl9f2JEH0TLoq5kc9NIPbJAAV7YBbZ8fvNp5XSg=",
|
||||
"zh:0341a460210463a0bebd5c12ce13dc49bd8cae2399b215418c5efa607fed84e4",
|
||||
|
||||
@@ -15,7 +15,7 @@ terraform {
|
||||
required_providers {
|
||||
aws = {
|
||||
source = "hashicorp/aws"
|
||||
version = "~> 4.62.1"
|
||||
version = "~> 4.62.2"
|
||||
}
|
||||
}
|
||||
backend "s3" {
|
||||
|
||||
@@ -2,7 +2,7 @@ terraform {
|
||||
required_providers {
|
||||
aws = {
|
||||
source = "hashicorp/aws"
|
||||
version = "~> 4.62.1"
|
||||
version = "~> 4.62.2"
|
||||
}
|
||||
}
|
||||
backend "s3" {
|
||||
|
||||
@@ -9,7 +9,7 @@ No requirements.
|
||||
|
||||
| Name | Version |
|
||||
|------|---------|
|
||||
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.62.1 |
|
||||
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.62.2 |
|
||||
|
||||
## Modules
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ variable "fleet_config" {
|
||||
vuln_processing_cpu = optional(number, 2048)
|
||||
vuln_data_stream_mem = optional(number, 1024)
|
||||
vuln_data_stream_cpu = optional(number, 512)
|
||||
image = optional(string, "fleetdm/fleet:v4.62.1")
|
||||
image = optional(string, "fleetdm/fleet:v4.62.2")
|
||||
family = optional(string, "fleet-vuln-processing")
|
||||
sidecars = optional(list(any), [])
|
||||
extra_environment_variables = optional(map(string), {})
|
||||
@@ -82,7 +82,7 @@ variable "fleet_config" {
|
||||
vuln_processing_cpu = 2048
|
||||
vuln_data_stream_mem = 1024
|
||||
vuln_data_stream_cpu = 512
|
||||
image = "fleetdm/fleet:v4.62.1"
|
||||
image = "fleetdm/fleet:v4.62.2"
|
||||
family = "fleet-vuln-processing"
|
||||
sidecars = []
|
||||
extra_environment_variables = {}
|
||||
|
||||
@@ -6,7 +6,7 @@ No requirements.
|
||||
|
||||
| Name | Version |
|
||||
|------|---------|
|
||||
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.62.1 |
|
||||
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.62.2 |
|
||||
|
||||
## Modules
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ variable "fleet_config" {
|
||||
mem = optional(number, 4096)
|
||||
cpu = optional(number, 512)
|
||||
pid_mode = optional(string, null)
|
||||
image = optional(string, "fleetdm/fleet:v4.62.1")
|
||||
image = optional(string, "fleetdm/fleet:v4.62.2")
|
||||
family = optional(string, "fleet")
|
||||
sidecars = optional(list(any), [])
|
||||
depends_on = optional(list(any), [])
|
||||
@@ -119,7 +119,7 @@ variable "fleet_config" {
|
||||
mem = 512
|
||||
cpu = 256
|
||||
pid_mode = null
|
||||
image = "fleetdm/fleet:v4.62.1"
|
||||
image = "fleetdm/fleet:v4.62.2"
|
||||
family = "fleet"
|
||||
sidecars = []
|
||||
depends_on = []
|
||||
|
||||
@@ -77,7 +77,7 @@ variable "fleet_config" {
|
||||
mem = optional(number, 4096)
|
||||
cpu = optional(number, 512)
|
||||
pid_mode = optional(string, null)
|
||||
image = optional(string, "fleetdm/fleet:v4.62.1")
|
||||
image = optional(string, "fleetdm/fleet:v4.62.2")
|
||||
family = optional(string, "fleet")
|
||||
sidecars = optional(list(any), [])
|
||||
depends_on = optional(list(any), [])
|
||||
@@ -205,7 +205,7 @@ variable "fleet_config" {
|
||||
mem = 512
|
||||
cpu = 256
|
||||
pid_mode = null
|
||||
image = "fleetdm/fleet:v4.62.1"
|
||||
image = "fleetdm/fleet:v4.62.2"
|
||||
family = "fleet"
|
||||
sidecars = []
|
||||
depends_on = []
|
||||
|
||||
@@ -17,7 +17,7 @@ provider "aws" {
|
||||
}
|
||||
|
||||
locals {
|
||||
fleet_image = "fleetdm/fleet:v4.62.1"
|
||||
fleet_image = "fleetdm/fleet:v4.62.2"
|
||||
domain_name = "example.com"
|
||||
}
|
||||
|
||||
|
||||
@@ -170,7 +170,7 @@ variable "fleet_config" {
|
||||
mem = optional(number, 4096)
|
||||
cpu = optional(number, 512)
|
||||
pid_mode = optional(string, null)
|
||||
image = optional(string, "fleetdm/fleet:v4.62.1")
|
||||
image = optional(string, "fleetdm/fleet:v4.62.2")
|
||||
family = optional(string, "fleet")
|
||||
sidecars = optional(list(any), [])
|
||||
depends_on = optional(list(any), [])
|
||||
@@ -298,7 +298,7 @@ variable "fleet_config" {
|
||||
mem = 512
|
||||
cpu = 256
|
||||
pid_mode = null
|
||||
image = "fleetdm/fleet:v4.62.1"
|
||||
image = "fleetdm/fleet:v4.62.2"
|
||||
family = "fleet"
|
||||
sidecars = []
|
||||
depends_on = []
|
||||
|
||||
@@ -63,8 +63,8 @@ module "fleet" {
|
||||
|
||||
fleet_config = {
|
||||
# To avoid pull-rate limiting from dockerhub, consider using our quay.io mirror
|
||||
# for the Fleet image. e.g. "quay.io/fleetdm/fleet:v4.62.1"
|
||||
image = "fleetdm/fleet:v4.62.1" # override default to deploy the image you desire
|
||||
# for the Fleet image. e.g. "quay.io/fleetdm/fleet:v4.62.2"
|
||||
image = "fleetdm/fleet:v4.62.2" # override default to deploy the image you desire
|
||||
# See https://fleetdm.com/docs/deploy/reference-architectures#aws for appropriate scaling
|
||||
# memory and cpu.
|
||||
autoscaling = {
|
||||
|
||||
@@ -218,7 +218,7 @@ variable "fleet_config" {
|
||||
mem = optional(number, 4096)
|
||||
cpu = optional(number, 512)
|
||||
pid_mode = optional(string, null)
|
||||
image = optional(string, "fleetdm/fleet:v4.62.1")
|
||||
image = optional(string, "fleetdm/fleet:v4.62.2")
|
||||
family = optional(string, "fleet")
|
||||
sidecars = optional(list(any), [])
|
||||
depends_on = optional(list(any), [])
|
||||
@@ -346,7 +346,7 @@ variable "fleet_config" {
|
||||
mem = 512
|
||||
cpu = 256
|
||||
pid_mode = null
|
||||
image = "fleetdm/fleet:v4.62.1"
|
||||
image = "fleetdm/fleet:v4.62.2"
|
||||
family = "fleet"
|
||||
sidecars = []
|
||||
depends_on = []
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "fleetctl",
|
||||
"version": "v4.62.1",
|
||||
"version": "v4.62.2",
|
||||
"description": "Installer for the fleetctl CLI tool",
|
||||
"bin": {
|
||||
"fleetctl": "./run.js"
|
||||
|
||||
Reference in New Issue
Block a user