2019-04-03 18:29:21 -07:00
module github . com / talos - systems / talos
2018-08-29 14:27:28 -07:00
2022-08-02 22:43:31 +04:00
go 1.19
2019-08-14 18:00:25 +00:00
2020-09-07 23:36:42 +03:00
replace (
2021-06-21 17:46:37 +00:00
/ / Use nested module .
2020-09-07 23:36:42 +03:00
github . com / talos - systems / talos / pkg / machinery = > . / pkg / machinery
2021-04-27 08:40:01 +00:00
2021-03-15 22:06:15 +03:00
/ / forked go - yaml that introduces RawYAML interface , which can be used to populate YAML fields using bytes
/ / which are then encoded as a valid YAML blocks with proper indentiation
2022-05-27 21:05:09 +03:00
gopkg . in / yaml . v3 = > github . com / unix4ever / yaml v0 . 0.0 - 20220527175918 - f17b0f05cf2c
2021-05-04 21:17:19 +03:00
/ / See https : / / github . com / talos - systems / go - loadbalancer / pull / 4
/ / ` go get github . com / smira / tcpproxy @ combined - fixes ` , then copy pseudo - version there
inet . af / tcpproxy = > github . com / smira / tcpproxy v0 . 0.0 - 20201015133617 - de5f7797b95b
2020-09-07 23:36:42 +03:00
)
2020-08-17 19:12:47 +03:00
2021-11-08 10:45:28 +00:00
// Kubernetes dependencies sharing the same version.
require (
2022-08-12 00:17:45 +04:00
k8s . io / api v0 . 25.0 - rc . 0
k8s . io / apimachinery v0 . 25.0 - rc . 0
k8s . io / apiserver v0 . 25.0 - rc . 0
k8s . io / client - go v0 . 25.0 - rc . 0
k8s . io / component - base v0 . 25.0 - rc . 0
k8s . io / cri - api v0 . 25.0 - rc . 0
k8s . io / kubectl v0 . 25.0 - rc . 0
k8s . io / kubelet v0 . 25.0 - rc . 0
2021-11-08 10:45:28 +00:00
)
2018-08-29 14:27:28 -07:00
require (
2022-06-20 18:40:43 +04:00
cloud . google . com / go / compute v1 . 7.0
2022-07-25 18:14:49 +04:00
github . com / BurntSushi / toml v1 . 2.0
2022-08-08 22:30:34 +04:00
github . com / aws / aws - sdk - go v1 . 44.71
2020-05-26 00:21:11 +03:00
github . com / beevik / ntp v0 . 3.0
2022-04-11 15:33:09 +03:00
github . com / cenkalti / backoff / v4 v4 . 1.3
2022-05-31 21:19:36 +04:00
github . com / containerd / cgroups v1 . 0.4
2022-08-08 22:30:34 +04:00
github . com / containerd / containerd v1 . 6.8
2021-04-27 14:05:58 +03:00
github . com / containerd / typeurl v1 . 0.2
2022-08-01 17:36:24 +04:00
github . com / containernetworking / cni v1 . 1.2
2022-03-14 16:40:02 +03:00
github . com / containernetworking / plugins v1 . 1.1
2021-04-27 14:05:58 +03:00
github . com / coreos / go - iptables v0 . 6.0
2021-03-25 21:29:11 +03:00
github . com / coreos / go - semver v0 . 3.0
2022-08-05 17:32:09 +03:00
github . com / cosi - project / runtime v0 . 0.0 - 20220809130718 - cd5f564066ad
2022-03-14 16:40:02 +03:00
github . com / docker / distribution v2 . 8.1 + incompatible
2022-06-20 18:40:43 +04:00
github . com / docker / docker v20 . 10.17 + incompatible
2019-04-29 11:51:39 -07:00
github . com / docker / go - connections v0 . 4.0
2019-12-17 16:54:55 +03:00
github . com / dustin / go - humanize v1 . 0.0
2022-06-27 18:15:22 +04:00
github . com / emicklei / dot v1 . 0.0
2021-09-27 16:35:50 +03:00
github . com / fatih / color v1 . 13.0
2022-05-03 16:04:52 +03:00
github . com / fsnotify / fsnotify v1 . 5.4
2022-08-01 17:36:24 +04:00
github . com / gdamore / tcell / v2 v2 . 5.2
2020-07-16 17:50:44 +03:00
github . com / gizak / termui / v3 v3 . 1.0
2022-03-21 15:19:53 +03:00
github . com / godbus / dbus / v5 v5 . 1.0
2022-05-18 18:50:27 +05:30
github . com / golang / mock v1 . 6.0
2022-05-03 16:04:52 +03:00
github . com / google / go - cmp v0 . 5.8
2022-07-18 15:56:39 +04:00
github . com / google / gopacket v1 . 1.19
2022-08-08 22:30:34 +04:00
github . com / google / nftables v0 . 0.0 - 20220808154552 - 2 eca00135732
2021-07-19 14:57:33 +03:00
github . com / google / uuid v1 . 3.0
2021-10-28 23:50:50 +03:00
github . com / gosuri / uiprogress v0 . 0.1
2021-04-27 14:05:58 +03:00
github . com / grpc - ecosystem / go - grpc - middleware v1 . 3.0
2022-02-16 18:15:59 +00:00
github . com / hashicorp / go - cleanhttp v0 . 5.2
2022-06-20 18:40:43 +04:00
github . com / hashicorp / go - getter v1 . 6.2
2021-03-15 15:06:23 +03:00
github . com / hashicorp / go - multierror v1 . 1.1
2022-07-04 21:22:20 +04:00
github . com / hashicorp / go - version v1 . 6.0
2022-08-01 17:36:24 +04:00
github . com / hetznercloud / hcloud - go v1 . 35.2
2022-05-10 22:12:09 +03:00
github . com / insomniacslk / dhcp v0 . 0.0 - 20220504074936 - 1 ca156eafb9f
2022-08-01 17:36:24 +04:00
github . com / jsimonetti / rtnetlink v1 . 2.1
2022-01-10 16:55:52 +03:00
github . com / jxskiss / base62 v1 . 1.0
2022-07-21 14:58:41 +02:00
github . com / martinlindhe / base36 v1 . 1.1
2021-09-13 15:43:55 +03:00
github . com / mattn / go - isatty v0 . 0.14
2022-05-16 15:36:33 +03:00
github . com / mdlayher / arp v0 . 0.0 - 20220512170110 - 6706 a2966875
2022-02-15 21:13:06 +03:00
github . com / mdlayher / ethtool v0 . 0.0 - 20220213132912 - 856 bd6cb8a38
2022-02-07 16:25:10 +03:00
github . com / mdlayher / genetlink v1 . 2.0
github . com / mdlayher / netlink v1 . 6.0
2022-04-25 16:26:41 +03:00
github . com / mdlayher / netx v0 . 0.0 - 20220422152302 - c711c2f8512f
2022-04-26 21:38:00 +03:00
github . com / opencontainers / image - spec v1 . 0.3 - 0.20211202183452 - c5a74bcca799
2021-08-03 19:04:42 +03:00
github . com / opencontainers / runtime - spec v1 . 0.3 - 0.20210326190908 - 1 c3f411f0417
2022-06-20 18:40:43 +04:00
github . com / packethost / packngo v0 . 25.0
2022-04-25 16:26:41 +03:00
github . com / pelletier / go - toml v1 . 9.5
2019-12-17 19:53:19 +00:00
github . com / pin / tftp v2 . 1.0 + incompatible
2021-12-23 23:55:26 +03:00
github . com / pmorjan / kmod v1 . 0.0
2022-08-01 17:36:24 +04:00
github . com / prometheus / procfs v0 . 8.0
2022-08-08 22:30:34 +04:00
github . com / rivo / tview v0 . 0.0 - 20220805210617 - 37 ad0bb93703
2022-03-28 15:02:50 +03:00
github . com / rs / xid v1 . 4.0
2020-10-20 01:08:16 +03:00
github . com / ryanuber / columnize v2 . 1.2 + incompatible
2022-05-18 18:50:27 +05:30
github . com / ryanuber / go - glob v1 . 0.0
2022-05-31 21:19:36 +04:00
github . com / safchain / ethtool v0 . 2.0
2022-02-15 21:13:06 +03:00
github . com / scaleway / scaleway - sdk - go v1 . 0.0 - beta . 9
2022-05-20 23:27:53 +04:00
github . com / siderolabs / go - pcidb v0 . 1.0
2022-05-02 02:17:13 +04:00
github . com / siderolabs / go - pointer v1 . 0.0
2022-06-27 18:15:22 +04:00
github . com / spf13 / cobra v1 . 5.0
2022-05-10 22:12:09 +03:00
github . com / spf13 / pflag v1 . 0.5
2022-07-04 21:22:20 +04:00
github . com / stretchr / testify v1 . 8.0
2022-06-23 22:54:07 +04:00
github . com / talos - systems / crypto v0 . 3.6 - 0.20220622130438 - e9df1b8ca74c
2021-10-13 22:06:39 +03:00
github . com / talos - systems / discovery - api v0 . 1.0
github . com / talos - systems / discovery - client v0 . 1.0
2022-07-13 12:47:55 -05:00
github . com / talos - systems / go - blockdevice v0 . 3.4
2021-06-24 17:10:43 +03:00
github . com / talos - systems / go - cmd v0 . 1.0
github . com / talos - systems / go - debug v0 . 2.1
2021-06-24 00:35:36 +03:00
github . com / talos - systems / go - kmsg v0 . 1.1
2022-05-23 18:16:20 +04:00
github . com / talos - systems / go - loadbalancer v0 . 1.2
2021-06-24 17:10:43 +03:00
github . com / talos - systems / go - procfs v0 . 1.0
github . com / talos - systems / go - retry v0 . 3.1
2022-05-18 18:50:27 +05:30
github . com / talos - systems / go - smbios v0 . 2.0
2022-06-06 19:02:21 +04:00
github . com / talos - systems / grpc - proxy v0 . 3.1
2022-03-03 18:18:30 +03:00
github . com / talos - systems / net v0 . 3.2
2022-05-27 21:55:42 +04:00
github . com / talos - systems / siderolink v0 . 1.2
2022-08-10 23:00:45 +04:00
github . com / talos - systems / talos / pkg / machinery v1 . 2.0 - alpha . 2
2022-08-01 17:36:24 +04:00
github . com / u - root / u - root v0 . 9.0
2022-06-06 19:02:21 +04:00
github . com / vishvananda / netlink v1 . 2.1 - beta . 2
2022-08-08 22:30:34 +04:00
github . com / vmware - tanzu / sonobuoy v0 . 56.9
2022-07-11 17:55:20 +04:00
github . com / vmware / govmomi v0 . 29.0
2022-03-21 15:19:53 +03:00
github . com / vmware / vmw - guestinfo v0 . 0.0 - 20220317130741 - 510905 f0efa3
2022-05-16 15:36:33 +03:00
github . com / vultr / metadata v1 . 1.0
2022-04-25 15:49:02 +03:00
go . etcd . io / etcd / api / v3 v3 . 5.4
go . etcd . io / etcd / client / pkg / v3 v3 . 5.4
go . etcd . io / etcd / client / v3 v3 . 5.4
go . etcd . io / etcd / etcdutl / v3 v3 . 5.4
2021-12-06 17:43:13 +03:00
go . uber . org / atomic v1 . 9.0
2022-02-15 21:13:06 +03:00
go . uber . org / zap v1 . 21.0
2022-08-08 22:30:34 +04:00
golang . org / x / net v0 . 0.0 - 20220805013720 - a33c5aa5df48
2022-07-25 18:14:49 +04:00
golang . org / x / sync v0 . 0.0 - 20220722155255 - 886 fb9371eb4
2022-08-08 22:30:34 +04:00
golang . org / x / sys v0 . 0.0 - 20220808155132 - 1 c4a2a72c664
2022-07-25 18:14:49 +04:00
golang . org / x / term v0 . 0.0 - 20220722155259 - a9ba230a4035
golang . org / x / time v0 . 0.0 - 20220722155302 - e5dcc9cfc0b9
2022-05-10 22:12:09 +03:00
golang . zx2c4 . com / wireguard / wgctrl v0 . 0.0 - 20220504211119 - 3 d4a969bb56b
2022-07-18 18:52:32 +04:00
google . golang . org / grpc v1 . 48.0
2022-08-01 17:36:24 +04:00
google . golang . org / protobuf v1 . 28.1
2019-07-21 18:27:15 +00:00
gopkg . in / freddierice / go - losetup . v1 v1 . 0.0 - 20170407175016 - fc9adea44124
2022-06-06 19:02:21 +04:00
gopkg . in / yaml . v3 v3 . 0.1
2022-06-20 18:40:43 +04:00
inet . af / netaddr v0 . 0.0 - 20220617031823 - 097006376321
2022-07-11 17:55:20 +04:00
k8s . io / klog / v2 v2 . 70.1
2022-07-18 18:52:32 +04:00
kernel . org / pub / linux / libs / security / libcap / cap v1 . 2.65
2021-10-18 07:51:53 +00:00
sigs . k8s . io / yaml v1 . 3.0
2019-08-14 18:00:25 +00:00
)
2021-09-13 17:34:15 +03:00
require (
2022-06-20 18:40:43 +04:00
cloud . google . com / go v0 . 102.0 / / indirect
cloud . google . com / go / iam v0 . 3.0 / / indirect
cloud . google . com / go / storage v1 . 22.1 / / indirect
2021-09-13 17:34:15 +03:00
github . com / Azure / go - ansiterm v0 . 0.0 - 20210617225240 - d185dfc1b5a1 / / indirect
2022-07-09 02:20:19 +05:30
github . com / MakeNowJust / heredoc v1 . 0.0 / / indirect
2022-01-18 22:19:36 +03:00
github . com / Microsoft / go - winio v0 . 5.1 / / indirect
2022-08-08 22:30:34 +04:00
github . com / Microsoft / hcsshim v0 . 9.4 / / indirect
2021-09-13 17:34:15 +03:00
github . com / PuerkitoBio / purell v1 . 1.1 / / indirect
github . com / PuerkitoBio / urlesc v0 . 0.0 - 20170810143723 - de5bf2ad4578 / / indirect
github . com / armon / circbuf v0 . 0.0 - 20190214190532 - 5111143 e8da2 / / indirect
github . com / beorn7 / perks v1 . 0.1 / / indirect
github . com / bgentry / go - netrc v0 . 0.0 - 20140422174119 - 9 fd32a8b3d3d / / indirect
2022-03-31 18:04:52 +03:00
github . com / blang / semver / v4 v4 . 0.0 / / indirect
2021-09-13 17:34:15 +03:00
github . com / briandowns / spinner v1 . 6.1 / / indirect
2021-12-20 23:05:32 +03:00
github . com / cespare / xxhash / v2 v2 . 1.2 / / indirect
2022-07-09 02:20:19 +05:30
github . com / chai2010 / gettext - go v1 . 0.2 / / indirect
2022-08-01 17:36:24 +04:00
github . com / cilium / ebpf v0 . 9.1 / / indirect
2022-01-18 22:19:36 +03:00
github . com / containerd / continuity v0 . 2.2 / / indirect
2021-09-13 17:34:15 +03:00
github . com / containerd / fifo v1 . 0.0 / / indirect
2022-07-25 18:14:49 +04:00
github . com / containerd / go - cni v1 . 1.7 / / indirect
2021-11-29 15:58:48 +03:00
github . com / containerd / ttrpc v1 . 1.0 / / indirect
2021-09-13 17:34:15 +03:00
github . com / coreos / go - systemd / v22 v22 . 3.2 / / indirect
2022-06-27 18:15:22 +04:00
github . com / cpuguy83 / go - md2man / v2 v2 . 0.2 / / indirect
2021-09-13 17:34:15 +03:00
github . com / davecgh / go - spew v1 . 1.1 / / indirect
github . com / digitalocean / go - smbios v0 . 0.0 - 20180907143718 - 390 a4f403a8e / / indirect
github . com / docker / go - events v0 . 0.0 - 20190806004212 - e31b211e4f1c / / indirect
github . com / docker / go - units v0 . 4.0 / / indirect
2021-10-25 08:55:57 +00:00
github . com / emicklei / go - restful v2 . 9.5 + incompatible / / indirect
2022-07-09 02:20:19 +05:30
github . com / emicklei / go - restful / v3 v3 . 8.0 / / indirect
2022-07-13 12:47:55 -05:00
github . com / evanphx / json - patch v5 . 6.0 + incompatible / / indirect
2021-09-13 17:34:15 +03:00
github . com / exponent - io / jsonpath v0 . 0.0 - 20151013193312 - d6023ce2651d / / indirect
github . com / form3tech - oss / jwt - go v3 . 2.3 + incompatible / / indirect
github . com / gdamore / encoding v1 . 0.0 / / indirect
2022-05-31 21:19:36 +04:00
github . com / gertd / go - pluralize v0 . 2.1 / / indirect
2021-09-13 17:34:15 +03:00
github . com / ghodss / yaml v1 . 0.0 / / indirect
github . com / go - errors / errors v1 . 0.1 / / indirect
2022-07-09 02:20:19 +05:30
github . com / go - logr / logr v1 . 2.3 / / indirect
2022-01-18 22:19:36 +03:00
github . com / go - logr / stdr v1 . 2.2 / / indirect
2021-09-13 17:34:15 +03:00
github . com / go - openapi / jsonpointer v0 . 19.5 / / indirect
github . com / go - openapi / jsonreference v0 . 19.5 / / indirect
github . com / go - openapi / swag v0 . 19.14 / / indirect
github . com / gogo / googleapis v1 . 4.0 / / indirect
github . com / gogo / protobuf v1 . 3.2 / / indirect
github . com / golang / groupcache v0 . 0.0 - 20210331224755 - 41 bb18bfe9da / / indirect
github . com / golang / protobuf v1 . 5.2 / / indirect
github . com / google / btree v1 . 0.1 / / indirect
2022-03-30 22:03:31 +03:00
github . com / google / gnostic v0 . 5.7 - v3refs / / indirect
2022-01-18 22:19:36 +03:00
github . com / google / gofuzz v1 . 2.0 / / indirect
2021-09-13 17:34:15 +03:00
github . com / google / shlex v0 . 0.0 - 20191202100458 - e7afc7fbc510 / / indirect
2022-06-20 18:40:43 +04:00
github . com / googleapis / enterprise - certificate - proxy v0 . 0.0 - 20220520183353 - fd19c99a87aa / / indirect
github . com / googleapis / gax - go / v2 v2 . 4.0 / / indirect
github . com / googleapis / go - type - adapters v1 . 0.0 / / indirect
2021-12-06 17:43:13 +03:00
github . com / gorilla / mux v1 . 8.0 / / indirect
2021-10-28 23:50:50 +03:00
github . com / gosuri / uilive v0 . 0.4 / / indirect
2021-09-13 17:34:15 +03:00
github . com / gregjones / httpcache v0 . 0.0 - 20180305231024 - 9 cad4c3443a7 / / indirect
2022-06-27 18:15:22 +04:00
github . com / grpc - ecosystem / grpc - gateway / v2 v2 . 10.3 / / indirect
2022-01-18 22:19:36 +03:00
github . com / hashicorp / errwrap v1 . 1.0 / / indirect
2021-12-20 23:05:32 +03:00
github . com / hashicorp / go - immutable - radix v1 . 3.1 / / indirect
2022-05-31 21:19:36 +04:00
github . com / hashicorp / go - memdb v1 . 3.3 / / indirect
2021-09-13 17:34:15 +03:00
github . com / hashicorp / go - safetemp v1 . 0.0 / / indirect
github . com / hashicorp / golang - lru v0 . 5.4 / / indirect
github . com / hashicorp / hcl v1 . 0.0 / / indirect
2021-10-25 08:55:57 +00:00
github . com / imdario / mergo v0 . 3.12 / / indirect
2021-09-13 17:34:15 +03:00
github . com / inconshreveable / mousetrap v1 . 0.0 / / indirect
2021-12-28 18:18:29 +03:00
github . com / jmespath / go - jmespath v0 . 4.0 / / indirect
2021-09-13 17:34:15 +03:00
github . com / jonboulle / clockwork v0 . 2.2 / / indirect
github . com / josharian / intern v1 . 0.0 / / indirect
2022-02-07 16:25:10 +03:00
github . com / josharian / native v1 . 0.0 / / indirect
2021-10-21 22:26:29 +03:00
github . com / json - iterator / go v1 . 1.12 / / indirect
2021-09-13 17:34:15 +03:00
github . com / klauspost / compress v1 . 11.13 / / indirect
github . com / liggitt / tabwriter v0 . 0.0 - 20181228230101 - 89 fcab3d43de / / indirect
github . com / lucasb - eyer / go - colorful v1 . 2.0 / / indirect
github . com / magiconair / properties v1 . 8.5 / / indirect
github . com / mailru / easyjson v0 . 7.6 / / indirect
2021-12-20 23:05:32 +03:00
github . com / mattn / go - colorable v0 . 1.12 / / indirect
2021-09-13 17:34:15 +03:00
github . com / mattn / go - runewidth v0 . 0.13 / / indirect
github . com / matttproud / golang_protobuf_extensions v1 . 0.2 - 0.20181231171920 - c182affec369 / / indirect
2022-02-21 18:02:45 -05:00
github . com / mdlayher / ethernet v0 . 0.0 - 20220221185849 - 529 eae5b6118 / / indirect
github . com / mdlayher / packet v1 . 0.0 / / indirect
2021-09-13 17:34:15 +03:00
github . com / mdlayher / raw v0 . 0.0 - 20191009151244 - 50 f2db8cc065 / / indirect
2022-04-25 16:26:41 +03:00
github . com / mdlayher / socket v0 . 2.3 / / indirect
2021-09-13 17:34:15 +03:00
github . com / mitchellh / go - homedir v1 . 1.0 / / indirect
github . com / mitchellh / go - testing - interface v1 . 0.0 / / indirect
github . com / mitchellh / go - wordwrap v1 . 0.0 / / indirect
2021-12-20 23:05:32 +03:00
github . com / mitchellh / mapstructure v1 . 4.3 / / indirect
2021-09-13 17:34:15 +03:00
github . com / moby / locker v1 . 0.1 / / indirect
github . com / moby / spdystream v0 . 2.0 / / indirect
2022-01-18 22:19:36 +03:00
github . com / moby / sys / mountinfo v0 . 5.0 / / indirect
github . com / moby / sys / signal v0 . 6.0 / / indirect
2022-03-30 22:03:31 +03:00
github . com / moby / term v0 . 0.0 - 20210619224110 - 3 f7ff695adc6 / / indirect
2021-09-13 17:34:15 +03:00
github . com / modern - go / concurrent v0 . 0.0 - 20180306012644 - bacd9c7ef1dd / / indirect
2021-10-21 22:26:29 +03:00
github . com / modern - go / reflect2 v1 . 0.2 / / indirect
2021-09-13 17:34:15 +03:00
github . com / monochromegane / go - gitignore v0 . 0.0 - 20200626010858 - 205 db1a8cc00 / / indirect
2022-03-31 18:04:52 +03:00
github . com / munnerz / goautoneg v0 . 0.0 - 20191010083416 - a7dc8b61c822 / / indirect
2021-09-13 17:34:15 +03:00
github . com / nsf / termbox - go v0 . 0.0 - 20190121233118 - 02980233997 d / / indirect
github . com / opencontainers / go - digest v1 . 0.0 / / indirect
2022-06-06 19:02:21 +04:00
github . com / opencontainers / runc v1 . 1.2 / / indirect
2022-05-10 22:12:09 +03:00
github . com / opencontainers / selinux v1 . 10.1 / / indirect
2021-09-13 17:34:15 +03:00
github . com / peterbourgon / diskv v2 . 0.1 + incompatible / / indirect
github . com / pkg / errors v0 . 9.1 / / indirect
github . com / pmezard / go - difflib v1 . 0.0 / / indirect
2022-03-30 22:03:31 +03:00
github . com / prometheus / client_golang v1 . 12.1 / / indirect
2021-09-13 17:34:15 +03:00
github . com / prometheus / client_model v0 . 2.0 / / indirect
2022-03-30 22:03:31 +03:00
github . com / prometheus / common v0 . 32.1 / / indirect
2021-09-13 17:34:15 +03:00
github . com / rifflock / lfshook v0 . 0.0 - 20180920164130 - b9218ef580f5 / / indirect
2022-08-08 22:30:34 +04:00
github . com / rivo / uniseg v0 . 3.4 / / indirect
2021-09-13 17:34:15 +03:00
github . com / russross / blackfriday v1 . 5.2 / / indirect
2021-12-20 23:05:32 +03:00
github . com / russross / blackfriday / v2 v2 . 1.0 / / indirect
2021-09-13 17:34:15 +03:00
github . com / satori / go . uuid v1 . 2.1 - 0.20181028125025 - b2ce2384e17b / / indirect
github . com / sethgrid / pester v0 . 0.0 - 20190127155807 - 68 a33a018ad0 / / indirect
2022-08-10 17:01:31 +03:00
github . com / siderolabs / protoenc v0 . 1.3 / / indirect
2021-09-13 17:34:15 +03:00
github . com / sirupsen / logrus v1 . 8.1 / / indirect
github . com / spf13 / afero v1 . 6.0 / / indirect
2021-12-20 23:05:32 +03:00
github . com / spf13 / cast v1 . 4.1 / / indirect
2021-09-13 17:34:15 +03:00
github . com / spf13 / jwalterweatherman v1 . 1.0 / / indirect
2021-12-20 23:05:32 +03:00
github . com / spf13 / viper v1 . 10.0 / / indirect
2021-09-13 17:34:15 +03:00
github . com / subosito / gotenv v1 . 2.0 / / indirect
2022-08-01 17:36:24 +04:00
github . com / u - root / uio v0 . 0.0 - 20220204230159 - dac05f7d2cb4 / / indirect
2021-09-13 17:34:15 +03:00
github . com / ulikunitz / xz v0 . 5.8 / / indirect
2021-09-20 17:08:22 +03:00
github . com / vishvananda / netns v0 . 0.0 - 20210104183010 - 2 eb08e3e575f / / indirect
2021-09-13 17:34:15 +03:00
github . com / xiang90 / probing v0 . 0.0 - 20190116061207 - 43 a291ad63a2 / / indirect
2022-07-09 02:20:19 +05:30
github . com / xlab / treeprint v1 . 1.0 / / indirect
2021-09-13 17:34:15 +03:00
go . etcd . io / bbolt v1 . 3.6 / / indirect
2022-04-25 15:49:02 +03:00
go . etcd . io / etcd / client / v2 v2 . 305.4 / / indirect
go . etcd . io / etcd / pkg / v3 v3 . 5.4 / / indirect
go . etcd . io / etcd / raft / v3 v3 . 5.4 / / indirect
go . etcd . io / etcd / server / v3 v3 . 5.4 / / indirect
2021-09-13 17:34:15 +03:00
go . opencensus . io v0 . 23.0 / / indirect
2022-01-18 22:19:36 +03:00
go . opentelemetry . io / contrib / instrumentation / google . golang . org / grpc / otelgrpc v0 . 28.0 / / indirect
go . opentelemetry . io / otel v1 . 3.0 / / indirect
go . opentelemetry . io / otel / trace v1 . 3.0 / / indirect
2021-09-13 17:34:15 +03:00
go . starlark . net v0 . 0.0 - 20200306205701 - 8 dd3e2ee1dd5 / / indirect
go . uber . org / multierr v1 . 7.0 / / indirect
2021-11-01 13:18:50 +00:00
go4 . org / intern v0 . 0.0 - 20211027215823 - ae77deb06f29 / / indirect
2022-06-20 18:40:43 +04:00
go4 . org / unsafe / assume - no - moving - gc v0 . 0.0 - 20220617031537 - 928513 b29760 / / indirect
2022-04-25 16:26:41 +03:00
golang . org / x / crypto v0 . 0.0 - 20220411220226 - 7 b82a4e95df4 / / indirect
2022-08-01 17:36:24 +04:00
golang . org / x / mod v0 . 6.0 - dev . 0.20220419223038 - 86 c51ed26bb4 / / indirect
2022-06-20 18:40:43 +04:00
golang . org / x / oauth2 v0 . 0.0 - 20220608161450 - d0670ef3b1eb / / indirect
2021-12-06 17:43:13 +03:00
golang . org / x / text v0 . 3.7 / / indirect
2022-07-09 02:20:19 +05:30
golang . org / x / tools v0 . 1.12 / / indirect
2022-06-20 18:40:43 +04:00
golang . org / x / xerrors v0 . 0.0 - 20220609144429 - 65 e65417b02f / / indirect
2022-04-25 16:26:41 +03:00
golang . zx2c4 . com / wireguard v0 . 0.0 - 20220407013110 - ef5c587f782d / / indirect
2022-06-20 18:40:43 +04:00
google . golang . org / api v0 . 84.0 / / indirect
2021-09-13 17:34:15 +03:00
google . golang . org / appengine v1 . 6.7 / / indirect
2022-08-08 22:30:34 +04:00
google . golang . org / genproto v0 . 0.0 - 20220808145710 - bf34ca4dd83a / / indirect
2022-03-24 17:36:19 +03:00
gopkg . in / check . v1 v1 . 0.0 - 20201130134442 - 10 cb98267c6c / / indirect
2021-09-13 17:34:15 +03:00
gopkg . in / inf . v0 v0 . 9.1 / / indirect
2021-12-20 23:05:32 +03:00
gopkg . in / ini . v1 v1 . 66.2 / / indirect
2021-11-09 13:55:43 +00:00
gopkg . in / yaml . v2 v2 . 4.0 / / indirect
2021-09-13 17:34:15 +03:00
inet . af / tcpproxy v0 . 0.0 - 20200125044825 - b6bb9b5b8252 / / indirect
2022-08-12 00:17:45 +04:00
k8s . io / cli - runtime v0 . 25.0 - rc . 0 / / indirect
2021-09-13 17:34:15 +03:00
k8s . io / klog v1 . 0.0 / / indirect
2022-07-09 02:20:19 +05:30
k8s . io / kube - openapi v0 . 0.0 - 20220803162953 - 67 bda5d908f1 / / indirect
k8s . io / utils v0 . 0.0 - 20220728103510 - ee6ede2d64ed / / indirect
2022-07-18 18:52:32 +04:00
kernel . org / pub / linux / libs / security / libcap / psx v1 . 2.65 / / indirect
2022-07-09 02:20:19 +05:30
sigs . k8s . io / json v0 . 0.0 - 20220713155537 - f223a00ba0e2 / / indirect
sigs . k8s . io / kustomize / api v0 . 12.1 / / indirect
sigs . k8s . io / kustomize / kyaml v0 . 13.9 / / indirect
sigs . k8s . io / structured - merge - diff / v4 v4 . 2.3 / / indirect
2021-09-13 17:34:15 +03:00
)