Skip to content
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# NVIDIA MIG Manager Changelog

## v0.14.4
- Start hook-managed systemd services with --no-block to avoid deadlocks
- Bump golang.org/x/net to v0.55.0
- Bump golang version to 1.26.5

## v0.14.3
- Select the hooks file at boot instead of at install time
- Start driver services non-blocking during boot to avoid deadlock
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
serviceAccountName: nvidia-mig-manager-service-account
containers:
- name: nvidia-mig-manager
image: nvcr.io/nvidia/cloud-native/k8s-mig-manager:v0.14.3
image: nvcr.io/nvidia/cloud-native/k8s-mig-manager:v0.14.4
imagePullPolicy: IfNotPresent
env:
- name: NODE_NAME
Expand Down
2 changes: 1 addition & 1 deletion deployments/container/nvidia-mig-manager-example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
serviceAccountName: nvidia-mig-manager-service-account
containers:
- name: nvidia-mig-manager
image: nvcr.io/nvidia/cloud-native/k8s-mig-manager:v0.14.3
image: nvcr.io/nvidia/cloud-native/k8s-mig-manager:v0.14.4
imagePullPolicy: IfNotPresent
env:
- name: NODE_NAME
Expand Down
2 changes: 1 addition & 1 deletion versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

MODULE := github.com/NVIDIA/mig-parted
VERSION ?= v0.14.3
VERSION ?= v0.14.4

vVERSION := v$(VERSION:v%=%)

Expand Down
Loading