Skip to content

Commit

Permalink
Merge branch 'upstream-bump-v0.1.3' into 'master'
Browse files Browse the repository at this point in the history
Bump to v0.1.3

See merge request nvidia/cloud-native/mig-parted!48
  • Loading branch information
klueska committed Sep 20, 2021
2 parents 1fec423 + b607746 commit 5a4ae68
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func main() {
c.UseShortOptionHandling = true
c.EnableBashCompletion = true
c.Usage = "Manage MIG partitions across the full set of NVIDIA GPUs on a node"
c.Version = "0.1.2"
c.Version = "0.1.3"

// Setup the flags for this command
c.Flags = []cli.Flag{
Expand Down
4 changes: 2 additions & 2 deletions deployments/gpu-operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.

VERSION ?= v0.1.2
VERSION ?= v0.1.3

DOCKER ?= docker
GOLANG_VERSION ?= 1.15
CUDA_BASE_IMAGE ?= nvcr.io/nvidia/cuda:11.4.1-base
CUDA_BASE_IMAGE ?= nvcr.io/nvidia/cuda:11.4.2-base
BUILD_DIR ?= ../..

ifeq ($(IMAGE),)
Expand Down
2 changes: 1 addition & 1 deletion deployments/gpu-operator/nvidia-mig-manager-example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
serviceAccountName: gpu-operator
containers:
- name: nvidia-mig-manager
image: nvcr.io/nvidia/k8s-mig-manager:v0.1.2-ubi8
image: nvcr.io/nvidia/k8s-mig-manager:v0.1.3-ubi8
imagePullPolicy: IfNotPresent
env:
- name: NODE_NAME
Expand Down
8 changes: 4 additions & 4 deletions deployments/systemd/packages/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

NAME = nvidia-mig-manager
VERSION ?= 0.1.2
VERSION ?= 0.1.3
REVISION ?= 1

DOCKER ?= docker
Expand Down Expand Up @@ -51,7 +51,7 @@ ubuntu18.04:
--build-arg PACKAGE_VERSION=$(VERSION) \
--build-arg PACKAGE_REVISION=$(REVISION) \
--build-arg GOLANG_VERSION=$(GOLANG_VERSION) \
--build-arg BASE_IMAGE=nvcr.io/nvidia/cuda:11.4.1-base-ubuntu18.04 \
--build-arg BASE_IMAGE=nvcr.io/nvidia/cuda:11.4.2-base-ubuntu18.04 \
--tag $(IMAGE):v$(VERSION)-ubuntu18.04 \
--file Dockerfile.ubuntu \
$(BUILD_DIR)
Expand All @@ -65,7 +65,7 @@ ubuntu20.04:
--build-arg PACKAGE_VERSION=$(VERSION) \
--build-arg PACKAGE_REVISION=$(REVISION) \
--build-arg GOLANG_VERSION=$(GOLANG_VERSION) \
--build-arg BASE_IMAGE=nvcr.io/nvidia/cuda:11.4.1-base-ubuntu20.04 \
--build-arg BASE_IMAGE=nvcr.io/nvidia/cuda:11.4.2-base-ubuntu20.04 \
--tag $(IMAGE):v$(VERSION)-ubuntu20.04 \
--file Dockerfile.ubuntu \
$(BUILD_DIR)
Expand All @@ -79,7 +79,7 @@ ubi8:
--build-arg PACKAGE_VERSION=$(VERSION) \
--build-arg PACKAGE_REVISION=$(REVISION) \
--build-arg GOLANG_VERSION=$(GOLANG_VERSION) \
--build-arg BASE_IMAGE=nvcr.io/nvidia/cuda:11.4.1-base-ubi8 \
--build-arg BASE_IMAGE=nvcr.io/nvidia/cuda:11.4.2-base-ubi8 \
--tag $(IMAGE):v$(VERSION)-ubi8 \
--file Dockerfile.ubi8 \
$(BUILD_DIR)
Expand Down
10 changes: 10 additions & 0 deletions deployments/systemd/packages/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
nvidia-mig-manager (0.1.3-1) UNRELEASED; urgency=medium

* Add default configs for the PG506-96GB card
* Remove CombinedMigManager and add wrappers for Mode/Config Managers
* Add a function to check the minimum NVML version required
* Add SystemGetNVMLVersion() to the NVML interface
* Fix small bug in assert logic for non MIG-capable GPUs

-- NVIDIA CORPORATION <[email protected]> Mon, 20 Sep 2021 17:16:26 +0000

nvidia-mig-manager (0.1.2-1) UNRELEASED; urgency=medium

* Do not start nvidia-mig-manager.service when installing the .deb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,13 @@ systemctl disable nvidia-mig-manager.service
systemctl daemon-reload

%changelog
* Mon Sep 20 2021 NVIDIA CORPORATION <[email protected]> 0.1.3-1
- Add default configs for the PG506-96GB card
- Remove CombinedMigManager and add wrappers for Mode/Config Managers
- Add a function to check the minimum NVML version required
- Add SystemGetNVMLVersion() to the NVML interface
- Fix small bug in assert logic for non MIG-capable GPUs

* Thu Aug 05 2021 NVIDIA CORPORATION <[email protected]> 0.1.2-1
- Do not start nvidia-mig-manager.service when installing the .deb
- Restore lost assert_gpu_reset_available() function
Expand Down

0 comments on commit 5a4ae68

Please sign in to comment.