Skip to content

Commit

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

See merge request nvidia/cloud-native/mig-parted!89
  • Loading branch information
klueska committed May 30, 2022
2 parents e9c9b80 + 3c8b975 commit 9d0af27
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/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.4.0"
c.Version = "0.4.1"

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

* Keep NVML alive across all mig-parted commands (except GPU reset)
* Remove unnecessary services from hooks.sh

-- NVIDIA CORPORATION <cudatools@nvidia.com> Mon, 30 May 2022 11:45:10 +0200

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

* Update nvidia-mig-parted.sh to include MIG_PARTED_CHECKPOINT_FILE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ systemctl disable nvidia-mig-manager.service
systemctl daemon-reload

%changelog
* Mon May 30 2022 NVIDIA CORPORATION <cudatools@nvidia.com> 0.4.1-1
- Keep NVML alive across all mig-parted commands (except GPU reset)
- Remove unnecessary services from hooks.sh

* Tue Apr 05 2022 NVIDIA CORPORATION <cudatools@nvidia.com> 0.4.0-1
- Update nvidia-mig-parted.sh to include MIG_PARTED_CHECKPOINT_FILE
- Add checkpoint / restore commands to mig-parted CLI
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.devel
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
ARG GOLANG_VERSION=1.15
ARG GOLANG_VERSION=1.16.4
FROM golang:${GOLANG_VERSION}

RUN go get -u golang.org/x/lint/golint
Expand Down
4 changes: 2 additions & 2 deletions versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

VERSION ?= 0.4.0
VERSION ?= 0.4.1

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

CUDA_VERSION := 11.6.0
CUDA_VERSION := 11.6.1
GOLANG_VERSION := 1.16.4

0 comments on commit 9d0af27

Please sign in to comment.