Skip to content

Commit

Permalink
fix(charts): add missing resource configuration to deployment initcon…
Browse files Browse the repository at this point in the history
…tainers
  • Loading branch information
nicoprow committed Jan 14, 2025
1 parent 1cfe58f commit c2f13ba
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/bpdm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),
- update BPDM Bridge Chart to version 3.3.0
- update Central-IDP dependency to 4.0.0 [#1145](https://github.com/eclipse-tractusx/bpdm/pull/1145)
- Add missing seccomp profiles for BPDM application containers [#1152](https://github.com/eclipse-tractusx/bpdm/issues/1152)

- Add missing resource limits to the initcontainer [##1154](https://github.com/eclipse-tractusx/bpdm/issues/1154)

## [5.2.0] - 2024-11-28

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),
- update Central-IDP dependency to 4.0.0 [#1145](https://github.com/eclipse-tractusx/bpdm/pull/1145)
- Add missing app armor profile [#1153](https://github.com/eclipse-tractusx/bpdm/issues/1153)
- Add missing seccomp profile [#1152](https://github.com/eclipse-tractusx/bpdm/issues/1152)
- Add missing resource limits to the initcontainer [##1154](https://github.com/eclipse-tractusx/bpdm/issues/1154)

## [3.2.0] - 2024-11-28

Expand Down
1 change: 1 addition & 0 deletions charts/bpdm/charts/bpdm-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

- Add template to infer Central-IDP service names [#994](https://github.com/eclipse-tractusx/bpdm/issues/994)
- Add missing security context to startupDelay init containers in BPDM deployments [#1089](https://github.com/eclipse-tractusx/bpdm/pull/1089)
- Add missing resource limits to the initcontainer [##1154](https://github.com/eclipse-tractusx/bpdm/issues/1154)

## [1.0.1] - 2024-07-10

Expand Down
7 changes: 7 additions & 0 deletions charts/bpdm/charts/bpdm-common/templates/_deployment.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,13 @@ spec:
image: busybox:1.28
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
resources:
limits:
cpu: 10m
memory: 100Mi
requests:
cpu: 10m
memory: 100Mi
command: ['sh', '-c', "sleep {{ $.Values.startupDelaySeconds }}"]
{{- with .Values.nodeSelector }}
nodeSelector:
Expand Down
1 change: 1 addition & 0 deletions charts/bpdm/charts/bpdm-gate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),
- Increase appversion to 6.3.0
- update Central-IDP dependency to 4.0.0 [#1145](https://github.com/eclipse-tractusx/bpdm/pull/1145)
- Add missing seccomp profile [#1152](https://github.com/eclipse-tractusx/bpdm/issues/1152)
- Add missing resource limits to the initcontainer [##1154](https://github.com/eclipse-tractusx/bpdm/issues/1154)

## [6.2.0] - 2024-11-28

Expand Down
1 change: 1 addition & 0 deletions charts/bpdm/charts/bpdm-orchestrator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),
- Increase appversion to 6.3.0
- update Central-IDP dependency to 4.0.0 [#1145](https://github.com/eclipse-tractusx/bpdm/pull/1145)
- Add missing seccomp profile [#1152](https://github.com/eclipse-tractusx/bpdm/issues/1152)
- Add missing resource limits to the initcontainer [##1154](https://github.com/eclipse-tractusx/bpdm/issues/1154)

## [3.2.0] - 2024-11-28

Expand Down
1 change: 1 addition & 0 deletions charts/bpdm/charts/bpdm-pool/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),
- Increase appversion to 6.3.0
- update Central-IDP dependency to 4.0.0 [#1145](https://github.com/eclipse-tractusx/bpdm/pull/1145)
- Add missing seccomp profile [#1152](https://github.com/eclipse-tractusx/bpdm/issues/1152)
- Add missing resource limits to the initcontainer [##1154](https://github.com/eclipse-tractusx/bpdm/issues/1154)

## [7.2.0] - 2024-11-28

Expand Down

0 comments on commit c2f13ba

Please sign in to comment.