Skip to content

Commit dea96bf

Browse files
lukeheathpboushyrfairburn
authored
Prepare Fleet v4.67.3 (#28881)
- **Add imagePullSecrets option to Helm Chart (#28783)** - **Prepare Fleet v4.67.3** --------- Co-authored-by: Phillip Boushy <[email protected]> Co-authored-by: Robert Fairburn <[email protected]>
1 parent 60f1fa6 commit dea96bf

File tree

12 files changed

+30
-8
lines changed

12 files changed

+30
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Fleet 4.67.3 (May 6, 2025)
2+
3+
- Removed error caused by macOS electron helper apps during ingestion.
4+
- Added a temporary index during macOS software names migration to speed up host software installed paths cleanup introduced in 4.67.2. This change only affects upgrades from pre-4.67.0 versions.
5+
16
## Fleet 4.67.2 (Apr 27, 2025)
27

38
- Fixed software deduplication when migrating from < 4.67.0 for cases where exactly two software entries would be merged into one, and for cases where the same bundle ID has more than one version, each with more than one that needs to be converted into a single software entry.

changes/28619-remove-paths-err

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/migration-speedup

Lines changed: 0 additions & 1 deletion
This file was deleted.

charts/fleet/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ name: fleet
44
keywords:
55
- fleet
66
- osquery
7-
version: v6.5.4
7+
version: v6.6.1
88
home: https://github.com/fleetdm/fleet
99
sources:
1010
- https://github.com/fleetdm/fleet.git
11-
appVersion: v4.67.2
11+
appVersion: v4.67.3
1212
dependencies:
1313
- name: mysql
1414
condition: mysql.enabled

charts/fleet/templates/cron-vulnprocessing.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,10 @@ spec:
203203
runAsUser: {{ int64 .Values.fleet.securityContext.runAsUser }}
204204
runAsNonRoot: true
205205
{{- end }}
206+
{{- with .Values.imagePullSecrets }}
207+
imagePullSecrets:
208+
{{- toYaml . | nindent 12}}
209+
{{- end }}
206210
serviceAccountName: fleet
207211
volumes:
208212
- name: tmp

charts/fleet/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,10 @@ spec:
370370
hostPID: false
371371
hostNetwork: false
372372
hostIPC: false
373+
{{- with .Values.imagePullSecrets }}
374+
imagePullSecrets:
375+
{{- toYaml . | nindent 8}}
376+
{{- end }}
373377
serviceAccountName: fleet
374378
{{- if or (.Values.fleet.tls.enabled) (.Values.database.tls.enabled) (eq .Values.osquery.logging.statusPlugin "filesystem") (eq .Values.osquery.logging.resultPlugin "filesystem") }}
375379
volumes:

charts/fleet/templates/job-migration.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,10 @@ spec:
164164
runAsUser: {{ int64 .Values.fleet.securityContext.runAsUser }}
165165
runAsNonRoot: true
166166
{{- end }}
167+
{{- with .Values.imagePullSecrets }}
168+
imagePullSecrets:
169+
{{- toYaml . | nindent 8}}
170+
{{- end }}
167171
serviceAccountName: fleet
168172
volumes:
169173
{{- if .Values.database.tls.enabled }}

charts/fleet/templates/rbac.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ rules:
2222
- {{ .Values.cache.secretName }}
2323
- {{ .Values.fleet.secretName }}
2424
- {{ .Values.osquery.secretName }}
25+
{{- range .Values.imagePullSecrets }}
26+
- {{ .name }}
27+
{{- end }}
2528
verbs:
2629
- get
2730
---

charts/fleet/values.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
hostName: fleet.localhost
44
replicas: 3 # The number of Fleet instances to deploy
55
imageRepository: fleetdm/fleet
6-
imageTag: v4.67.2 # Version of Fleet to deploy
6+
imageTag: v4.67.3 # Version of Fleet to deploy
7+
# imagePullSecrets is optional.
8+
# imagePullSecrets:
9+
# - name: docker
10+
# - name: internal
711
podAnnotations: {} # Additional annotations to add to the Fleet pod
812
serviceAnnotations: {} # Additional annotations to add to the Fleet service
913
serviceAccountAnnotations: {} # Additional annotations to add to the Fleet service account

infrastructure/dogfood/terraform/aws/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ variable "database_name" {
5656

5757
variable "fleet_image" {
5858
description = "the name of the container image to run"
59-
default = "fleetdm/fleet:v4.67.2"
59+
default = "fleetdm/fleet:v4.67.3"
6060

6161
variable "software_inventory" {
6262
description = "enable/disable software inventory (default is enabled)"

0 commit comments

Comments
 (0)