forked from fluxcd/pkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Go, K8s, controller-runtime and Helm deps
- Update `k8s.io/*` to `v0.21.1` - Update `sigs.k8s.io/controller-runtime` to `v0.9.0` - Update `helm.sh/helm/v3` to `v3.6.0` - Update `sigs.k8s.io/controller-tools/cmd/controller-gen` to `v0.5.0` - Update Go requirement to `v1.16.0` Signed-off-by: Hidde Beydals <hello@hidde.co>
- Loading branch information
Showing
17 changed files
with
514 additions
and
333 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module github.com/fluxcd/pkg/apis/kustomize | ||
|
||
go 1.15 | ||
go 1.16 | ||
|
||
require k8s.io/apiextensions-apiserver v0.20.7 | ||
require k8s.io/apiextensions-apiserver v0.21.1 |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module github.com/fluxcd/pkg/apis/meta | ||
|
||
go 1.15 | ||
go 1.16 | ||
|
||
require k8s.io/apimachinery v0.20.7 | ||
require k8s.io/apimachinery v0.21.1 |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/fluxcd/pkg/git | ||
|
||
go 1.15 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/go-git/go-git/v5 v5.1.0 | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module github.com/fluxcd/pkg/gitutil | ||
|
||
go 1.15 | ||
go 1.16 |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
module github.com/fluxcd/pkg/helmtestserver | ||
|
||
go 1.15 | ||
go 1.16 | ||
|
||
replace github.com/fluxcd/pkg/testserver => ../testserver | ||
|
||
require ( | ||
github.com/fluxcd/pkg/testserver v0.0.2 | ||
helm.sh/helm/v3 v3.4.2 | ||
helm.sh/helm/v3 v3.6.0 | ||
rsc.io/letsencrypt v0.0.3 // indirect | ||
sigs.k8s.io/yaml v1.2.0 | ||
) |
Oops, something went wrong.