2022-11-02 15:06:45 +04:00
module github . com / siderolabs / talos
2018-08-29 14:27:28 -07:00
2023-02-16 16:08:22 +05:30
go 1.20
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 .
2022-11-02 15:06:45 +04:00
github . com / siderolabs / 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
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 (
2023-07-27 20:39:58 +04:00
k8s . io / api v0 . 28.0 - rc . 0
k8s . io / apimachinery v0 . 28.0 - rc . 0
k8s . io / apiserver v0 . 28.0 - rc . 0
k8s . io / client - go v0 . 28.0 - rc . 0
k8s . io / component - base v0 . 28.0 - rc . 0
k8s . io / cri - api v0 . 28.0 - rc . 0
k8s . io / kubectl v0 . 28.0 - rc . 0
k8s . io / kubelet v0 . 28.0 - rc . 0
2021-11-08 10:45:28 +00:00
)
2018-08-29 14:27:28 -07:00
require (
2022-12-23 20:30:09 +04:00
cloud . google . com / go / compute / metadata v0 . 2.3
2023-06-22 22:22:33 +05:30
github . com / BurntSushi / toml v1 . 3.2
2023-07-20 16:33:54 +04:00
github . com / aws / aws - sdk - go v1 . 44.304
2023-07-14 11:59:09 +03:00
github . com / beevik / ntp v1 . 2.0
2023-05-18 10:58:17 -04:00
github . com / benbjohnson / clock v1 . 3.5 / / project archived on 2023 - 05 - 18
2023-04-25 14:09:23 +04:00
github . com / cenkalti / backoff / v4 v4 . 2.1
2023-02-15 15:25:39 +04:00
github . com / containerd / cgroups v1 . 1.0
2023-06-07 22:26:51 +04:00
github . com / containerd / containerd v1 . 6.21
2023-05-17 04:40:15 -04:00
github . com / containerd / typeurl / v2 v2 . 1.1
2022-08-01 17:36:24 +04:00
github . com / containernetworking / cni v1 . 1.2
2023-05-17 04:40:15 -04:00
github . com / containernetworking / plugins v1 . 3.0
2021-04-27 14:05:58 +03:00
github . com / coreos / go - iptables v0 . 6.0
2023-01-23 23:41:58 +05:30
github . com / coreos / go - semver v0 . 3.1
2023-07-21 23:29:10 +04:00
github . com / cosi - project / runtime v0 . 3.1 - beta . 0
2023-05-29 23:19:44 +04:00
github . com / docker / distribution v2 . 8.2 + incompatible
2023-07-14 11:59:09 +03:00
github . com / docker / docker v24 . 0.4 + incompatible
2019-04-29 11:51:39 -07:00
github . com / docker / go - connections v0 . 4.0
2023-01-19 21:21:32 +03:00
github . com / dustin / go - humanize v1 . 0.1
2023-06-14 22:35:33 +04:00
github . com / ecks / uefi v0 . 0.0 - 20221116212947 - caef65d070eb
2023-06-22 22:22:33 +05:30
github . com / emicklei / dot v1 . 5.0
2023-03-22 12:22:15 +05:30
github . com / fatih / color v1 . 15.0
2023-06-30 23:23:28 +04:00
github . com / foxboron / go - uefi v0 . 0.0 - 20230701115042 - 32187 aa193d0
2023-01-23 23:41:58 +05:30
github . com / freddierice / go - losetup / v2 v2 . 0.1
2022-10-20 20:03:46 +02:00
github . com / fsnotify / fsnotify v1 . 6.0
2023-02-28 00:14:59 +03:00
github . com / gdamore / tcell / v2 v2 . 6.0
2022-08-11 15:06:30 +03:00
github . com / gertd / go - pluralize v0 . 2.1
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-09-12 15:26:57 +04:00
github . com / google / go - cmp v0 . 5.9
2023-07-07 23:50:22 +04:00
github . com / google / go - tpm v0 . 9.0
2022-07-18 15:56:39 +04:00
github . com / google / gopacket v1 . 1.19
2022-12-23 20:30:09 +04:00
github . com / google / nftables v0 . 1.0
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
2023-03-22 12:22:15 +05:30
github . com / grpc - ecosystem / go - grpc - middleware v1 . 4.0
2022-02-16 18:15:59 +00:00
github . com / hashicorp / go - cleanhttp v0 . 5.2
2023-03-22 12:22:15 +05:30
github . com / hashicorp / go - getter v1 . 7.1
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
2023-07-14 11:59:09 +03:00
github . com / hetznercloud / hcloud - go v1 . 48.0
2023-07-20 16:33:54 +04:00
github . com / insomniacslk / dhcp v0 . 0.0 - 20230720093626 - 5648422 c16cd
2023-07-14 11:59:09 +03:00
github . com / jsimonetti / rtnetlink v1 . 3.4
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
2023-05-22 16:02:15 -04:00
github . com / mattn / go - isatty v0 . 0.19
2022-05-16 15:36:33 +03:00
github . com / mdlayher / arp v0 . 0.0 - 20220512170110 - 6706 a2966875
2023-06-22 22:22:33 +05:30
github . com / mdlayher / ethtool v0 . 1.0
2023-05-08 18:32:57 +04:00
github . com / mdlayher / genetlink v1 . 3.2
github . com / mdlayher / netlink v1 . 7.2
github . com / mdlayher / netx v0 . 0.0 - 20230430222610 - 7 e21880baee8
2023-04-25 14:09:23 +04:00
github . com / nberlee / go - netstat v0 . 1.2
2023-07-12 18:41:53 +04:00
github . com / opencontainers / go - digest v1 . 0.0
2023-07-05 18:20:28 +04:00
github . com / opencontainers / image - spec v1 . 1.0 - rc4
2021-08-03 19:04:42 +03:00
github . com / opencontainers / runtime - spec v1 . 0.3 - 0.20210326190908 - 1 c3f411f0417
2023-06-07 22:26:51 +04:00
github . com / packethost / packngo v0 . 30.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
2022-11-04 21:35:04 +05:30
github . com / pmorjan / kmod v1 . 1.0
2023-06-22 22:22:33 +05:30
github . com / prometheus / procfs v0 . 11.0
github . com / rivo / tview v0 . 0.0 - 20230621164836 - 6 cc0565babaf
2023-04-25 14:09:23 +04:00
github . com / rs / xid v1 . 5.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
2023-03-22 12:22:15 +05:30
github . com / safchain / ethtool v0 . 3.0
2023-07-20 16:33:54 +04:00
github . com / scaleway / scaleway - sdk - go v1 . 0.0 - beta . 19
2023-07-12 18:41:53 +04:00
github . com / siderolabs / crypto v0 . 4.1
2023-06-01 06:19:46 -04:00
github . com / siderolabs / discovery - api v0 . 1.3
github . com / siderolabs / discovery - client v0 . 1.5
2023-05-11 00:56:06 -04:00
github . com / siderolabs / gen v0 . 4.5
2023-06-29 23:54:09 +03:00
github . com / siderolabs / go - blockdevice v0 . 4.6
2022-10-25 15:25:11 +04:00
github . com / siderolabs / go - circular v0 . 1.0
2022-11-01 12:06:37 +04:00
github . com / siderolabs / go - cmd v0 . 1.1
2023-07-14 11:59:09 +03:00
github . com / siderolabs / go - debug v0 . 2.3
2023-03-06 13:56:11 +03:00
github . com / siderolabs / go - kmsg v0 . 1.3
2022-10-25 15:25:11 +04:00
github . com / siderolabs / go - kubeconfig v0 . 1.0
2023-07-10 16:48:22 +04:00
github . com / siderolabs / go - kubernetes v0 . 2.2
2023-07-05 18:20:28 +04:00
github . com / siderolabs / go - loadbalancer v0 . 3.2
2023-07-27 22:37:46 +04:00
github . com / siderolabs / go - pcidb v0 . 2.0
2022-05-02 02:17:13 +04:00
github . com / siderolabs / go - pointer v1 . 0.0
2022-11-01 12:06:37 +04:00
github . com / siderolabs / go - procfs v0 . 1.1
github . com / siderolabs / go - retry v0 . 3.2
2023-02-21 18:22:41 +04:00
github . com / siderolabs / go - smbios v0 . 3.2
2022-10-25 15:25:11 +04:00
github . com / siderolabs / go - tail v0 . 1.0
2022-10-20 20:03:46 +02:00
github . com / siderolabs / grpc - proxy v0 . 4.0
2023-06-29 23:54:09 +03:00
github . com / siderolabs / kms - client v0 . 1.0
2022-11-01 12:51:16 +04:00
github . com / siderolabs / net v0 . 4.0
2022-11-17 15:37:41 +04:00
github . com / siderolabs / siderolink v0 . 3.1
2023-07-25 17:26:08 +04:00
github . com / siderolabs / talos / pkg / machinery v1 . 5.0 - alpha . 3
2023-04-25 14:09:23 +04:00
github . com / spf13 / cobra v1 . 7.0
2022-05-10 22:12:09 +03:00
github . com / spf13 / pflag v1 . 0.5
2023-06-01 06:19:46 -04:00
github . com / stretchr / testify v1 . 8.4
2023-02-15 15:25:39 +04:00
github . com / u - root / u - root v0 . 11.0
2023-01-23 23:41:58 +05:30
github . com / ulikunitz / xz v0 . 5.11
2022-06-06 19:02:21 +04:00
github . com / vishvananda / netlink v1 . 2.1 - beta . 2
2023-06-22 22:22:33 +05:30
github . com / vmware - tanzu / sonobuoy v0 . 56.17
2023-07-20 16:33:54 +04:00
github . com / vmware / govmomi v0 . 30.6
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
2023-05-15 15:59:23 +04:00
go . etcd . io / etcd / api / v3 v3 . 5.9
go . etcd . io / etcd / client / pkg / v3 v3 . 5.9
go . etcd . io / etcd / client / v3 v3 . 5.9
go . etcd . io / etcd / etcdutl / v3 v3 . 5.9
2022-12-06 17:43:26 +04:00
go . uber . org / zap v1 . 24.0
2023-03-06 13:56:11 +03:00
go4 . org / netipx v0 . 0.0 - 20230303233057 - f1b76eb4bb35
2023-07-14 11:59:09 +03:00
golang . org / x / net v0 . 12.0
2023-06-22 22:22:33 +05:30
golang . org / x / sync v0 . 3.0
2023-07-05 18:20:28 +04:00
golang . org / x / sys v0 . 10.0
golang . org / x / term v0 . 10.0
golang . org / x / text v0 . 11.0
2022-12-23 20:30:09 +04:00
golang . org / x / time v0 . 3.0
2023-05-08 18:32:57 +04:00
golang . zx2c4 . com / wireguard / wgctrl v0 . 0.0 - 20230429144221 - 925 a1e7659e6
2023-07-14 11:59:09 +03:00
google . golang . org / grpc v1 . 56.2
2023-07-05 18:20:28 +04:00
google . golang . org / protobuf v1 . 31.0
2022-06-06 19:02:21 +04:00
gopkg . in / yaml . v3 v3 . 0.1
2023-05-08 18:32:57 +04:00
k8s . io / klog / v2 v2 . 100.1
2023-05-17 04:40:15 -04:00
kernel . org / pub / linux / libs / security / libcap / cap v1 . 2.69
2023-03-04 23:00:13 +01: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 (
2023-07-14 11:59:09 +03:00
cloud . google . com / go v0 . 110.4 / / indirect
cloud . google . com / go / compute v1 . 20.1 / / indirect
cloud . google . com / go / iam v1 . 1.0 / / indirect
cloud . google . com / go / storage v1 . 30.1 / / indirect
2023-06-14 22:35:33 +04:00
github . com / 0x5 a17ed / itkit v0 . 6.0 / / 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
2023-05-17 04:40:15 -04:00
github . com / Microsoft / go - winio v0 . 6.0 / / indirect
github . com / Microsoft / hcsshim v0 . 9.9 / / indirect
2023-07-20 16:33:54 +04:00
github . com / ProtonMail / go - crypto v0 . 0.0 - 20230717121422 - 5 aa5874ade95 / / indirect
2023-05-08 18:32:57 +04:00
github . com / ProtonMail / go - mime v0 . 0.0 - 20230322103455 - 7 d82a3887f2f / / indirect
2023-07-20 16:33:54 +04:00
github . com / ProtonMail / gopenpgp / v2 v2 . 7.2 / / indirect
2022-10-21 20:24:07 +04:00
github . com / adrg / xdg v0 . 4.0 / / indirect
2021-09-13 17:34:15 +03:00
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
2022-12-23 20:30:09 +04:00
github . com / briandowns / spinner v1 . 19.0 / / indirect
2023-02-15 15:25:39 +04:00
github . com / cespare / xxhash / v2 v2 . 2.0 / / indirect
2022-07-09 02:20:19 +05:30
github . com / chai2010 / gettext - go v1 . 0.2 / / indirect
2023-02-28 00:14:59 +03:00
github . com / cilium / ebpf v0 . 10.0 / / indirect
2023-05-08 18:32:57 +04:00
github . com / cloudflare / circl v1 . 3.3 / / indirect
2022-10-24 17:06:40 +03:00
github . com / containerd / continuity v0 . 3.0 / / indirect
2021-09-13 17:34:15 +03:00
github . com / containerd / fifo v1 . 0.0 / / indirect
2023-03-06 13:56:11 +03:00
github . com / containerd / go - cni v1 . 1.9 / / indirect
2023-05-08 18:32:57 +04:00
github . com / containerd / ttrpc v1 . 1.1 / / indirect
2023-05-17 04:40:15 -04:00
github . com / containerd / typeurl v1 . 0.2 / / indirect
2023-01-19 21:21:32 +03:00
github . com / coreos / go - systemd / v22 v22 . 5.0 / / 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 / docker / go - events v0 . 0.0 - 20190806004212 - e31b211e4f1c / / indirect
github . com / docker / go - units v0 . 4.0 / / indirect
2022-12-23 20:30:09 +04:00
github . com / emicklei / go - restful / v3 v3 . 10.1 / / 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 / gdamore / encoding v1 . 0.0 / / indirect
github . com / ghodss / yaml v1 . 0.0 / / indirect
2023-03-21 21:15:02 +05:30
github . com / go - errors / errors v1 . 4.2 / / indirect
2023-05-17 04:40:15 -04:00
github . com / go - logr / logr v1 . 2.4 / / indirect
2022-01-18 22:19:36 +03:00
github . com / go - logr / stdr v1 . 2.2 / / indirect
2023-03-21 21:15:02 +05:30
github . com / go - openapi / jsonpointer v0 . 19.6 / / indirect
2023-07-10 16:48:22 +04:00
github . com / go - openapi / jsonreference v0 . 20.2 / / indirect
2022-12-23 20:30:09 +04:00
github . com / go - openapi / swag v0 . 22.3 / / indirect
2021-09-13 17:34:15 +03:00
github . com / gogo / googleapis v1 . 4.0 / / indirect
github . com / gogo / protobuf v1 . 3.2 / / indirect
2023-07-10 16:48:22 +04:00
github . com / golang - jwt / jwt / v4 v4 . 5.0 / / indirect
2021-09-13 17:34:15 +03:00
github . com / golang / groupcache v0 . 0.0 - 20210331224755 - 41 bb18bfe9da / / indirect
2023-03-20 23:49:57 +04:00
github . com / golang / protobuf v1 . 5.3 / / indirect
2021-09-13 17:34:15 +03:00
github . com / google / btree v1 . 0.1 / / indirect
2023-07-14 11:59:09 +03:00
github . com / google / gnostic - models v0 . 6.8 / / indirect
2022-01-18 22:19:36 +03:00
github . com / google / gofuzz v1 . 2.0 / / indirect
2023-07-14 11:59:09 +03:00
github . com / google / s2a - go v0 . 1.4 / / indirect
2021-09-13 17:34:15 +03:00
github . com / google / shlex v0 . 0.0 - 20191202100458 - e7afc7fbc510 / / indirect
2023-02-28 00:14:59 +03:00
github . com / googleapis / enterprise - certificate - proxy v0 . 2.3 / / indirect
2023-07-14 11:59:09 +03:00
github . com / googleapis / gax - go / v2 v2 . 11.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
2023-07-20 16:33:54 +04:00
github . com / grpc - ecosystem / grpc - gateway / v2 v2 . 16.0 / / indirect
2022-01-18 22:19:36 +03:00
github . com / hashicorp / errwrap v1 . 1.0 / / indirect
2023-06-27 15:34:15 +05:30
github . com / hashicorp / go - envparse v0 . 1.0
2021-12-20 23:05:32 +03:00
github . com / hashicorp / go - immutable - radix v1 . 3.1 / / indirect
2022-10-31 17:37:07 +04:00
github . com / hashicorp / go - memdb v1 . 3.4 / / 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
2023-02-20 22:36:46 +04:00
github . com / hexops / gotextdiff v1 . 0.3 / / indirect
2022-12-23 20:30:09 +04:00
github . com / imdario / mergo v0 . 3.13 / / indirect
github . com / inconshreveable / mousetrap v1 . 1.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
2023-02-28 00:14:59 +03:00
github . com / josharian / native v1 . 1.0 / / indirect
2021-10-21 22:26:29 +03:00
github . com / json - iterator / go v1 . 1.12 / / indirect
2023-07-20 16:33:54 +04:00
github . com / klauspost / compress v1 . 16.7 / / indirect
2021-09-13 17:34:15 +03:00
github . com / liggitt / tabwriter v0 . 0.0 - 20181228230101 - 89 fcab3d43de / / indirect
github . com / lucasb - eyer / go - colorful v1 . 2.0 / / indirect
2022-12-23 20:30:09 +04:00
github . com / magiconair / properties v1 . 8.7 / / indirect
github . com / mailru / easyjson v0 . 7.7 / / indirect
github . com / mattn / go - colorable v0 . 1.13 / / indirect
2023-01-11 15:21:14 +04:00
github . com / mattn / go - runewidth v0 . 0.14 / / indirect
2022-12-09 16:38:14 +04:00
github . com / matttproud / golang_protobuf_extensions v1 . 0.4 / / indirect
2022-02-21 18:02:45 -05:00
github . com / mdlayher / ethernet v0 . 0.0 - 20220221185849 - 529 eae5b6118 / / indirect
2023-05-08 18:32:57 +04:00
github . com / mdlayher / packet v1 . 1.2 / / indirect
github . com / mdlayher / socket v0 . 4.1 / / indirect
2021-09-13 17:34:15 +03:00
github . com / mitchellh / go - homedir v1 . 1.0 / / indirect
2023-02-15 15:25:39 +04:00
github . com / mitchellh / go - testing - interface v1 . 14.1 / / indirect
2023-07-10 16:48:22 +04:00
github . com / mitchellh / go - wordwrap v1 . 0.1 / / indirect
2022-12-23 20:30:09 +04:00
github . com / mitchellh / mapstructure v1 . 5.0 / / 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
2023-03-21 21:15:02 +05:30
github . com / moby / term v0 . 0.0 - 20221205130635 - 1 aeaba878587 / / 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
2023-05-08 18:32:57 +04:00
github . com / opencontainers / runc v1 . 1.5 / / indirect
2023-05-17 04:40:15 -04:00
github . com / opencontainers / selinux v1 . 11.0 / / indirect
2022-12-23 20:30:09 +04:00
github . com / pelletier / go - toml / v2 v2 . 0.6 / / indirect
2021-09-13 17:34:15 +03:00
github . com / peterbourgon / diskv v2 . 0.1 + incompatible / / indirect
2023-01-18 16:28:09 +05:30
github . com / pierrec / lz4 / v4 v4 . 1.14 / / indirect
2022-10-21 20:24:07 +04:00
github . com / pkg / browser v0 . 0.0 - 20210911075715 - 681 adbf594b8 / / indirect
2021-09-13 17:34:15 +03:00
github . com / pkg / errors v0 . 9.1 / / indirect
github . com / pmezard / go - difflib v1 . 0.0 / / indirect
2023-06-22 22:22:33 +05:30
github . com / prometheus / client_golang v1 . 16.0 / / indirect
2023-07-27 20:39:58 +04:00
github . com / prometheus / client_model v0 . 4.0 / / indirect
github . com / prometheus / common v0 . 44.0 / / indirect
2021-09-13 17:34:15 +03:00
github . com / rifflock / lfshook v0 . 0.0 - 20180920164130 - b9218ef580f5 / / indirect
2023-03-04 23:00:13 +01:00
github . com / rivo / uniseg v0 . 4.4 / / 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
2022-12-23 20:30:09 +04:00
github . com / sethgrid / pester v1 . 2.0 / / indirect
2023-05-29 23:19:44 +04:00
github . com / siderolabs / go - api - signature v0 . 2.4 / / indirect
2022-09-14 17:43:34 +03:00
github . com / siderolabs / protoenc v0 . 2.0 / / indirect
2023-05-22 16:02:15 -04:00
github . com / siderolabs / tcpproxy v0 . 1.0 / / indirect
2022-12-23 20:30:09 +04:00
github . com / sirupsen / logrus v1 . 9.0 / / indirect
github . com / spf13 / afero v1 . 9.3 / / indirect
github . com / spf13 / cast v1 . 5.0 / / indirect
2021-09-13 17:34:15 +03:00
github . com / spf13 / jwalterweatherman v1 . 1.0 / / indirect
2022-12-23 20:30:09 +04:00
github . com / spf13 / viper v1 . 14.0 / / indirect
github . com / subosito / gotenv v1 . 4.1 / / indirect
2023-03-06 13:56:11 +03:00
github . com / u - root / uio v0 . 0.0 - 20230220225925 - ffce2a382923 / / indirect
2023-05-17 04:40:15 -04:00
github . com / vishvananda / netns v0 . 0.4 / / indirect
2021-09-13 17:34:15 +03:00
github . com / xiang90 / probing v0 . 0.0 - 20190116061207 - 43 a291ad63a2 / / indirect
2023-07-10 16:48:22 +04:00
github . com / xlab / treeprint v1 . 2.0 / / indirect
2023-02-15 15:25:39 +04:00
go . etcd . io / bbolt v1 . 3.7 / / indirect
2023-05-15 15:59:23 +04:00
go . etcd . io / etcd / client / v2 v2 . 305.9 / / indirect
go . etcd . io / etcd / pkg / v3 v3 . 5.9 / / indirect
go . etcd . io / etcd / raft / v3 v3 . 5.9 / / indirect
go . etcd . io / etcd / server / v3 v3 . 5.9 / / indirect
2022-12-23 20:30:09 +04:00
go . opencensus . io v0 . 24.0 / / indirect
2022-09-21 16:55:52 +04:00
go . opentelemetry . io / contrib / instrumentation / google . golang . org / grpc / otelgrpc v0 . 35.0 / / indirect
go . opentelemetry . io / otel v1 . 10.0 / / indirect
go . opentelemetry . io / otel / trace v1 . 10.0 / / indirect
2023-07-10 16:48:22 +04:00
go . starlark . net v0 . 0.0 - 20230525235612 - a134d8f9ddca / / indirect
2023-01-19 21:21:32 +03:00
go . uber . org / atomic v1 . 10.0 / / indirect
2023-07-10 16:48:22 +04:00
go . uber . org / multierr v1 . 11.0 / / indirect
2023-07-14 11:59:09 +03:00
golang . org / x / crypto v0 . 11.0 / / indirect
2023-07-27 22:37:46 +04:00
golang . org / x / mod v0 . 12.0 / / indirect
2023-07-14 11:59:09 +03:00
golang . org / x / oauth2 v0 . 8.0 / / indirect
2023-07-27 22:37:46 +04:00
golang . org / x / tools v0 . 11.0 / / indirect
2022-11-02 15:06:45 +04:00
golang . org / x / xerrors v0 . 0.0 - 20220907171357 - 04 be3eba64a2 / / indirect
2023-05-08 18:32:57 +04:00
golang . zx2c4 . com / wintun v0 . 0.0 - 20230126152724 - 0 fa3db229ce2 / / indirect
golang . zx2c4 . com / wireguard v0 . 0.0 - 20230325221338 - 052 af4a8072b / / indirect
2023-07-14 11:59:09 +03:00
google . golang . org / api v0 . 126.0 / / indirect
2021-09-13 17:34:15 +03:00
google . golang . org / appengine v1 . 6.7 / / indirect
2023-07-14 11:59:09 +03:00
google . golang . org / genproto v0 . 0.0 - 20230706204954 - ccb25ca9f130 / / indirect
google . golang . org / genproto / googleapis / api v0 . 0.0 - 20230629202037 - 9506855 d4529 / / indirect
2023-07-20 16:33:54 +04:00
google . golang . org / genproto / googleapis / rpc v0 . 0.0 - 20230717213848 - 3 f92550aa753 / / indirect
2021-09-13 17:34:15 +03:00
gopkg . in / inf . v0 v0 . 9.1 / / indirect
2022-12-23 20:30:09 +04:00
gopkg . in / ini . v1 v1 . 67.0 / / indirect
2021-11-09 13:55:43 +00:00
gopkg . in / yaml . v2 v2 . 4.0 / / indirect
2023-07-27 20:39:58 +04:00
k8s . io / cli - runtime v0 . 28.0 - rc . 0 / / indirect
2021-09-13 17:34:15 +03:00
k8s . io / klog v1 . 0.0 / / indirect
2023-07-27 20:39:58 +04:00
k8s . io / kube - openapi v0 . 0.0 - 20230717233707 - 2695361300 d9 / / indirect
2023-07-10 16:48:22 +04:00
k8s . io / utils v0 . 0.0 - 20230406110748 - d93618cff8a2 / / indirect
2023-05-17 04:40:15 -04:00
kernel . org / pub / linux / libs / security / libcap / psx v1 . 2.69 / / indirect
2022-12-23 20:30:09 +04:00
sigs . k8s . io / json v0 . 0.0 - 20221116044647 - bc3834ca7abd / / indirect
2023-07-10 16:48:22 +04:00
sigs . k8s . io / kustomize / api v0 . 13.5 - 0.20230601165947 - 6 ce0bf390ce3 / / indirect
sigs . k8s . io / kustomize / kyaml v0 . 14.3 - 0.20230601165947 - 6 ce0bf390ce3 / / indirect
2022-07-09 02:20:19 +05:30
sigs . k8s . io / structured - merge - diff / v4 v4 . 2.3 / / indirect
2021-09-13 17:34:15 +03:00
)