Add fleet license as an optional helm value (#19923)

This commit is contained in:
Matthew Ahrenstein 2024-06-21 15:25:40 -04:00 committed by GitHub
parent 2e2d0fb983
commit e796e49650
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 1 deletions

View file

@ -4,7 +4,7 @@ name: fleet
keywords:
- fleet
- osquery
version: v6.0.2
version: v6.0.3
home: https://github.com/fleetdm/fleet
sources:
- https://github.com/fleetdm/fleet.git

View file

@ -96,6 +96,13 @@ spec:
value: "{{ .Values.fleet.carving.s3.stsAssumeRoleARN }}"
{{- end }}
{{- end }}
{{- if .Values.fleet.license.secretName }}
- name: FLEET_LICENSE_KEY
valueFrom:
secretKeyRef:
key: {{ .Values.fleet.license.licenseKey }}
name: {{ .Values.fleet.license.secretName }}
{{- end }}
## END FLEET SECTION
## BEGIN MYSQL SECTION
- name: FLEET_MYSQL_ADDRESS

View file

@ -90,6 +90,9 @@ fleet:
accessKeyID: ""
secretKey: s3-bucket
stsAssumeRoleARN: ""
license:
secretName: ""
licenseKey: license-key
extraVolumes: []
extraVolumeMounts: []