mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
cherry-pick changes from fleet-v4.22.1 (#8481)
This commit is contained in:
parent
53e112d264
commit
feaf46a55a
7 changed files with 9 additions and 6 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -9,4 +9,3 @@ home: https://github.com/fleetdm/fleet
|
|||
sources:
|
||||
- https://github.com/fleetdm/fleet.git
|
||||
appVersion: v5.0.0
|
||||
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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" {
|
||||
|
|
|
|||
|
|
@ -68,5 +68,5 @@ variable "redis_mem" {
|
|||
}
|
||||
|
||||
variable "image" {
|
||||
default = "fleet:v4.22.0"
|
||||
default = "fleet:v4.22.1"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue