Skip to content

Commit

Permalink
Merge branch 'bump-v0.5.2' into 'main'
Browse files Browse the repository at this point in the history
Bump version to 0.5.2

See merge request nvidia/cloud-native/mig-parted!128
  • Loading branch information
klueska committed Mar 29, 2023
2 parents e32df86 + 4c0fa5d commit 9ab5c66
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/nvidia-mig-parted/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,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.5.1"
c.Version = "0.5.2"

// Setup the flags for this command
c.Flags = []cli.Flag{
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.5.1-ubi8
image: nvcr.io/nvidia/cloud-native/k8s-mig-manager:v0.5.2-ubi8
imagePullPolicy: IfNotPresent
env:
- name: NODE_NAME
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 @@ -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.5.1-ubi8
image: nvcr.io/nvidia/cloud-native/k8s-mig-manager:v0.5.2-ubi8
imagePullPolicy: IfNotPresent
env:
- name: NODE_NAME
Expand Down
11 changes: 11 additions & 0 deletions deployments/systemd/packages/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
nvidia-mig-manager (0.5.2-1) UNRELEASED; urgency=medium

* Update to latest CUDA image 12.1.0
* Update k8s-mig-manager to support CDI
* Add two new example configs for the newly supported profiles on A100
* Update MIG profile code to rely on go-nvlib
* Update vendored go-nvlib to latest
* Update NVML wrapper to include MIG profiles from NVML v12.0

-- NVIDIA CORPORATION <[email protected]> Tue, 28 Mar 2023 13:36:29 +0200

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

* Update to latest CUDA image 12.0.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,14 @@ maybe_remove_hooks_symlink
maybe_remove_config_symlink

%changelog
* Tue Mar 28 2023 NVIDIA CORPORATION <[email protected]> 0.5.2-1
- Update to latest CUDA image 12.1.0
- Update k8s-mig-manager to support CDI
- Add two new example configs for the newly supported profiles on A100
- Update MIG profile code to rely on go-nvlib
- Update vendored go-nvlib to latest
- Update NVML wrapper to include MIG profiles from NVML v12.0

* Thu Mar 09 2023 NVIDIA CORPORATION <[email protected]> 0.5.1-1
- Update to latest CUDA image 12.0.1
- Add newer MIG profiles supported with NVML 12.0 to default config.yaml files
Expand Down
4 changes: 2 additions & 2 deletions versions.mk
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 ?= 0.5.1
VERSION ?= 0.5.2

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

CUDA_VERSION := 12.0.1
CUDA_VERSION := 12.1.0
GOLANG_VERSION := 1.20.1

NVIDIA_CTK_VERSION := f6983969ad5d67b84adfda8eee5b43083790ff22

0 comments on commit 9ab5c66

Please sign in to comment.