Skip to content
This repository was archived by the owner on Jul 10, 2024. It is now read-only.

Commit 4ff1655

Browse files
committed
Update gomod
1 parent a87238f commit 4ff1655

File tree

3 files changed

+389
-31
lines changed

3 files changed

+389
-31
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: test-deploy
5+
namespace: default
6+
spec:
7+
replicas: 1
8+
selector:
9+
matchLabels:
10+
app: test-pod
11+
template:
12+
metadata:
13+
labels:
14+
app: test-pod
15+
spec:
16+
containers:
17+
- name: test-container
18+
image: ghcr.io/wzshiming/echoserver/echoserver:v0.0.1

go.mod

Lines changed: 54 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ require (
1919
github.com/aws/smithy-go v1.13.4
2020
github.com/c9s/goprocinfo v0.0.0-20210130143923-c95fcf8c64a8
2121
github.com/gdamore/tcell/v2 v2.1.0
22+
github.com/ghodss/yaml v1.0.0
2223
github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f
23-
github.com/golang/mock v1.3.1
24+
github.com/golang/mock v1.4.4
2425
github.com/golang/protobuf v1.5.2
25-
github.com/google/go-cmp v0.5.8
26+
github.com/google/go-cmp v0.5.9
2627
github.com/google/gopacket v1.1.19
2728
github.com/google/martian/v3 v3.0.1
2829
github.com/google/uuid v1.3.0
@@ -35,15 +36,19 @@ require (
3536
github.com/patrickmn/go-cache v2.1.0+incompatible
3637
github.com/pkg/errors v0.9.1
3738
github.com/rivo/tview v0.0.0-20210217110421-8a8f78a6dd01
38-
github.com/spf13/cobra v1.1.3
39+
github.com/spf13/cobra v1.6.0
3940
github.com/spf13/pflag v1.0.5
4041
github.com/spf13/viper v1.7.1
41-
github.com/stretchr/testify v1.7.1
42+
github.com/stretchr/testify v1.8.0
4243
github.com/yudai/gojsondiff v1.0.0
4344
golang.org/x/exp v0.0.0-20220428152302-39d4317da171
44-
golang.org/x/term v0.1.0
45-
golang.org/x/text v0.4.0
45+
golang.org/x/term v0.5.0
46+
golang.org/x/text v0.7.0
4647
gopkg.in/yaml.v2 v2.4.0
48+
k8s.io/api v0.26.3
49+
k8s.io/apimachinery v0.26.3
50+
k8s.io/cli-runtime v0.26.3
51+
k8s.io/client-go v0.26.3
4752
)
4853

4954
require (
@@ -59,24 +64,47 @@ require (
5964
github.com/aws/aws-sdk-go-v2/service/sts v1.17.1 // indirect
6065
github.com/davecgh/go-spew v1.1.1 // indirect
6166
github.com/dukex/mixpanel v1.0.1 // indirect
67+
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
68+
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
6269
github.com/fsnotify/fsnotify v1.4.9 // indirect
6370
github.com/gdamore/encoding v1.0.0 // indirect
71+
github.com/go-errors/errors v1.0.1 // indirect
72+
github.com/go-logr/logr v1.2.3 // indirect
73+
github.com/go-openapi/jsonpointer v0.19.5 // indirect
74+
github.com/go-openapi/jsonreference v0.20.0 // indirect
75+
github.com/go-openapi/swag v0.19.14 // indirect
76+
github.com/gogo/protobuf v1.3.2 // indirect
6477
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
78+
github.com/google/btree v1.0.1 // indirect
79+
github.com/google/gnostic v0.5.7-v3refs // indirect
80+
github.com/google/gofuzz v1.1.0 // indirect
81+
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
82+
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect
6583
github.com/hashicorp/errwrap v1.0.0 // indirect
6684
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
6785
github.com/hashicorp/go-multierror v1.1.1 // indirect
6886
github.com/hashicorp/hcl v1.0.0 // indirect
69-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
87+
github.com/imdario/mergo v0.3.6 // indirect
88+
github.com/inconshreveable/mousetrap v1.0.1 // indirect
7089
github.com/jmespath/go-jmespath v0.4.0 // indirect
90+
github.com/josharian/intern v1.0.0 // indirect
91+
github.com/json-iterator/go v1.1.12 // indirect
7192
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
93+
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
7294
github.com/lucasb-eyer/go-colorful v1.0.3 // indirect
7395
github.com/magiconair/properties v1.8.1 // indirect
96+
github.com/mailru/easyjson v0.7.6 // indirect
7497
github.com/mattn/go-colorable v0.1.6 // indirect
7598
github.com/mattn/go-isatty v0.0.12 // indirect
7699
github.com/mattn/go-runewidth v0.0.10 // indirect
77100
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
78-
github.com/mitchellh/mapstructure v1.1.2 // indirect
101+
github.com/mitchellh/mapstructure v1.4.1 // indirect
102+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
103+
github.com/modern-go/reflect2 v1.0.2 // indirect
104+
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
105+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
79106
github.com/pelletier/go-toml v1.2.0 // indirect
107+
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
80108
github.com/pmezard/go-difflib v1.0.0 // indirect
81109
github.com/rivo/uniseg v0.2.0 // indirect
82110
github.com/segmentio/analytics-go/v3 v3.2.1 // indirect
@@ -86,12 +114,26 @@ require (
86114
github.com/spf13/cast v1.3.0 // indirect
87115
github.com/spf13/jwalterweatherman v1.0.0 // indirect
88116
github.com/subosito/gotenv v1.2.0 // indirect
117+
github.com/xlab/treeprint v1.1.0 // indirect
89118
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
90-
golang.org/x/net v0.1.0 // indirect
91-
golang.org/x/sys v0.1.0 // indirect
92-
google.golang.org/protobuf v1.27.1 // indirect
119+
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect
120+
golang.org/x/net v0.7.0 // indirect
121+
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
122+
golang.org/x/sys v0.5.0 // indirect
123+
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
124+
google.golang.org/appengine v1.6.7 // indirect
125+
google.golang.org/protobuf v1.28.1 // indirect
126+
gopkg.in/inf.v0 v0.9.1 // indirect
93127
gopkg.in/ini.v1 v1.51.0 // indirect
94-
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
128+
gopkg.in/yaml.v3 v3.0.1 // indirect
129+
k8s.io/klog/v2 v2.80.1 // indirect
130+
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
131+
k8s.io/utils v0.0.0-20221107191617-1a15be271d1d // indirect
132+
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
133+
sigs.k8s.io/kustomize/api v0.12.1 // indirect
134+
sigs.k8s.io/kustomize/kyaml v0.13.9 // indirect
135+
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
136+
sigs.k8s.io/yaml v1.3.0 // indirect
95137
)
96138

97139
replace (

0 commit comments

Comments
 (0)