Skip to content

Commit bbbcb85

Browse files
authored
Bump kubernetes dependencies to v0.31.x. (#670)
1 parent 8533a01 commit bbbcb85

File tree

27 files changed

+392
-549
lines changed

27 files changed

+392
-549
lines changed

.golangci.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# golangci-lint configuration file
22
# see: https://golangci-lint.run/usage/configuration/
33

4-
# Options for analysis running
5-
run:
6-
# Which dirs to skip: they won't be analyzed;
7-
skip-dirs:
4+
# Settings related to issues
5+
issues:
6+
# Which dirs to exclude: issues from them won't be reported
7+
exclude-dirs:
88
- bin
99

1010
# Settings of specific linters

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ ci-lint: golangci-lint
124124
$(GOLANGCI_LINT) run --timeout 15m0s
125125

126126
.PHONY: test
127-
test: manifests fmt vet envtest gotestsum test-python-sdk
127+
test: manifests fmt vet envtest gotestsum
128128
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)" $(GOTESTSUM) --junitfile $(ARTIFACTS)/junit.xml -- ./pkg/... ./api/... -coverprofile $(ARTIFACTS)/cover.out
129129

130130
.PHONY: test-python-sdk
@@ -207,7 +207,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest
207207

208208
## Tool Versions
209209
KUSTOMIZE_VERSION ?= v3.8.7
210-
CONTROLLER_TOOLS_VERSION ?= v0.14.0
210+
CONTROLLER_TOOLS_VERSION ?= v0.16.2
211211

212212
KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"
213213
.PHONY: kustomize
@@ -289,7 +289,7 @@ artifacts: kustomize
289289
GOLANGCI_LINT = $(PROJECT_DIR)/bin/golangci-lint
290290
.PHONY: golangci-lint
291291
golangci-lint: ## Download golangci-lint locally if necessary.
292-
@GOBIN=$(PROJECT_DIR)/bin GO111MODULE=on $(GO_CMD) install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.52.2
292+
@GOBIN=$(PROJECT_DIR)/bin GO111MODULE=on $(GO_CMD) install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.3
293293

294294
GOTESTSUM = $(shell pwd)/bin/gotestsum
295295
.PHONY: gotestsum

client-go/applyconfiguration/jobset/v1alpha2/coordinator.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/jobset/v1alpha2/failurepolicy.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/jobset/v1alpha2/failurepolicyrule.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/jobset/v1alpha2/jobset.go

+8-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/jobset/v1alpha2/jobsetspec.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/jobset/v1alpha2/jobsetstatus.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/jobset/v1alpha2/network.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/jobset/v1alpha2/replicatedjob.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/jobset/v1alpha2/replicatedjobstatus.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/jobset/v1alpha2/startuppolicy.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/jobset/v1alpha2/successpolicy.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/utils.go

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/clientset/versioned/fake/clientset_generated.go

+38-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)