mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Add fleet license as an optional helm value (#19923)
This commit is contained in:
parent
2e2d0fb983
commit
e796e49650
3 changed files with 11 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -90,6 +90,9 @@ fleet:
|
|||
accessKeyID: ""
|
||||
secretKey: s3-bucket
|
||||
stsAssumeRoleARN: ""
|
||||
license:
|
||||
secretName: ""
|
||||
licenseKey: license-key
|
||||
extraVolumes: []
|
||||
extraVolumeMounts: []
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue