Skip to content

Commit

Permalink
Merge pull request #81 from cdesiniotis/bump-v0.8.0-rc.1
Browse files Browse the repository at this point in the history
Bump project version to v0.8.0-rc.1
  • Loading branch information
cdesiniotis authored Jun 25, 2024
2 parents e793e59 + 898f02e commit b699211
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# NVIDIA MIG Manager Changelog

## v0.8.0-rc.1
- Update to latest CUDA base image 12.5.0
- Bump Golang version to 1.22.4
- Bump go-nvml to 0.12.0-5
- Bump go-nvlib to 0.3.0
- Update to incorporate go-nvml updates to expose interface types
- Align nvidia driver root envvar names with other components
- Add support for H100 NVL 94GB
- Add dev-root option to mig-manager container
- Bump nvidia-ctk version to v0.16.0-rc.1

## v0.7.0
- Update to latest CUDA base image 12.4.1
- Bump Golang version to 1.22.2
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.7.0-ubi8
image: nvcr.io/nvidia/cloud-native/k8s-mig-manager:v0.8.0-rc.1-ubi8
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.7.0-ubi8
image: nvcr.io/nvidia/cloud-native/k8s-mig-manager:v0.8.0-rc.1-ubi8
imagePullPolicy: IfNotPresent
env:
- name: NODE_NAME
Expand Down
4 changes: 4 additions & 0 deletions deployments/systemd/packages/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ endif
# strip 'v' from version string
PACKAGE_VERSION := $(VERSION:v%=%)

# replace '-' with '~' in the version string
# e.g. 'x.y.z-rc.1' gets represented as 'x.y.z~rc.1'
PACKAGE_VERSION := $(subst -,~,$(PACKAGE_VERSION))

deb: BASE_IMAGE = ubuntu:18.04
deb: ARTIFACTS_DIR = $(DIST_DIR)/deb
deb: DOCKERFILE = $(CURDIR)/deployments/systemd/packages/Dockerfile.deb
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.7.0
VERSION ?= v0.8.0-rc.1

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

Expand Down

0 comments on commit b699211

Please sign in to comment.