Skip to content

Commit dcaa075

Browse files
authored
Merge branch 'main' into dependabot/go_modules/deployments/devel/main/github.com/golangci/golangci-lint-1.63.4
2 parents f8932a9 + 03c4163 commit dcaa075

File tree

12 files changed

+191
-59
lines changed

12 files changed

+191
-59
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33
SPDX-License-Identifier: Apache-2.0
44
-->
55

@@ -21,7 +21,7 @@ for installation and configuration information.
2121

2222
### Deploying the Operator on the Cluster
2323

24-
**Build and push your image to the location specified by `IMG`:**
24+
**Build and push your image to the location specified by `IMAGE_NAME`:`VERSION`:**
2525

2626
```sh
2727
make build IMAGE_NAME=<your-private-registry>/k8s-nim-operator VERSION=<tag> -f deployments/container/Makefile
@@ -101,7 +101,7 @@ To get started with building the NIM Operator, follow these steps:
101101
```shell
102102
git clone git@github.com:NVIDIA/k8s-nim-operator.git
103103
cd k8s-nim-operator
104-
make IMG=<image-name> docker-build
104+
make build IMAGE_NAME=<your-private-registry>/k8s-nim-operator VERSION=<tag> -f deployments/container/Makefile
105105
```
106106

107107
Run `make help` for more information about additional `make` targets.

deployments/container/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN if [ "$TARGETARCH" = "x86_64" ]; then OS_ARCH="amd64"; elif [ "$TARGETARCH"
3030
&& chmod +x ./kubectl
3131

3232
# Use distroless as minimal base image to package the manager binary
33-
FROM nvcr.io/nvidia/distroless/go:v3.1.3
33+
FROM nvcr.io/nvidia/distroless/go:v3.1.4
3434

3535
ARG VERSION="unknown"
3636

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ require (
2424
k8s.io/apimachinery v0.31.1
2525
k8s.io/client-go v0.31.1
2626
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6
27-
sigs.k8s.io/controller-runtime v0.19.0
27+
sigs.k8s.io/controller-runtime v0.19.4
2828
sigs.k8s.io/yaml v1.4.0
2929
)
3030

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -588,8 +588,8 @@ oras.land/oras-go v1.2.5 h1:XpYuAwAb0DfQsunIyMfeET92emK8km3W4yEzZvUbsTo=
588588
oras.land/oras-go v1.2.5/go.mod h1:PuAwRShRZCsZb7g8Ar3jKKQR/2A/qN+pkYxIOd/FAoo=
589589
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.0 h1:CPT0ExVicCzcpeN4baWEV2ko2Z/AsiZgEdwgcfwLgMo=
590590
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.0/go.mod h1:Ve9uj1L+deCXFrPOk1LpFXqTg7LCFzFso6PA48q/XZw=
591-
sigs.k8s.io/controller-runtime v0.19.0 h1:nWVM7aq+Il2ABxwiCizrVDSlmDcshi9llbaFbC0ji/Q=
592-
sigs.k8s.io/controller-runtime v0.19.0/go.mod h1:iRmWllt8IlaLjvTTDLhRBXIEtkCK6hwVBJJsYS9Ajf4=
591+
sigs.k8s.io/controller-runtime v0.19.4 h1:SUmheabttt0nx8uJtoII4oIP27BVVvAKFvdvGFwV/Qo=
592+
sigs.k8s.io/controller-runtime v0.19.4/go.mod h1:iRmWllt8IlaLjvTTDLhRBXIEtkCK6hwVBJJsYS9Ajf4=
593593
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 h1:gBQPwqORJ8d8/YNZWEjoZs7npUVDpVXUUOFfW6CgAqE=
594594
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8/go.mod h1:mdzfpAEoE6DHQEN0uh9ZbOCuHbLK5wOm7dK4ctXE9Tg=
595595
sigs.k8s.io/kustomize/api v0.17.2 h1:E7/Fjk7V5fboiuijoZHgs4aHuexi5Y2loXlVOAVAG5g=

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1568,7 +1568,7 @@ sigs.k8s.io/apiserver-network-proxy/konnectivity-client/pkg/client
15681568
sigs.k8s.io/apiserver-network-proxy/konnectivity-client/pkg/client/metrics
15691569
sigs.k8s.io/apiserver-network-proxy/konnectivity-client/pkg/common/metrics
15701570
sigs.k8s.io/apiserver-network-proxy/konnectivity-client/proto/client
1571-
# sigs.k8s.io/controller-runtime v0.19.0
1571+
# sigs.k8s.io/controller-runtime v0.19.4
15721572
## explicit; go 1.22.0
15731573
sigs.k8s.io/controller-runtime
15741574
sigs.k8s.io/controller-runtime/pkg/builder

vendor/sigs.k8s.io/controller-runtime/pkg/cache/cache.go

Lines changed: 37 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/sigs.k8s.io/controller-runtime/pkg/cache/internal/informers.go

Lines changed: 15 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)