Skip to content

Commit

Permalink
Bump to v0.1.3
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Klues <[email protected]>
  • Loading branch information
klueska committed Sep 20, 2021
1 parent 97086ec commit b607746
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 4 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
2 changes: 1 addition & 1 deletion deployments/gpu-operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# 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
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
2 changes: 1 addition & 1 deletion 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
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 b607746

Please sign in to comment.