Skip to content

Commit f99efa7

Browse files
Added support for capacity reservation group ID
Signed-off-by: anirudhAgniRedhat <[email protected]>
1 parent d6be293 commit f99efa7

File tree

591 files changed

+25464
-44208
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

591 files changed

+25464
-44208
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,6 @@ bin/
4545

4646
# vscode
4747
.vscode
48+
49+
# idea
50+
.idea

go.mod

Lines changed: 30 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ require (
1414
github.com/google/go-cmp v0.6.0
1515
github.com/hashicorp/golang-lru v1.0.2
1616
github.com/mitchellh/mapstructure v1.5.0
17-
github.com/onsi/ginkgo/v2 v2.14.0
18-
github.com/onsi/gomega v1.30.0
17+
github.com/onsi/ginkgo/v2 v2.15.0
18+
github.com/onsi/gomega v1.31.1
1919
github.com/openshift/api v0.0.0-20240124164020-e2ce40831f2e
2020
github.com/openshift/machine-api-operator v0.2.1-0.20240125175440-c9de8bda0dd1
2121
github.com/pkg/errors v0.9.1
2222
github.com/spf13/cobra v1.8.0
23-
golang.org/x/crypto v0.18.0
23+
golang.org/x/crypto v0.21.0
2424

2525
// kube 1.29
2626
k8s.io/api v0.29.0
@@ -35,18 +35,21 @@ require (
3535
)
3636

3737
require (
38-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.1
38+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.10.0
3939
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1
4040
github.com/jongio/azidext/go/azidext v0.5.0
4141
github.com/openshift/client-go v0.0.0-20240115204758-e6bf7d631d5e
4242
github.com/openshift/library-go v0.0.0-20240116081341-964bcb3f545c
43+
sigs.k8s.io/cluster-api-provider-azure v1.14.3
4344
)
4445

4546
require (
46-
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1 // indirect
47+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect
4748
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
4849
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
4950
github.com/Azure/go-autorest/autorest/adal v0.9.23 // indirect
51+
github.com/Azure/go-autorest/autorest/azure/auth v0.5.12 // indirect
52+
github.com/Azure/go-autorest/autorest/azure/cli v0.4.5 // indirect
5053
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
5154
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
5255
github.com/Azure/go-autorest/logger v0.2.1 // indirect
@@ -57,18 +60,19 @@ require (
5760
github.com/blang/semver/v4 v4.0.0 // indirect
5861
github.com/cespare/xxhash/v2 v2.2.0 // indirect
5962
github.com/chai2010/gettext-go v1.0.2 // indirect
60-
github.com/davecgh/go-spew v1.1.1 // indirect
63+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
64+
github.com/dimchansky/utfbom v1.1.1 // indirect
6165
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
62-
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
63-
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
66+
github.com/evanphx/json-patch v5.7.0+incompatible // indirect
67+
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
6468
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
6569
github.com/fatih/color v1.16.0 // indirect
6670
github.com/fsnotify/fsnotify v1.7.0 // indirect
6771
github.com/go-errors/errors v1.4.2 // indirect
6872
github.com/go-logr/zapr v1.3.0 // indirect
69-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
73+
github.com/go-openapi/jsonpointer v0.20.0 // indirect
7074
github.com/go-openapi/jsonreference v0.20.2 // indirect
71-
github.com/go-openapi/swag v0.22.3 // indirect
75+
github.com/go-openapi/swag v0.22.4 // indirect
7276
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
7377
github.com/gobuffalo/flect v1.0.2 // indirect
7478
github.com/gogo/protobuf v1.3.2 // indirect
@@ -81,10 +85,10 @@ require (
8185
github.com/google/gofuzz v1.2.0 // indirect
8286
github.com/google/pprof v0.0.0-20230926050212-f7f687d19a98 // indirect
8387
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
84-
github.com/google/uuid v1.5.0 // indirect
88+
github.com/google/uuid v1.6.0 // indirect
8589
github.com/gorilla/websocket v1.5.0 // indirect
8690
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect
87-
github.com/imdario/mergo v0.3.13 // indirect
91+
github.com/imdario/mergo v0.3.16 // indirect
8892
github.com/inconshreveable/mousetrap v1.1.0 // indirect
8993
github.com/josharian/intern v1.0.0 // indirect
9094
github.com/json-iterator/go v1.1.12 // indirect
@@ -94,6 +98,7 @@ require (
9498
github.com/mattn/go-colorable v0.1.13 // indirect
9599
github.com/mattn/go-isatty v0.0.20 // indirect
96100
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
101+
github.com/mitchellh/go-homedir v1.1.0 // indirect
97102
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
98103
github.com/moby/spdystream v0.2.0 // indirect
99104
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect
@@ -105,7 +110,7 @@ require (
105110
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
106111
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
107112
github.com/prometheus/client_golang v1.18.0 // indirect
108-
github.com/prometheus/client_model v0.5.0 // indirect
113+
github.com/prometheus/client_model v0.6.0 // indirect
109114
github.com/prometheus/common v0.45.0 // indirect
110115
github.com/prometheus/procfs v0.12.0 // indirect
111116
github.com/robfig/cron v1.2.0 // indirect
@@ -118,19 +123,19 @@ require (
118123
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
119124
go.uber.org/multierr v1.11.0 // indirect
120125
go.uber.org/zap v1.26.0 // indirect
121-
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
122-
golang.org/x/mod v0.14.0 // indirect
123-
golang.org/x/net v0.20.0 // indirect
124-
golang.org/x/oauth2 v0.12.0 // indirect
126+
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
127+
golang.org/x/mod v0.15.0 // indirect
128+
golang.org/x/net v0.23.0 // indirect
129+
golang.org/x/oauth2 v0.15.0 // indirect
125130
golang.org/x/sync v0.5.0 // indirect
126-
golang.org/x/sys v0.16.0 // indirect
127-
golang.org/x/term v0.16.0 // indirect
131+
golang.org/x/sys v0.18.0 // indirect
132+
golang.org/x/term v0.18.0 // indirect
128133
golang.org/x/text v0.14.0 // indirect
129-
golang.org/x/time v0.3.0 // indirect
134+
golang.org/x/time v0.5.0 // indirect
130135
golang.org/x/tools v0.16.1 // indirect
131136
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
132-
google.golang.org/appengine v1.6.7 // indirect
133-
google.golang.org/protobuf v1.31.0 // indirect
137+
google.golang.org/appengine v1.6.8 // indirect
138+
google.golang.org/protobuf v1.33.0 // indirect
134139
gopkg.in/inf.v0 v0.9.1 // indirect
135140
gopkg.in/yaml.v2 v2.4.0 // indirect
136141
gopkg.in/yaml.v3 v3.0.1 // indirect
@@ -141,9 +146,12 @@ require (
141146
k8s.io/kube-aggregator v0.29.0 // indirect
142147
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
143148
k8s.io/kubectl v0.29.0 // indirect
149+
sigs.k8s.io/cluster-api v1.6.4 // indirect
144150
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
145151
sigs.k8s.io/kube-storage-version-migrator v0.0.6-0.20230721195810-5c8923c5ff96 // indirect
146152
sigs.k8s.io/kustomize/api v0.13.5-0.20230601165947-6ce0bf390ce3 // indirect
147153
sigs.k8s.io/kustomize/kyaml v0.14.3-0.20230601165947-6ce0bf390ce3 // indirect
148154
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
149155
)
156+
157+
replace github.com/openshift/api => github.com/anirudhAgniRedhat/openshift-api v0.0.2

0 commit comments

Comments
 (0)