-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update Talos to the latest master, migrate netaddr -> netip/x
As we migrated from `netaddr` lib to `netip` in Talos, we should also update this module to use `netip`. Signed-off-by: Artem Chernyshev <[email protected]>
- Loading branch information
Showing
14 changed files
with
238 additions
and
357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,12 @@ | |
|
||
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. | ||
# | ||
# Generated on 2022-05-26T16:44:50Z by kres latest. | ||
# Generated on 2022-08-31T10:23:45Z by kres latest. | ||
|
||
ARG TOOLCHAIN | ||
|
||
# runs markdownlint | ||
FROM node:18.2.0-alpine AS lint-markdown | ||
FROM node:18.7.0-alpine AS lint-markdown | ||
WORKDIR /src | ||
RUN npm i -g [email protected] | ||
RUN npm i [email protected] | ||
|
@@ -30,7 +30,8 @@ ENV GO111MODULE on | |
ENV CGO_ENABLED 0 | ||
ENV GOPATH /go | ||
ARG GOLANGCILINT_VERSION | ||
RUN curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/${GOLANGCILINT_VERSION}/install.sh | bash -s -- -b /bin ${GOLANGCILINT_VERSION} | ||
RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@${GOLANGCILINT_VERSION} \ | ||
&& mv /go/bin/golangci-lint /bin/golangci-lint | ||
ARG GOFUMPT_VERSION | ||
RUN go install mvdan.cc/gofumpt@${GOFUMPT_VERSION} \ | ||
&& mv /go/bin/gofumpt /bin/gofumpt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,54 @@ | ||
module github.com/talos-systems/siderolink | ||
|
||
go 1.18 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/jsimonetti/rtnetlink v0.0.0-20211022192332-93da33804786 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/talos-systems/talos/pkg/machinery v0.14.0-alpha.1.0.20211118180932-1ffa8e048008 | ||
go.uber.org/zap v1.18.1 | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | ||
golang.org/x/sys v0.0.0-20211109184856-51b60fd695b3 | ||
github.com/jsimonetti/rtnetlink v1.2.2 | ||
github.com/stretchr/testify v1.8.0 | ||
github.com/talos-systems/talos/pkg/machinery v1.2.0-alpha.2.0.20220830135513-1c0977b3af22 | ||
go.uber.org/zap v1.22.0 | ||
go4.org/netipx v0.0.0-20220812043211-3cc044ffd68d | ||
golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde | ||
golang.org/x/sys v0.0.0-20220818161305-2296e01440c6 | ||
golang.zx2c4.com/wireguard v0.0.0-20211109020618-685490f568cf | ||
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20211109202428-0073765f69ba | ||
google.golang.org/grpc v1.42.0 | ||
google.golang.org/protobuf v1.27.1 | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | ||
inet.af/netaddr v0.0.0-20211027220019-c74959edd3b6 | ||
google.golang.org/grpc v1.49.0 | ||
google.golang.org/protobuf v1.28.1 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/AlekSi/pointer v1.2.0 // indirect | ||
github.com/BurntSushi/toml v0.4.1 // indirect | ||
github.com/cosi-project/runtime v0.0.0-20210906201716-5cb7f5002d77 // indirect | ||
github.com/containerd/go-cni v1.1.7 // indirect | ||
github.com/containernetworking/cni v1.1.2 // indirect | ||
github.com/cosi-project/runtime v0.2.0-alpha.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/gertd/go-pluralize v0.1.7 // indirect | ||
github.com/dustin/go-humanize v1.0.0 // indirect | ||
github.com/gertd/go-pluralize v0.2.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/josharian/native v0.0.0-20200817173448-b6b71def0850 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/mdlayher/ethtool v0.0.0-20211028163843-288d040e9d60 // indirect | ||
github.com/mdlayher/genetlink v1.0.0 // indirect | ||
github.com/mdlayher/netlink v1.4.1 // indirect | ||
github.com/mdlayher/socket v0.0.0-20211102153432-57e3fa563ecb // indirect | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/google/go-cmp v0.5.8 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.2 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/josharian/native v1.0.0 // indirect | ||
github.com/mdlayher/ethtool v0.0.0-20220213132912-856bd6cb8a38 // indirect | ||
github.com/mdlayher/genetlink v1.2.0 // indirect | ||
github.com/mdlayher/netlink v1.6.0 // indirect | ||
github.com/mdlayher/socket v0.2.3 // indirect | ||
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.7.0 // indirect | ||
go4.org/intern v0.0.0-20211027215823-ae77deb06f29 // indirect | ||
go4.org/unsafe/assume-no-moving-gc v0.0.0-20211027215541-db492cf91b37 // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
github.com/siderolabs/go-pointer v1.0.0 // indirect | ||
github.com/siderolabs/protoenc v0.1.5 // indirect | ||
github.com/talos-systems/crypto v0.3.6 // indirect | ||
github.com/talos-systems/go-blockdevice v0.3.4 // indirect | ||
github.com/talos-systems/go-debug v0.2.1 // indirect | ||
github.com/talos-systems/net v0.3.2 // indirect | ||
go.uber.org/atomic v1.10.0 // indirect | ||
go.uber.org/multierr v1.8.0 // indirect | ||
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa // indirect | ||
golang.org/x/mod v0.5.1 // indirect | ||
golang.org/x/net v0.0.0-20211108170745-6635138e15ea // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
golang.org/x/tools v0.1.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
golang.org/x/net v0.0.0-20220822230855-b0a4917ee28c // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.zx2c4.com/go118/netip v0.0.0-20211106132939-9d41d90554dd // indirect | ||
golang.zx2c4.com/wintun v0.0.0-20211104114900-415007cec224 // indirect | ||
google.golang.org/genproto v0.0.0-20211112145013-271947fe86fd // indirect | ||
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect | ||
honnef.co/go/tools v0.2.1 // indirect | ||
google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf // indirect | ||
) |
Oops, something went wrong.