prepare v4.38.1 (#14303)

This commit is contained in:
Roberto Dip 2023-10-05 13:13:24 -03:00 committed by GitHub
parent b110d4bd5d
commit 6702e3ddb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 18 additions and 13 deletions

View file

@ -1,3 +1,9 @@
## Fleet 4.38.1 (Oct 5, 2023)
### Bug Fixes
* Fixed a bug that would cause live queries to stall if a detail query override was set for a team.
## Fleet 4.38.0 (Sep 25, 2023)
### Changes

View file

@ -1 +0,0 @@
* Fixed a bug that would cause live queries to stall if a detail query override was set for a team.

View file

@ -8,4 +8,4 @@ version: v5.0.1
home: https://github.com/fleetdm/fleet
sources:
- https://github.com/fleetdm/fleet.git
appVersion: v4.38.0
appVersion: v4.38.1

View file

@ -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.38.0 # Version of Fleet to deploy
imageTag: v4.38.1 # 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:

View file

@ -56,7 +56,7 @@ variable "database_name" {
variable "fleet_image" {
description = "the name of the container image to run"
default = "fleetdm/fleet:v4.38.0"
default = "fleetdm/fleet:v4.38.1"
}
variable "software_inventory" {

View file

@ -68,5 +68,5 @@ variable "redis_mem" {
}
variable "image" {
default = "fleet:v4.38.0"
default = "fleet:v4.38.1"
}

View file

@ -206,7 +206,7 @@ resource "random_uuid" "jitprovisioner" {
# Use the local to make the trigger work.
locals {
fleet_tag = "v4.38.0"
fleet_tag = "v4.38.1"
}
resource "null_resource" "standard-query-library" {

View file

@ -165,7 +165,7 @@ resource "helm_release" "main" {
set {
name = "imageTag"
value = "v4.38.0"
value = "v4.38.1"
}
set {

View file

@ -13,7 +13,7 @@ variable "fleet_config" {
type = object({
mem = optional(number, 4096)
cpu = optional(number, 512)
image = optional(string, "fleetdm/fleet:v4.38.0")
image = optional(string, "fleetdm/fleet:v4.38.1")
family = optional(string, "fleet")
sidecars = optional(list(any), [])
depends_on = optional(list(any), [])

View file

@ -74,7 +74,7 @@ variable "fleet_config" {
type = object({
mem = optional(number, 4096)
cpu = optional(number, 512)
image = optional(string, "fleetdm/fleet:v4.38.0")
image = optional(string, "fleetdm/fleet:v4.38.1")
family = optional(string, "fleet")
sidecars = optional(list(any), [])
depends_on = optional(list(any), [])

View file

@ -17,7 +17,7 @@ provider "aws" {
}
locals {
fleet_image = "fleetdm/fleet:v4.38.0"
fleet_image = "fleetdm/fleet:v4.38.1"
}
resource "random_pet" "main" {}

View file

@ -163,7 +163,7 @@ variable "fleet_config" {
type = object({
mem = optional(number, 4096)
cpu = optional(number, 512)
image = optional(string, "fleetdm/fleet:v4.38.0")
image = optional(string, "fleetdm/fleet:v4.38.1")
family = optional(string, "fleet")
sidecars = optional(list(any), [])
depends_on = optional(list(any), [])

View file

@ -215,7 +215,7 @@ variable "fleet_config" {
type = object({
mem = optional(number, 4096)
cpu = optional(number, 512)
image = optional(string, "fleetdm/fleet:v4.38.0")
image = optional(string, "fleetdm/fleet:v4.38.1")
family = optional(string, "fleet")
sidecars = optional(list(any), [])
depends_on = optional(list(any), [])

View file

@ -1,6 +1,6 @@
{
"name": "fleetctl",
"version": "v4.38.0",
"version": "v4.38.1",
"description": "Installer for the fleetctl CLI tool",
"bin": {
"fleetctl": "./run.js"