Skip to content

Commit

Permalink
Merge pull request #1086 from andreasgeisslerdt/patch-1
Browse files Browse the repository at this point in the history
Fix securityContext settings in job template
  • Loading branch information
francis-pouatcha authored Oct 15, 2024
2 parents 89c0134 + 60acf32 commit 4d2c821
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Fixed
- Fixed securityContext entries in job template

- Added support for User Profile Setting: `unmanagedAttributePolicy`

### Fixed
- Crash after inserting more than 100 roles in realm-management authorization
[#1090](/adorsys/keycloak-config-cli/issues/1090):

- NPE when using custom policy in AuthorizationPolicy [#1095](/adorsys/keycloak-config-cli/issues/1095):

### Fixed

- Fix Keycloak startup issue with admin-fine-grained-authz feature flag

## [6.1.7] - 2024-09-30

## [6.1.6] - 2024-07-26


## [6.1.5] - 2024-06-27

## [6.1.3] - 2024-06-27
Expand Down
8 changes: 4 additions & 4 deletions contrib/charts/keycloak-config-cli/templates/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- with .Values.resources }}
resources:
{{- toYaml . | nindent 10 }}
{{- toYaml . | nindent 12 }}
{{- end }}
env:
{{- range $name, $value := .Values.env }}
Expand All @@ -55,9 +55,9 @@ spec:
name: "{{ tpl .Values.existingSecret . }}"
key: "{{ .Values.existingSecretKey }}"
{{- end }}
{{- with .Values.securityContext }}
{{- with .Values.containerSecurityContext }}
securityContext:
{{- toYaml . | nindent 10 }}
{{- toYaml . | nindent 12 }}
{{- end }}
volumeMounts:
- name: config
Expand All @@ -83,4 +83,4 @@ spec:
{{- with .Values.securityContext }}
securityContext:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}

0 comments on commit 4d2c821

Please sign in to comment.