From 045d79ea67f372ea49547ba1b588c19de2134a30 Mon Sep 17 00:00:00 2001 From: Jorge Falcon <22119513+BCTBB@users.noreply.github.com> Date: Wed, 22 Oct 2025 16:34:17 -0400 Subject: [PATCH] Helm chart updates - carving and softwareinstallers region support (#34563) - Bumps helm chart version to v6.7.0 - Adds s3 softwareinstallers region (`.Values.fleet.softwareinstallers.s3.region`) - Adds s3 carving region (`.Values.fleet.carving.s3.region`) --- charts/fleet/Chart.yaml | 2 +- charts/fleet/templates/deployment.yaml | 4 ++++ charts/fleet/values.yaml | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 7aaae256e1..26af80fb58 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -4,7 +4,7 @@ name: fleet keywords: - fleet - osquery -version: v6.6.22 +version: v6.7.0 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git diff --git a/charts/fleet/templates/deployment.yaml b/charts/fleet/templates/deployment.yaml index 41c1a870ae..84cc504fe2 100644 --- a/charts/fleet/templates/deployment.yaml +++ b/charts/fleet/templates/deployment.yaml @@ -102,6 +102,8 @@ spec: value: "{{ .Values.fleet.carving.s3.endpointURL }}" - name: FLEET_S3_FORCE_S3_PATH_STYLE value: "{{ .Values.fleet.carving.s3.forceS3PathStyle }}" + - name: FLEET_S3_CARVES_REGION + value: "{{ .Values.fleet.carving.s3.region }}" {{- if ne .Values.fleet.carving.s3.accessKeyID "" }} - name: FLEET_S3_ACCESS_KEY_ID value: "{{ .Values.fleet.carving.s3.accessKeyID }}" @@ -125,6 +127,8 @@ spec: value: "{{ .Values.fleet.softwareInstallers.s3.endpointURL }}" - name: FLEET_S3_SOFTWARE_INSTALLERS_FORCE_S3_PATH_STYLE value: "{{ .Values.fleet.softwareInstallers.s3.forceS3PathStyle }}" + - name: FLEET_S3_SOFTWARE_INSTALLERS_REGION + value: "{{ .Values.fleet.softwareInstallers.s3.region }}" {{- if ne .Values.fleet.softwareInstallers.s3.accessKeyID "" }} - name: FLEET_S3_SOFTWARE_INSTALLERS_ACCESS_KEY_ID value: "{{ .Values.fleet.softwareInstallers.s3.accessKeyID }}" diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 47ddf824c1..d9c8e905ec 100644 --- a/charts/fleet/values.yaml +++ b/charts/fleet/values.yaml @@ -105,6 +105,7 @@ fleet: prefix: "" accessKeyID: "" secretKey: s3-bucket + region: "" endpointURL: "" forceS3PathStyle: false stsAssumeRoleARN: "" @@ -114,6 +115,7 @@ fleet: prefix: "" accessKeyID: "" secretKey: software-installers + region: "" endpointURL: "" forceS3PathStyle: false stsAssumeRoleARN: ""