Skip to content

Commit

Permalink
global.license was not working, as license must have .lic extension
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Wiechmann committed May 19, 2022
1 parent f16261c commit b4c6745
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions APIM/Helmchart/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [2.10.1] 2022-05-19
### Fixed
- global.license was mounted to conf/licenses/license which is not acceppted by the API-Gateways. Now it's using helm-global-license.lic

## [2.10.0] 2022-05-09
### Changed
- Helm-Chart now released using a version tag without v (e.g. 2.10.0 )
Expand Down
2 changes: 1 addition & 1 deletion APIM/Helmchart/templates/common/license-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ kind: Secret
metadata:
name: axway-apim-license
data:
license: {{ .Values.global.license | b64enc }}
helm-global-license.lic: {{ .Values.global.license | b64enc }}
{{- end }}
5 changes: 3 additions & 2 deletions APIM/Helmchart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ global:

# AZURE, OPENSHIFT, MINIKUBE
platform: ""
# If you provide your license in your myValues.yaml, a Secret axway-apim-license will be created and automatically mountered
# If you provide your license in your myValues.yaml, a Secret axway-apim-license will be created and automatically mounted
# into the API Gateway PODs.
# Alternatively, you can use your own secret and reference it via licenseSecretName below.
# Alternatively, you can use your own secret and reference it via existingLicenseSecret below. Make sure, your secret key ends with
# license.lic
# Or you can build the image with the license included.
# license: |
# FIPS=1
Expand Down

0 comments on commit b4c6745

Please sign in to comment.