mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
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:
parent
f682f063bd
commit
045d79ea67
3 changed files with 7 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 }}"
|
||||
|
|
|
|||
|
|
@ -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: ""
|
||||
|
|
|
|||
Loading…
Reference in a new issue