forked from kubernetes-sigs/cluster-api-provider-cloudstack
-
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.
Upgrading cluster-api dependency to support k8s v1.24 (kubernetes-sig…
- Loading branch information
1 parent
07b6cfe
commit e49ee8a
Showing
31 changed files
with
779 additions
and
1,107 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
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
67 changes: 67 additions & 0 deletions
67
config/crd/bases/fakes.infrastructure.cluster.x-k8s.io_cloudstackmachineowners.yaml
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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.8.0 | ||
creationTimestamp: null | ||
name: cloudstackmachineowners.fakes.infrastructure.cluster.x-k8s.io | ||
spec: | ||
group: fakes.infrastructure.cluster.x-k8s.io | ||
names: | ||
kind: CloudStackMachineOwner | ||
listKind: CloudStackMachineOwnerList | ||
plural: cloudstackmachineowners | ||
singular: cloudstackmachineowner | ||
scope: Namespaced | ||
versions: | ||
- name: fakes | ||
schema: | ||
openAPIV3Schema: | ||
description: CloudStackMachineOwner is the Schema for CloudStack Machine owner | ||
(machineset, etcdadmcluster, kubeadmcontrolplane) | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: CloudStackMachineOwnerSpec defines the desired state of CloudStackMachineOwner | ||
properties: | ||
replicas: | ||
format: int32 | ||
type: integer | ||
type: object | ||
status: | ||
description: CloudStackMachineOwnerStatus defines the name of the template | ||
properties: | ||
ready: | ||
type: boolean | ||
readyReplicas: | ||
format: int32 | ||
type: integer | ||
replicas: | ||
format: int32 | ||
type: integer | ||
required: | ||
- replicas | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,107 @@ | ||
module sigs.k8s.io/cluster-api-provider-cloudstack | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/ReneKroon/ttlcache v1.7.0 | ||
github.com/apache/cloudstack-go/v2 v2.13.0 | ||
github.com/go-logr/logr v1.2.3 | ||
github.com/golang/mock v1.6.0 | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/onsi/ginkgo/v2 v2.1.4 | ||
github.com/onsi/gomega v1.19.0 | ||
github.com/onsi/ginkgo/v2 v2.4.0 | ||
github.com/onsi/gomega v1.24.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/prometheus/client_golang v1.14.0 | ||
github.com/smallfish/simpleyaml v0.1.0 | ||
github.com/spf13/pflag v1.0.5 | ||
golang.org/x/text v0.3.7 | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | ||
k8s.io/api v0.23.0 | ||
k8s.io/apimachinery v0.23.0 | ||
k8s.io/client-go v0.23.0 | ||
k8s.io/klog/v2 v2.30.0 | ||
k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b | ||
sigs.k8s.io/cluster-api v1.0.0 | ||
sigs.k8s.io/controller-runtime v0.11.1 | ||
golang.org/x/text v0.4.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
k8s.io/api v0.25.3 | ||
k8s.io/apimachinery v0.25.3 | ||
k8s.io/client-go v0.25.3 | ||
k8s.io/klog/v2 v2.80.1 | ||
k8s.io/utils v0.0.0-20221108210102-8e77b1f39fe2 | ||
sigs.k8s.io/cluster-api v1.2.7 | ||
sigs.k8s.io/controller-runtime v0.13.1 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.7.0 // indirect | ||
github.com/Azure/go-autorest v14.2.0+incompatible // indirect | ||
github.com/Azure/go-autorest/autorest v0.11.27 // indirect | ||
github.com/Azure/go-autorest/autorest/adal v0.9.20 // indirect | ||
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect | ||
github.com/Azure/go-autorest/logger v0.2.1 // indirect | ||
github.com/Azure/go-autorest/tracing v0.6.0 // indirect | ||
github.com/antlr/antlr4/runtime/Go/antlr v1.4.10 // indirect | ||
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/blang/semver v3.5.1+incompatible // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/coredns/caddy v1.1.1 // indirect | ||
github.com/coredns/corefile-migration v1.0.18 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/docker/distribution v2.8.1+incompatible // indirect | ||
github.com/emicklei/go-restful/v3 v3.9.0 // indirect | ||
github.com/evanphx/json-patch v5.6.0+incompatible // indirect | ||
github.com/evanphx/json-patch/v5 v5.6.0 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.20.0 // indirect | ||
github.com/go-openapi/swag v0.22.3 // indirect | ||
github.com/gobuffalo/flect v0.3.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.2.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/gnostic v0.6.9 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/uuid v1.2.0 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/huandu/xstrings v1.3.3 // indirect | ||
github.com/imdario/mergo v0.3.13 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/common v0.37.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
github.com/shopspring/decimal v1.3.1 // indirect | ||
github.com/stretchr/testify v1.8.1 // indirect | ||
go.uber.org/atomic v1.10.0 // indirect | ||
go.uber.org/multierr v1.8.0 // indirect | ||
go.uber.org/zap v1.23.0 // indirect | ||
go4.org/intern v0.0.0-20220617035311-6925f38cc365 // indirect | ||
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect | ||
golang.org/x/net v0.2.0 // indirect | ||
golang.org/x/oauth2 v0.1.0 // indirect | ||
golang.org/x/sys v0.2.0 // indirect | ||
golang.org/x/term v0.2.0 // indirect | ||
golang.org/x/time v0.2.0 // indirect | ||
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20221107162902-2d387536bcdd // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
inet.af/netaddr v0.0.0-20220811202034-502d2d690317 // indirect | ||
k8s.io/apiextensions-apiserver v0.25.3 // indirect | ||
k8s.io/cluster-bootstrap v0.25.3 // indirect | ||
k8s.io/component-base v0.25.3 // indirect | ||
k8s.io/kube-openapi v0.0.0-20221106113015-f73e7dbcfe29 // indirect | ||
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
) | ||
|
||
replace github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt/v4 v4.0.0 // Indirect upgrade to address https://github.com/advisories/GHSA-w73w-5m7g-f7qc | ||
|
||
replace sigs.k8s.io/cluster-api/test => sigs.k8s.io/cluster-api/test v1.2.7 | ||
|
||
replace sigs.k8s.io/cluster-api => sigs.k8s.io/cluster-api v1.2.7 |
Oops, something went wrong.