From fc1f3b80d3d4b327f085576e40b33c9624ee1a5e Mon Sep 17 00:00:00 2001 From: Arnaldo Garcia Rincon Date: Wed, 24 May 2023 15:47:37 +0000 Subject: [PATCH 1/2] nvidia-k8s-device-plugin: change service dependency The NVIDIA device plugin knows how to re-connect to the kubelet in case it isn't ready or it re-starts. Thus, it is sufficient to declare the dependency on the kubelet with "Wants" instead of a stronger dependency directive. Signed-off-by: Arnaldo Garcia Rincon (cherry picked from commit c63e3b3978d9139f7fddc0895ea8cd8f43cb9a54) --- .../nvidia-k8s-device-plugin/nvidia-k8s-device-plugin.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nvidia-k8s-device-plugin/nvidia-k8s-device-plugin.service b/packages/nvidia-k8s-device-plugin/nvidia-k8s-device-plugin.service index 08c481c24c0..678fe855be5 100644 --- a/packages/nvidia-k8s-device-plugin/nvidia-k8s-device-plugin.service +++ b/packages/nvidia-k8s-device-plugin/nvidia-k8s-device-plugin.service @@ -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 From c0b180727c426b6db18aab23ed96c6c29668a218 Mon Sep 17 00:00:00 2001 From: Erikson Tung Date: Wed, 24 May 2023 10:05:11 -0700 Subject: [PATCH 2/2] Update CHANGELOG and migrations for 1.14.1 (cherry picked from commit faa1e011db0eab25de4a59be0c23f399786c9914) --- CHANGELOG.md | 35 ++++++++++++++++++++++++++++++++++- Release.toml | 3 ++- 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3ebb674343..2383709b476 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Release.toml b/Release.toml index cb724c30e1c..5cdb00c35d9 100644 --- a/Release.toml +++ b/Release.toml @@ -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"] @@ -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)" = []