mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 00:45:19 +00:00
Updating changelog for 4.47.3 (#17871)
This commit is contained in:
parent
087d758111
commit
f2b3a58bff
@ -1,3 +1,9 @@
|
||||
## Fleet 4.47.3 (Mar 26, 2024)
|
||||
|
||||
### Bug fixes
|
||||
|
||||
* Fixed a bug where valid Windows MDM enrollments would show up as unmanaged (EnrollmentState 3).
|
||||
|
||||
## Fleet 4.47.2 (Mar 22, 2024)
|
||||
|
||||
### Bug fixes
|
||||
|
@ -8,7 +8,7 @@ version: v6.0.2
|
||||
home: https://github.com/fleetdm/fleet
|
||||
sources:
|
||||
- https://github.com/fleetdm/fleet.git
|
||||
appVersion: v4.47.2
|
||||
appVersion: v4.47.3
|
||||
dependencies:
|
||||
- name: mysql
|
||||
condition: mysql.enabled
|
||||
|
@ -2,7 +2,7 @@
|
||||
# All settings related to how Fleet is deployed in Kubernetes
|
||||
hostName: fleet.localhost
|
||||
replicas: 3 # The number of Fleet instances to deploy
|
||||
imageTag: v4.47.2 # Version of Fleet to deploy
|
||||
imageTag: v4.47.3 # Version of Fleet to deploy
|
||||
podAnnotations: {} # Additional annotations to add to the Fleet pod
|
||||
serviceAccountAnnotations: {} # Additional annotations to add to the Fleet service account
|
||||
resources:
|
||||
|
@ -56,7 +56,7 @@ variable "database_name" {
|
||||
|
||||
variable "fleet_image" {
|
||||
description = "the name of the container image to run"
|
||||
default = "fleetdm/fleet:v4.47.2"
|
||||
default = "fleetdm/fleet:v4.47.3"
|
||||
}
|
||||
|
||||
variable "software_inventory" {
|
||||
|
@ -68,5 +68,5 @@ variable "redis_mem" {
|
||||
}
|
||||
|
||||
variable "image" {
|
||||
default = "fleet:v4.47.2"
|
||||
default = "fleet:v4.47.3"
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
@ -13,7 +13,7 @@ variable "fleet_config" {
|
||||
type = object({
|
||||
mem = optional(number, 4096)
|
||||
cpu = optional(number, 512)
|
||||
image = optional(string, "fleetdm/fleet:v4.47.2")
|
||||
image = optional(string, "fleetdm/fleet:v4.47.3")
|
||||
family = optional(string, "fleet")
|
||||
sidecars = optional(list(any), [])
|
||||
depends_on = optional(list(any), [])
|
||||
|
@ -74,7 +74,7 @@ variable "fleet_config" {
|
||||
type = object({
|
||||
mem = optional(number, 4096)
|
||||
cpu = optional(number, 512)
|
||||
image = optional(string, "fleetdm/fleet:v4.47.2")
|
||||
image = optional(string, "fleetdm/fleet:v4.47.3")
|
||||
family = optional(string, "fleet")
|
||||
sidecars = optional(list(any), [])
|
||||
depends_on = optional(list(any), [])
|
||||
|
@ -17,7 +17,7 @@ provider "aws" {
|
||||
}
|
||||
|
||||
locals {
|
||||
fleet_image = "fleetdm/fleet:v4.47.2"
|
||||
fleet_image = "fleetdm/fleet:v4.47.3"
|
||||
domain_name = "example.com"
|
||||
}
|
||||
|
||||
|
@ -167,7 +167,7 @@ variable "fleet_config" {
|
||||
type = object({
|
||||
mem = optional(number, 4096)
|
||||
cpu = optional(number, 512)
|
||||
image = optional(string, "fleetdm/fleet:v4.47.2")
|
||||
image = optional(string, "fleetdm/fleet:v4.47.3")
|
||||
family = optional(string, "fleet")
|
||||
sidecars = optional(list(any), [])
|
||||
depends_on = optional(list(any), [])
|
||||
|
@ -59,8 +59,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.47.2"
|
||||
image = "fleetdm/fleet:v4.47.2" # override default to deploy the image you desire
|
||||
# for the Fleet image. e.g. "quay.io/fleetdm/fleet:v4.47.3"
|
||||
image = "fleetdm/fleet:v4.47.3" # override default to deploy the image you desire
|
||||
# See https://fleetdm.com/docs/deploy/reference-architectures#aws for appropriate scaling
|
||||
# memory and cpu.
|
||||
autoscaling = {
|
||||
|
@ -215,7 +215,7 @@ variable "fleet_config" {
|
||||
type = object({
|
||||
mem = optional(number, 4096)
|
||||
cpu = optional(number, 512)
|
||||
image = optional(string, "fleetdm/fleet:v4.47.2")
|
||||
image = optional(string, "fleetdm/fleet:v4.47.3")
|
||||
family = optional(string, "fleet")
|
||||
sidecars = optional(list(any), [])
|
||||
depends_on = optional(list(any), [])
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "fleetctl",
|
||||
"version": "v4.47.2",
|
||||
"version": "v4.47.3",
|
||||
"description": "Installer for the fleetctl CLI tool",
|
||||
"bin": {
|
||||
"fleetctl": "./run.js"
|
||||
|
Loading…
Reference in New Issue
Block a user