Skip to content

Commit 3f3dd09

Browse files
authored
AWS RKE2 (#67)
1 parent 54a5401 commit 3f3dd09

File tree

5 files changed

+115
-18
lines changed

5 files changed

+115
-18
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Once the CREATE code has been configured, it can now be committed and pushed to
5858
```shell
5959
create-cli pre-install push \
6060
--cloud-provider $CLOUD_PROVIDER \
61-
--pat $GITLAB_PERSONAL_ACCESS_TOKEN \
61+
--pat $GITLAB_PAT_TOKEN \
6262
--gitlab-group $GITLAB_GROUP
6363
```
6464

go.mod

+23-15
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module create-cli
33
go 1.18
44

55
require (
6-
github.com/go-git/go-git/v5 v5.4.2
6+
github.com/go-git/go-git/v5 v5.9.0
77
github.com/google/uuid v1.3.0
88
github.com/hashicorp/vault/api v1.7.2
99
github.com/spf13/cobra v1.5.0
@@ -14,17 +14,25 @@ require (
1414
)
1515

1616
require (
17-
github.com/Microsoft/go-winio v0.5.2 // indirect
18-
github.com/ProtonMail/go-crypto v0.0.0-20220407094043-a94812496cf5 // indirect
19-
github.com/acomagu/bufpipe v1.0.3 // indirect
20-
github.com/emirpasic/gods v1.12.0 // indirect
21-
github.com/go-git/gcfg v1.5.0 // indirect
22-
github.com/go-git/go-billy/v5 v5.3.1 // indirect
17+
dario.cat/mergo v1.0.0 // indirect
18+
github.com/Microsoft/go-winio v0.6.1 // indirect
19+
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
20+
github.com/acomagu/bufpipe v1.0.4 // indirect
21+
github.com/cloudflare/circl v1.3.3 // indirect
22+
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
23+
github.com/emirpasic/gods v1.18.1 // indirect
24+
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
25+
github.com/go-git/go-billy/v5 v5.5.0 // indirect
26+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
2327
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
24-
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
28+
github.com/kevinburke/ssh_config v1.2.0 // indirect
29+
github.com/pjbgf/sha1cd v0.3.0 // indirect
2530
github.com/sergi/go-diff v1.1.0 // indirect
31+
github.com/skeema/knownhosts v1.2.0 // indirect
2632
github.com/stretchr/objx v0.3.0 // indirect
27-
github.com/xanzy/ssh-agent v0.3.0 // indirect
33+
github.com/xanzy/ssh-agent v0.3.3 // indirect
34+
golang.org/x/mod v0.12.0 // indirect
35+
golang.org/x/tools v0.13.0 // indirect
2836
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
2937
gopkg.in/warnings.v0 v0.1.2 // indirect
3038
)
@@ -97,12 +105,12 @@ require (
97105
github.com/subosito/gotenv v1.3.0 // indirect
98106
github.com/xanzy/go-gitlab v0.69.0
99107
go.uber.org/atomic v1.9.0 // indirect
100-
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
101-
golang.org/x/net v0.7.0 // indirect
108+
golang.org/x/crypto v0.13.0
109+
golang.org/x/net v0.15.0 // indirect
102110
golang.org/x/oauth2 v0.0.0-20220630143837-2104d58473e0
103-
golang.org/x/sys v0.5.0 // indirect
104-
golang.org/x/term v0.5.0 // indirect
105-
golang.org/x/text v0.7.0 // indirect
111+
golang.org/x/sys v0.12.0 // indirect
112+
golang.org/x/term v0.12.0 // indirect
113+
golang.org/x/text v0.13.0 // indirect
106114
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect
107115
google.golang.org/appengine v1.6.7 // indirect
108116
google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90 // indirect
@@ -112,7 +120,7 @@ require (
112120
gopkg.in/ini.v1 v1.66.4 // indirect
113121
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
114122
gopkg.in/yaml.v2 v2.4.0 // indirect
115-
gopkg.in/yaml.v3 v3.0.0 // indirect
123+
gopkg.in/yaml.v3 v3.0.1 // indirect
116124
k8s.io/klog/v2 v2.60.1 // indirect
117125
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
118126
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9

0 commit comments

Comments
 (0)