cherry-pick changes from fleet-v4.22.1 (#8481)

This commit is contained in:
Roberto Dip 2022-10-28 12:24:30 -03:00 committed by GitHub
parent 53e112d264
commit feaf46a55a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 9 additions and 6 deletions

View file

@ -1,3 +1,7 @@
## Fleet 4.22.1 (Oct 27, 2022)
* Fixed the error response of the `/device/:token/desktop` endpoint causing problems on free Fleet Desktop instances on versions `1.3.x`.
## Fleet 4.22.0 (Oct 20, 2022)
* Added usage statistics for the weekly count of aggregate policy violation days. One policy violation day is counted for each policy that a host is failing, measured as of the time the count increments. The count increments once per 24-hour interval and resets each week.

View file

@ -9,4 +9,3 @@ home: https://github.com/fleetdm/fleet
sources:
- https://github.com/fleetdm/fleet.git
appVersion: v5.0.0

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.22.0 # Version of Fleet to deploy
imageTag: v4.22.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

@ -264,7 +264,7 @@ spec:
spec:
containers:
- name: fleet
image: fleetdm/fleet:4.22.0
image: fleetdm/fleet:4.22.1
env:
# if running Fleet behind external ingress controller that terminates TLS
- name: FLEET_SERVER_TLS

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.22.0"
default = "fleetdm/fleet:v4.22.1"
}
variable "software_inventory" {

View file

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

View file

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