Skip to content

Commit 432ea05

Browse files
committed
feat: migrate admin api to auth.redhat.com
1 parent 8ea6b93 commit 432ea05

File tree

6 files changed

+223
-572
lines changed

6 files changed

+223
-572
lines changed

rhoc/go.mod

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,32 @@ module github.com/bf2fc6cc711aee1a0c2a/cos-tools/rhoc
33
go 1.18
44

55
require (
6-
github.com/AlecAivazis/survey/v2 v2.3.4
6+
github.com/AlecAivazis/survey/v2 v2.3.5
77
github.com/antihax/optional v1.0.0
88
github.com/gertd/go-pluralize v0.2.0
99
github.com/gobeam/stringy v0.0.5
10+
github.com/hashicorp/go-multierror v1.1.1
1011
github.com/olekukonko/tablewriter v0.0.5
11-
github.com/redhat-developer/app-services-cli v0.42.2
12-
github.com/spf13/cobra v1.4.0
12+
github.com/redhat-developer/app-services-cli v0.51.2
13+
github.com/spf13/cobra v1.5.0
1314
github.com/spf13/pflag v1.0.5
1415
github.com/spf13/viper v1.8.1
15-
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a
16+
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1
17+
gopkg.in/yaml.v3 v3.0.1
18+
k8s.io/api v0.24.4
1619
k8s.io/apimachinery v0.24.4
20+
k8s.io/cli-runtime v0.24.4
21+
k8s.io/client-go v0.24.4
1722
)
1823

1924
require (
20-
github.com/BurntSushi/toml v1.0.0 // indirect
25+
github.com/BurntSushi/toml v1.2.0 // indirect
2126
github.com/Nerzal/gocloak/v7 v7.11.0 // indirect
2227
github.com/PuerkitoBio/purell v1.1.1 // indirect
2328
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
2429
github.com/blang/semver v3.5.1+incompatible // indirect
2530
github.com/briandowns/spinner v1.18.1 // indirect
26-
github.com/coreos/go-oidc/v3 v3.1.0 // indirect
31+
github.com/coreos/go-oidc/v3 v3.2.0 // indirect
2732
github.com/davecgh/go-spew v1.1.1 // indirect
2833
github.com/dgrijalva/jwt-go/v4 v4.0.0-preview1 // indirect
2934
github.com/dustin/go-humanize v1.0.0 // indirect
@@ -38,7 +43,7 @@ require (
3843
github.com/go-openapi/swag v0.19.14 // indirect
3944
github.com/go-resty/resty/v2 v2.3.0 // indirect
4045
github.com/gogo/protobuf v1.3.2 // indirect
41-
github.com/golang-jwt/jwt/v4 v4.4.1 // indirect
46+
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
4247
github.com/golang/protobuf v1.5.2 // indirect
4348
github.com/google/btree v1.0.1 // indirect
4449
github.com/google/gnostic v0.5.7-v3refs // indirect
@@ -50,7 +55,6 @@ require (
5055
github.com/google/uuid v1.1.2 // indirect
5156
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect
5257
github.com/hashicorp/errwrap v1.0.0 // indirect
53-
github.com/hashicorp/go-multierror v1.1.1 // indirect
5458
github.com/hashicorp/hcl v1.0.0 // indirect
5559
github.com/imdario/mergo v0.3.12 // indirect
5660
github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf // indirect
@@ -78,13 +82,13 @@ require (
7882
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 // indirect
7983
github.com/pkg/errors v0.9.1 // indirect
8084
github.com/pmezard/go-difflib v1.0.0 // indirect
81-
github.com/redhat-developer/app-services-sdk-go v0.10.0 // indirect
82-
github.com/redhat-developer/app-services-sdk-go/accountmgmt v0.1.0 // indirect
83-
github.com/redhat-developer/app-services-sdk-go/connectormgmt v0.5.0 // indirect
84-
github.com/redhat-developer/app-services-sdk-go/kafkainstance v0.6.0 // indirect
85-
github.com/redhat-developer/app-services-sdk-go/kafkamgmt v0.9.0 // indirect
86-
github.com/redhat-developer/app-services-sdk-go/registryinstance v0.3.1 // indirect
87-
github.com/redhat-developer/app-services-sdk-go/registrymgmt v0.6.1 // indirect
85+
github.com/redhat-developer/app-services-sdk-go v0.11.0 // indirect
86+
github.com/redhat-developer/app-services-sdk-go/accountmgmt v0.2.0 // indirect
87+
github.com/redhat-developer/app-services-sdk-go/connectormgmt v0.8.0 // indirect
88+
github.com/redhat-developer/app-services-sdk-go/kafkainstance v0.9.0 // indirect
89+
github.com/redhat-developer/app-services-sdk-go/kafkamgmt v0.13.0 // indirect
90+
github.com/redhat-developer/app-services-sdk-go/registryinstance v0.8.1 // indirect
91+
github.com/redhat-developer/app-services-sdk-go/registrymgmt v0.10.0 // indirect
8892
github.com/rivo/uniseg v0.2.0 // indirect
8993
github.com/segmentio/ksuid v1.0.3 // indirect
9094
github.com/spf13/afero v1.6.0 // indirect
@@ -99,24 +103,20 @@ require (
99103
gitlab.com/c0b/go-ordered-json v0.0.0-20201030195603-febf46534d5a // indirect
100104
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect
101105
golang.org/x/crypto v0.0.0-20220331220935-ae2d96664a29 // indirect
102-
golang.org/x/net v0.0.0-20220403103023-749bd193bc2b // indirect
103-
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
106+
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
107+
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
104108
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
105109
golang.org/x/text v0.3.7 // indirect
106110
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
107111
google.golang.org/appengine v1.6.7 // indirect
108-
google.golang.org/protobuf v1.28.0 // indirect
112+
google.golang.org/protobuf v1.28.1 // indirect
109113
gopkg.in/inf.v0 v0.9.1 // indirect
110114
gopkg.in/ini.v1 v1.62.0 // indirect
111115
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
112116
gopkg.in/yaml.v2 v2.4.0 // indirect
113-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
114-
k8s.io/api v0.24.4 // indirect
115-
k8s.io/cli-runtime v0.24.4 // indirect
116-
k8s.io/client-go v0.24.4 // indirect
117117
k8s.io/klog/v2 v2.60.1 // indirect
118118
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
119-
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
119+
k8s.io/utils v0.0.0-20220713171938-56c0de1e6f5e // indirect
120120
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
121121
sigs.k8s.io/kustomize/api v0.11.4 // indirect
122122
sigs.k8s.io/kustomize/kyaml v0.13.6 // indirect

0 commit comments

Comments
 (0)