Skip to content

Commit

Permalink
feat: add support for providing MAXMIND_LICENSE_KEY
Browse files Browse the repository at this point in the history
  • Loading branch information
adnan-kamili committed Feb 14, 2025
1 parent 00b8b73 commit e1099e4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cryptlex/cryptlex-enterprise/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ home: https://cryptlex.com
icon: https://cryptlex.com/images/cryptlex_icon.png
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: "3.17.69"
version: "3.17.70"
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: "3.17.69"
appVersion: "3.17.70"
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,8 @@ spec:
imagePullPolicy: {{ .Values.services.geoip.image.pullPolicy }}
ports:
- containerPort: 8080
env:
- name: MAXMIND_LICENSE_KEY
value: "{{ .Values.webApi.maxmind.licenseKey }}"
restartPolicy: Always
{{ end }}
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,5 @@ stringData:
{{- range $key, $value := $header }}
{{ $key }}={{ $value }}
{{ end -}}
{{- end }}"
{{- end }}"
MAXMIND_LICENSEKEY: {{ .Values.webApi.maxmind.licenseKey | quote }}
3 changes: 3 additions & 0 deletions cryptlex/cryptlex-enterprise/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,9 @@ webApi:
hangfireDashboard:
username: ""
password: ""
# Maxmind GeoLite2-City database
maxmind:
licenseKey: ""
# Postmark
postmark:
accountToken: ""
Expand Down

0 comments on commit e1099e4

Please sign in to comment.