Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[4.5.x] fix(helm): mapping of user.anonymize-on-delete.enabled #10671

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions helm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

This file documents all notable changes to [Gravitee.io API Management 3.x](https://github.com/gravitee-io/helm-charts/tree/master/apim/3.x) Helm Chart. The release numbering uses [semantic versioning](http://semver.org).

### 4.5.9

- fix typo and indentation about mapping of user.anonymize-on-delete.enabled (APIM-8628)

### 4.5.8

- add kubernetes access account token projection support
Expand Down
3 changes: 2 additions & 1 deletion helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ annotations:
###########
# "changes" must be the last section in this file, because a CI job clean it after each release
###########
artifacthub.io/changes:
artifacthub.io/changes: |
- 'fix typo and indentation about mapping of user.anonymize-on-delete.enabled (APIM-8628)'
4 changes: 2 additions & 2 deletions helm/templates/api/api-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,8 @@ data:
#enabled: true
token:
#expire-after: 86400
anonymize-on-delete:
enabled: {{ .Values.api.user.anynomizeOnDelete }}
anonymize-on-delete:
enabled: {{ .Values.api.user.anonymizeOnDelete }}

{{- if .Values.api.documentation }}
documentation:
Expand Down
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ api:
user:
login:
defaultApplication: true
anynomizeOnDelete: false
anonymizeOnDelete: false
supportEnabled: true
ratingEnabled: true
newsletterEnabled: true
Expand Down