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

[1.14.x] Cherry-pick #3141 #3142

Merged
merged 2 commits into from
May 24, 2023
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
35 changes: 34 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,37 @@
# v1.14.0 (2023-05-10)
# v1.14.1 (2023-05-31)

## OS Changes

* Apply patches to 5.10 and 5.15 kernels to address CVE-2023-32233 ([#3128])
* Add fallback container image source parsing for regions not yet supported by the `aws-go-sdk` in `host-ctr` ([#3138])
* Increase default `max_dgram_qlen` sysctl value to `512` for both 5.10 and 5.15 kernels ([#3139])

## Orchestrator Changes

### Kubernetes

* Kubernetes package updates
* Update Kubernetes v1.22.17 to include latest EKS-D patches ([#3108])
* Update Kubernetes v1.23.17 to include latest EKS-D patches ([#3119])
* Update to Kubernetes v1.24.14 ([#3119])
* Update to Kubernetes v1.25.9 ([#3119])
* Update to Kubernetes v1.26.4 ([#3119])
* Update Kubernetes v1.27.1 to include latest EKS-D patches ([#3119])
* Change `nvidia-k8s-device-plugin` service dependency on `kubelet` ([#3141])

## Build Changes

* Fix `pubsys` bug preventing multiple SSM parameter promotions in `promote-ssm` Makefile target ([#3137])

[#3108]: https://github.com/bottlerocket-os/bottlerocket/pull/3108
[#3119]: https://github.com/bottlerocket-os/bottlerocket/pull/3119
[#3128]: https://github.com/bottlerocket-os/bottlerocket/pull/3128
[#3137]: https://github.com/bottlerocket-os/bottlerocket/pull/3137
[#3138]: https://github.com/bottlerocket-os/bottlerocket/pull/3138
[#3139]: https://github.com/bottlerocket-os/bottlerocket/pull/3139
[#3141]: https://github.com/bottlerocket-os/bottlerocket/pull/3141

# v1.14.0 (2023-05-11)

## OS Changes

Expand Down
3 changes: 2 additions & 1 deletion Release.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "1.14.0"
version = "1.14.1"

[migrations]
"(0.3.1, 0.3.2)" = ["migrate_v0.3.2_admin-container-v0-5-0.lz4"]
Expand Down Expand Up @@ -211,3 +211,4 @@ version = "1.14.0"
"migrate_v1.14.0_aws-control-container-v0-7-2.lz4",
"migrate_v1.14.0_public-control-container-v0-7-2.lz4",
]
"(1.14.0, 1.14.1)" = []
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Description=Start NVIDIA kubernetes device plugin
RefuseManualStart=true
RefuseManualStop=true
After=kubelet.service
BindsTo=kubelet.service
Wants=kubelet.service

[Service]
ExecStart=/usr/bin/nvidia-device-plugin
Expand Down