-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
go 1.20 --> 1.22 kamaji v0.4.0 --> v0.5.0 cluster-api v1.4.0-beta.2.0 --> v1.6.4 kubernetes v0.29.0 --> v0.30.0 controller-gen v0.12.0 --> v0.14.0 Signed-off-by: Andrei Kvapil <[email protected]>
- Loading branch information
Showing
10 changed files
with
3,802 additions
and
2,992 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
|
||
jobs: | ||
commit_lint: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
|
@@ -18,7 +18,7 @@ jobs: | |
firstParent: true | ||
golangci: | ||
name: lint | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v3 | ||
|
@@ -27,16 +27,16 @@ jobs: | |
- name: Run golangci-lint | ||
uses: golangci/[email protected] | ||
with: | ||
version: v1.53.2 | ||
version: v1.54.2 | ||
args: --timeout 5m --config .golangci.yml | ||
diff: | ||
name: diff | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-go@v2 | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version-file: 'go.mod' | ||
- run: make release | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
5,805 changes: 2,981 additions & 2,824 deletions
5,805
config/crd/bases/controlplane.cluster.x-k8s.io_kamajicontrolplanes.yaml
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
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,105 +1,172 @@ | ||
module github.com/clastix/cluster-api-control-plane-provider-kamaji | ||
|
||
go 1.20 | ||
go 1.22.0 | ||
|
||
toolchain go1.22.1 | ||
|
||
require ( | ||
github.com/clastix/kamaji v0.4.0 | ||
github.com/onsi/ginkgo/v2 v2.13.0 | ||
github.com/onsi/gomega v1.29.0 | ||
github.com/clastix/kamaji v0.5.0 | ||
github.com/onsi/ginkgo/v2 v2.17.1 | ||
github.com/onsi/gomega v1.32.0 | ||
github.com/pkg/errors v0.9.1 | ||
k8s.io/api v0.29.0 | ||
k8s.io/apimachinery v0.29.0 | ||
k8s.io/client-go v0.29.0 | ||
sigs.k8s.io/cluster-api v1.4.0-beta.2.0.20230613082000-a43982d398c3 | ||
sigs.k8s.io/controller-runtime v0.16.3 | ||
k8s.io/api v0.30.0 | ||
k8s.io/apimachinery v0.30.0 | ||
k8s.io/client-go v0.30.0 | ||
sigs.k8s.io/cluster-api v1.6.4 | ||
sigs.k8s.io/controller-runtime v0.17.1-0.20240416095710-67b27f27e514 | ||
) | ||
|
||
require ( | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/MakeNowJust/heredoc v1.0.0 // indirect | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver/v3 v3.2.0 // indirect | ||
github.com/Masterminds/sprig/v3 v3.2.3 // indirect | ||
github.com/NYTimes/gziphandler v1.1.1 // indirect | ||
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df // indirect | ||
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/blang/semver v3.5.1+incompatible // indirect | ||
github.com/blang/semver/v4 v4.0.0 // indirect | ||
github.com/cenkalti/backoff/v4 v4.2.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/chai2010/gettext-go v1.0.2 // indirect | ||
github.com/coredns/caddy v1.1.1 // indirect | ||
github.com/coredns/corefile-migration v1.0.21 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/docker/distribution v2.8.3+incompatible // indirect | ||
github.com/emicklei/go-restful/v3 v3.11.0 // indirect | ||
github.com/evanphx/json-patch/v5 v5.6.0 // indirect | ||
github.com/evanphx/json-patch v5.6.0+incompatible // indirect | ||
github.com/evanphx/json-patch/v5 v5.9.0 // indirect | ||
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/go-logr/logr v1.3.0 // indirect | ||
github.com/go-logr/zapr v1.2.4 // indirect | ||
github.com/go-errors/errors v1.4.2 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-logr/zapr v1.3.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.6 // indirect | ||
github.com/go-openapi/jsonreference v0.20.2 // indirect | ||
github.com/go-openapi/swag v0.22.3 // indirect | ||
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect | ||
github.com/gobuffalo/flect v1.0.2 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/btree v1.0.1 // indirect | ||
github.com/google/cel-go v0.17.8 // indirect | ||
github.com/google/gnostic-models v0.6.8 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect | ||
github.com/google/uuid v1.3.1 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect | ||
github.com/huandu/xstrings v1.3.3 // indirect | ||
github.com/imdario/mergo v0.3.13 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/moby/spdystream v0.2.0 // indirect | ||
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/prometheus/client_golang v1.16.0 // indirect | ||
github.com/prometheus/client_model v0.4.0 // indirect | ||
github.com/prometheus/common v0.44.0 // indirect | ||
github.com/prometheus/procfs v0.10.1 // indirect | ||
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/prometheus/client_golang v1.18.0 // indirect | ||
github.com/prometheus/client_model v0.5.0 // indirect | ||
github.com/prometheus/common v0.45.0 // indirect | ||
github.com/prometheus/procfs v0.12.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/shopspring/decimal v1.3.1 // indirect | ||
github.com/spf13/cast v1.5.1 // indirect | ||
github.com/spf13/cobra v1.8.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stoewer/go-strcase v1.2.0 // indirect | ||
github.com/valyala/fastjson v1.6.4 // indirect | ||
github.com/xlab/treeprint v1.2.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.0 // indirect | ||
go.opentelemetry.io/otel v1.20.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.20.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.20.0 // indirect | ||
go.opentelemetry.io/otel/sdk v1.20.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.20.0 // indirect | ||
go.opentelemetry.io/proto/otlp v1.0.0 // indirect | ||
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
go.uber.org/zap v1.25.0 // indirect | ||
golang.org/x/exp v0.0.0-20220827204233-334a2380cb91 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/oauth2 v0.10.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
go.uber.org/zap v1.26.0 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect | ||
golang.org/x/net v0.23.0 // indirect | ||
golang.org/x/oauth2 v0.14.0 // indirect | ||
golang.org/x/sync v0.6.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/term v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
golang.org/x/tools v0.12.0 // indirect | ||
golang.org/x/tools v0.18.0 // indirect | ||
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20230913181813-007df8e322eb // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13 // indirect | ||
google.golang.org/grpc v1.59.0 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/apiextensions-apiserver v0.29.0 // indirect | ||
k8s.io/component-base v0.29.0 // indirect | ||
k8s.io/klog/v2 v2.110.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect | ||
k8s.io/apiextensions-apiserver v0.30.0 // indirect | ||
k8s.io/apiserver v0.30.0 // indirect | ||
k8s.io/cli-runtime v0.30.0 // indirect | ||
k8s.io/cluster-bootstrap v0.28.4 // indirect | ||
k8s.io/component-base v0.30.0 // indirect | ||
k8s.io/klog/v2 v2.120.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect | ||
k8s.io/kubectl v0.28.4 // indirect | ||
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect | ||
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.29.0 // indirect | ||
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect | ||
sigs.k8s.io/kustomize/api v0.13.5-0.20230601165947-6ce0bf390ce3 // indirect | ||
sigs.k8s.io/kustomize/kyaml v0.14.3-0.20230601165947-6ce0bf390ce3 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
sigs.k8s.io/yaml v1.4.0 // indirect | ||
) | ||
|
||
replace ( | ||
k8s.io/api => k8s.io/api v0.29.0 | ||
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.29.0 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.29.0 | ||
k8s.io/apiserver => k8s.io/apiserver v0.29.0 | ||
k8s.io/cli-runtime => k8s.io/cli-runtime v0.29.0 | ||
k8s.io/client-go => k8s.io/client-go v0.29.0 | ||
k8s.io/cloud-provider => k8s.io/cloud-provider v0.29.0 | ||
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.29.0 | ||
k8s.io/code-generator => k8s.io/code-generator v0.29.0 | ||
k8s.io/component-base => k8s.io/component-base v0.29.0 | ||
k8s.io/component-helpers => k8s.io/component-helpers v0.29.0 | ||
k8s.io/controller-manager => k8s.io/controller-manager v0.29.0 | ||
k8s.io/cri-api => k8s.io/cri-api v0.29.0 | ||
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.29.0 | ||
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.29.0 | ||
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.29.0 | ||
k8s.io/kube-proxy => k8s.io/kube-proxy v0.29.0 | ||
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.29.0 | ||
k8s.io/kubectl => k8s.io/kubectl v0.29.0 | ||
k8s.io/kubelet => k8s.io/kubelet v0.29.0 | ||
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.29.0 | ||
k8s.io/metrics => k8s.io/metrics v0.29.0 | ||
k8s.io/mount-utils => k8s.io/mount-utils v0.29.0 | ||
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.29.0 | ||
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.29.0 | ||
k8s.io/api => k8s.io/api v0.30.0 | ||
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.30.0 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.30.0 | ||
k8s.io/apiserver => k8s.io/apiserver v0.30.0 | ||
k8s.io/cli-runtime => k8s.io/cli-runtime v0.30.0 | ||
k8s.io/client-go => k8s.io/client-go v0.30.0 | ||
k8s.io/cloud-provider => k8s.io/cloud-provider v0.30.0 | ||
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.30.0 | ||
k8s.io/code-generator => k8s.io/code-generator v0.30.0 | ||
k8s.io/component-base => k8s.io/component-base v0.30.0 | ||
k8s.io/component-helpers => k8s.io/component-helpers v0.30.0 | ||
k8s.io/controller-manager => k8s.io/controller-manager v0.30.0 | ||
k8s.io/cri-api => k8s.io/cri-api v0.30.0 | ||
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.30.0 | ||
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.30.0 | ||
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.30.0 | ||
k8s.io/kube-proxy => k8s.io/kube-proxy v0.30.0 | ||
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.30.0 | ||
k8s.io/kubectl => k8s.io/kubectl v0.30.0 | ||
k8s.io/kubelet => k8s.io/kubelet v0.30.0 | ||
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.30.0 | ||
k8s.io/metrics => k8s.io/metrics v0.30.0 | ||
k8s.io/mount-utils => k8s.io/mount-utils v0.30.0 | ||
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.30.0 | ||
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.30.0 | ||
) |
Oops, something went wrong.