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`)
This commit is contained in:
Jorge Falcon 2025-10-22 16:34:17 -04:00 committed by GitHub
parent f682f063bd
commit 045d79ea67
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 1 deletions

View file

@ -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

View file

@ -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 }}"

View file

@ -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: ""