-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Description This PR update many many dependencies. Some of the bigger ones are: Go is updated to 1.21 sigs.k8s.io/cluster-api to v1.6.0 sigs.k8s.io/controller-runtime to v0.16.3 tink to v0.9.0 rufio to v0.3.2 ## Why is this needed Fixes: # ## How Has This Been Tested? `make test` is happy but this will need some manual smoke testing and more. I have started some smoke testing and found issues. The last few commits address these issues. I have more tests to run. Will update if anything additional is found. I found one more issue with the namespace watching in the controller manager options. This is fixed. I tested by creating a 4 node cluster (1 cp 3 workers). I did some scale up and down successfully. ## How are existing users impacted? What migration steps/scripts do we need? ## Checklist: I have: - [ ] updated the documentation and/or roadmap (if required) - [ ] added unit or e2e tests - [ ] provided instructions on how to upgrade
- Loading branch information
Showing
22 changed files
with
406 additions
and
860 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
|
||
env: | ||
CGO_ENABLED: 0 | ||
GO_VERSION: '1.20' | ||
GO_VERSION: '1.21' | ||
|
||
jobs: | ||
validate: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,18 +51,18 @@ GO_INSTALL = ./scripts/go_install.sh | |
# Binaries. | ||
CONTROLLER_GEN := go run sigs.k8s.io/controller-tools/cmd/[email protected] | ||
|
||
GOLANGCI_LINT_VER := v1.53.3 | ||
GOLANGCI_LINT_VER := v1.54.2 | ||
GOLANGCI_LINT_BIN := golangci-lint | ||
GOLANGCI_LINT := $(TOOLS_BIN_DIR)/$(GOLANGCI_LINT_BIN)-$(GOLANGCI_LINT_VER) | ||
|
||
KUSTOMIZE_BIN := kustomize | ||
KUSTOMIZE := $(TOOLS_BIN_DIR)/$(KUSTOMIZE_BIN) | ||
|
||
KUBECTL_VER := v1.23.0 | ||
KUBECTL_VER := v1.28.2 | ||
KUBECTL_BIN := kubectl | ||
KUBECTL := $(TOOLS_BIN_DIR)/$(KUBECTL_BIN)-$(KUBECTL_VER) | ||
|
||
KIND_VER := v0.12.0 | ||
KIND_VER := v0.20.0 | ||
KIND_BIN := kind | ||
KIND := $(TOOLS_BIN_DIR)/$(KIND_BIN)-$(KIND_VER) | ||
|
||
|
@@ -107,7 +107,7 @@ endif | |
# Build time versioning details. | ||
LDFLAGS := $(shell hack/version.sh) | ||
|
||
GOLANG_VERSION := 1.20 | ||
GOLANG_VERSION := 1.21 | ||
|
||
## -------------------------------------- | ||
## Help | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.