diff --git a/.drone.jsonnet b/.drone.jsonnet index 3cf969204..8600b0818 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -3,7 +3,7 @@ // (e.g. builds, E2E testing, conformance testing, releases). Each pipeline // after the default builds on a previous pipeline. // Generate with `drone jsonnet --source ./hack/drone.jsonnet --stream --format` -// Sign with `drone sign talos-systems/talos --save` +// Sign with `drone sign siderolabs/talos --save` local build_container = 'autonomy/build-container:latest'; local local_registry = 'registry.dev.talos-systems.io'; diff --git a/.golangci.yml b/.golangci.yml index 666784e34..c5337b689 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -72,8 +72,8 @@ linters-settings: - github.com/golang/protobuf/proto - google.golang.org/protobuf/proto packages-with-error-message: - - google.golang.org/protobuf/proto: Use "github.com/talos-systems/talos/pkg/machinery/proto" instead. - github.com/golang/protobuf/proto: Use "github.com/talos-systems/talos/pkg/machinery/proto" instead. + - google.golang.org/protobuf/proto: Use "github.com/siderolabs/talos/pkg/machinery/proto" instead. + github.com/golang/protobuf/proto: Use "github.com/siderolabs/talos/pkg/machinery/proto" instead. misspell: # Correct spellings using locale preferences for US or UK. # Default is to use a neutral variety of English. @@ -123,7 +123,7 @@ linters-settings: sections: - standard # Captures all standard packages if they do not match another section. - default # Contains all imports that could not be matched to another section type. - - prefix(github.com/talos-systems/talos) # Groups all imports with the specified Prefix. + - prefix(github.com/siderolabs/talos) # Groups all imports with the specified Prefix. cyclop: # the maximal code complexity to report max-complexity: 20 diff --git a/Dockerfile b/Dockerfile index 445f26ef2..b6840efa4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -122,16 +122,16 @@ RUN --mount=type=cache,target=/.cache go install golang.org/x/vuln/cmd/govulnche && mv /go/bin/govulncheck /toolchain/go/bin/govulncheck RUN --mount=type=cache,target=/.cache go install github.com/uber/prototool/cmd/prototool@v1.10.0 \ && mv /go/bin/prototool /toolchain/go/bin/prototool -COPY ./hack/docgen /go/src/github.com/talos-systems/talos-hack-docgen -RUN --mount=type=cache,target=/.cache cd /go/src/github.com/talos-systems/talos-hack-docgen \ +COPY ./hack/docgen /go/src/github.com/siderolabs/talos-hack-docgen +RUN --mount=type=cache,target=/.cache cd /go/src/github.com/siderolabs/talos-hack-docgen \ && go build -o docgen . \ && mv docgen /toolchain/go/bin/ -COPY ./hack/gotagsrewrite /go/src/github.com/talos-systems/gotagsrewrite -RUN --mount=type=cache,target=/.cache cd /go/src/github.com/talos-systems/gotagsrewrite \ +COPY ./hack/gotagsrewrite /go/src/github.com/siderolabs/gotagsrewrite +RUN --mount=type=cache,target=/.cache cd /go/src/github.com/siderolabs/gotagsrewrite \ && go build -o gotagsrewrite . \ && mv gotagsrewrite /toolchain/go/bin/ -COPY ./hack/structprotogen /go/src/github.com/talos-systems/structprotogen -RUN --mount=type=cache,target=/.cache cd /go/src/github.com/talos-systems/structprotogen \ +COPY ./hack/structprotogen /go/src/github.com/siderolabs/structprotogen +RUN --mount=type=cache,target=/.cache cd /go/src/github.com/siderolabs/structprotogen \ && go build -o structprotogen . \ && mv structprotogen /toolchain/go/bin/ COPY --from=importvet /importvet /toolchain/go/bin/importvet @@ -190,17 +190,17 @@ FROM build-go AS go-generate COPY ./pkg ./pkg COPY ./hack/boilerplate.txt ./hack/boilerplate.txt RUN --mount=type=cache,target=/.cache go generate ./pkg/... -RUN goimports -w -local github.com/talos-systems/talos ./pkg/ +RUN goimports -w -local github.com/siderolabs/talos ./pkg/ RUN gofumpt -w ./pkg/ WORKDIR /src/pkg/machinery RUN --mount=type=cache,target=/.cache go generate ./... RUN gotagsrewrite . -RUN goimports -w -local github.com/talos-systems/talos ./ +RUN goimports -w -local github.com/siderolabs/talos ./ RUN gofumpt -w ./ FROM go-generate AS gen-proto-go WORKDIR /src/ -RUN structprotogen github.com/talos-systems/talos/pkg/machinery/... /api/resource/definitions/ +RUN structprotogen github.com/siderolabs/talos/pkg/machinery/... /api/resource/definitions/ # compile protobuf service definitions FROM build AS generate-build @@ -230,7 +230,7 @@ RUN protoc -I/api -I/api/vendor/ --go_out=paths=source_relative:/api --go-grpc_o COPY --from=gen-proto-go /api/resource/definitions/ /api/resource/definitions/ RUN find /api/resource/definitions/ -type f -name "*.proto" | xargs -I {} /bin/sh -c 'protoc -I/api -I/api/vendor/ --go_out=paths=source_relative:/api --go-grpc_out=paths=source_relative:/api --go-vtproto_out=paths=source_relative:/api --go-vtproto_opt=features=marshal+unmarshal+size {} && mkdir -p /api/resource/definitions_go/$(basename {} .proto) && mv /api/resource/definitions/$(basename {} .proto)/*.go /api/resource/definitions_go/$(basename {} .proto)' # Goimports and gofumpt generated files to adjust import order -RUN goimports -w -local github.com/talos-systems/talos /api/ +RUN goimports -w -local github.com/siderolabs/talos /api/ RUN gofumpt -w /api/ FROM build AS embed-generate @@ -767,7 +767,7 @@ RUN --mount=type=cache,target=/.cache golangci-lint run --config .golangci.yml WORKDIR /src/pkg/machinery RUN --mount=type=cache,target=/.cache golangci-lint run --config ../../.golangci.yml WORKDIR /src -RUN --mount=type=cache,target=/.cache importvet github.com/talos-systems/talos/... +RUN --mount=type=cache,target=/.cache importvet github.com/siderolabs/talos/... # The protolint target performs linting on protobuf files. diff --git a/Makefile b/Makefile index 79f4ee661..a4717358f 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ KUBESTR_URL ?= https://github.com/kastenhq/kubestr/releases/download/v0.4.34/kub HELM_URL ?= https://get.helm.sh/helm-v3.9.2-linux-amd64.tar.gz CLUSTERCTL_VERSION ?= 1.1.3 CLUSTERCTL_URL ?= https://github.com/kubernetes-sigs/cluster-api/releases/download/v$(CLUSTERCTL_VERSION)/clusterctl-$(OPERATING_SYSTEM)-amd64 -TESTPKGS ?= github.com/talos-systems/talos/... +TESTPKGS ?= github.com/siderolabs/talos/... RELEASES ?= v1.1.2 v1.2.6 SHORT_INTEGRATION_TEST ?= CUSTOM_CNI_URL ?= @@ -288,7 +288,7 @@ api-descriptors: ## Generates API descriptors used to detect breaking API change @$(MAKE) local-api-descriptors DEST=./ PLATFORM=linux/amd64 fmt-go: ## Formats the source code. - @docker run --rm -it -v $(PWD):/src -w /src golang:$(GO_VERSION) bash -c "go install golang.org/x/tools/cmd/goimports@$(GOIMPORTS_VERSION) && goimports -w -local github.com/talos-systems/talos . && go install mvdan.cc/gofumpt@$(GOFUMPT_VERSION) && gofumpt -w ." + @docker run --rm -it -v $(PWD):/src -w /src golang:$(GO_VERSION) bash -c "go install golang.org/x/tools/cmd/goimports@$(GOIMPORTS_VERSION) && goimports -w -local github.com/siderolabs/talos . && go install mvdan.cc/gofumpt@$(GOFUMPT_VERSION) && gofumpt -w ." fmt-protobuf: ## Formats protobuf files. @$(MAKE) local-fmt-protobuf DEST=./ PLATFORM=linux/amd64 diff --git a/api/cluster/cluster.proto b/api/cluster/cluster.proto index 84980aae4..f9441d2b0 100644 --- a/api/cluster/cluster.proto +++ b/api/cluster/cluster.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package cluster; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/cluster"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/cluster"; import "common/common.proto"; import "google/protobuf/duration.proto"; diff --git a/api/common/common.proto b/api/common/common.proto index 7d3045d22..97bb7fbb7 100644 --- a/api/common/common.proto +++ b/api/common/common.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package common; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/common"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/common"; import "google/protobuf/any.proto"; import "google/protobuf/descriptor.proto"; diff --git a/api/inspect/inspect.proto b/api/inspect/inspect.proto index 1a389d7fc..0b66ff4aa 100644 --- a/api/inspect/inspect.proto +++ b/api/inspect/inspect.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package inspect; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/inspect"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/inspect"; import "common/common.proto"; import "google/protobuf/empty.proto"; diff --git a/api/machine/machine.proto b/api/machine/machine.proto index f0c894c51..f2d6cdfff 100644 --- a/api/machine/machine.proto +++ b/api/machine/machine.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package machine; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/machine"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/machine"; import "common/common.proto"; import "google/protobuf/any.proto"; diff --git a/api/prototool.yaml b/api/prototool.yaml index ad00df97b..cff0c9a0f 100644 --- a/api/prototool.yaml +++ b/api/prototool.yaml @@ -12,7 +12,7 @@ lint: rules: # The specific linters to add. - # TODO Enable more: https://github.com/talos-systems/talos/issues/2722. + # TODO Enable more: https://github.com/siderolabs/talos/issues/2722. add: # All rules except language-specific (C#, Java, Obj-C, PHP, Ruby, but not Go). # prototool lint --list-all-linters | grep -vE '(CSHARP|JAVA|OBJC|PHP|RUBY)' diff --git a/api/resource/config/config.proto b/api/resource/config/config.proto index f2b3fae48..41b9c3dc8 100644 --- a/api/resource/config/config.proto +++ b/api/resource/config/config.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package resource.config; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/config"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/config"; // MessageConfigSpec is the spec for the config.MachineConfig resource. message MachineConfigSpec { diff --git a/api/resource/definitions/cluster/cluster.proto b/api/resource/definitions/cluster/cluster.proto index 154e0bea2..616f4ef9c 100755 --- a/api/resource/definitions/cluster/cluster.proto +++ b/api/resource/definitions/cluster/cluster.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.cluster; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/cluster"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/cluster"; import "common/common.proto"; import "resource/definitions/enums/enums.proto"; diff --git a/api/resource/definitions/cri/cri.proto b/api/resource/definitions/cri/cri.proto index e697f41b8..e41668fc7 100755 --- a/api/resource/definitions/cri/cri.proto +++ b/api/resource/definitions/cri/cri.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.cri; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/cri"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/cri"; import "google/protobuf/struct.proto"; diff --git a/api/resource/definitions/enums/enums.proto b/api/resource/definitions/enums/enums.proto index 7b5ff4d2a..fcfc6c307 100644 --- a/api/resource/definitions/enums/enums.proto +++ b/api/resource/definitions/enums/enums.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.enums; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/enums"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/enums"; // MachineType represents a machine type. enum MachineType { diff --git a/api/resource/definitions/etcd/etcd.proto b/api/resource/definitions/etcd/etcd.proto index e077c2835..4dc24f19e 100755 --- a/api/resource/definitions/etcd/etcd.proto +++ b/api/resource/definitions/etcd/etcd.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.etcd; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/etcd"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/etcd"; import "common/common.proto"; diff --git a/api/resource/definitions/extensions/extensions.proto b/api/resource/definitions/extensions/extensions.proto index 0e444a738..b95abc7bd 100755 --- a/api/resource/definitions/extensions/extensions.proto +++ b/api/resource/definitions/extensions/extensions.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.extensions; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/extensions"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/extensions"; // Compatibility describes extension compatibility. message Compatibility { diff --git a/api/resource/definitions/files/files.proto b/api/resource/definitions/files/files.proto index 4bdea0314..bb671bd2a 100755 --- a/api/resource/definitions/files/files.proto +++ b/api/resource/definitions/files/files.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.files; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/files"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/files"; // EtcFileSpecSpec describes status of rendered secrets. message EtcFileSpecSpec { diff --git a/api/resource/definitions/hardware/hardware.proto b/api/resource/definitions/hardware/hardware.proto index b2d6ea493..e1955afd6 100755 --- a/api/resource/definitions/hardware/hardware.proto +++ b/api/resource/definitions/hardware/hardware.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.hardware; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/hardware"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/hardware"; // MemoryModuleSpec represents a single Memory. message MemoryModuleSpec { diff --git a/api/resource/definitions/k8s/k8s.proto b/api/resource/definitions/k8s/k8s.proto index c7839d2c8..c2e998afe 100755 --- a/api/resource/definitions/k8s/k8s.proto +++ b/api/resource/definitions/k8s/k8s.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.k8s; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/k8s"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/k8s"; import "common/common.proto"; import "google/protobuf/struct.proto"; diff --git a/api/resource/definitions/kubeaccess/kubeaccess.proto b/api/resource/definitions/kubeaccess/kubeaccess.proto index 1fb8acb7b..fca74a238 100755 --- a/api/resource/definitions/kubeaccess/kubeaccess.proto +++ b/api/resource/definitions/kubeaccess/kubeaccess.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.kubeaccess; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/kubeaccess"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/kubeaccess"; // ConfigSpec describes KubeSpan configuration.. message ConfigSpec { diff --git a/api/resource/definitions/kubespan/kubespan.proto b/api/resource/definitions/kubespan/kubespan.proto index 0bfe02ad5..2bbc3d8b4 100755 --- a/api/resource/definitions/kubespan/kubespan.proto +++ b/api/resource/definitions/kubespan/kubespan.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.kubespan; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/kubespan"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/kubespan"; import "common/common.proto"; import "google/protobuf/timestamp.proto"; diff --git a/api/resource/definitions/network/network.proto b/api/resource/definitions/network/network.proto index 88c993715..083e95620 100755 --- a/api/resource/definitions/network/network.proto +++ b/api/resource/definitions/network/network.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.network; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/network"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/network"; import "common/common.proto"; import "google/protobuf/duration.proto"; diff --git a/api/resource/definitions/perf/perf.proto b/api/resource/definitions/perf/perf.proto index f51632197..d94d0f5aa 100755 --- a/api/resource/definitions/perf/perf.proto +++ b/api/resource/definitions/perf/perf.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.perf; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/perf"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/perf"; // CPUSpec represents the last CPU stats snapshot. message CPUSpec { diff --git a/api/resource/definitions/proto/proto.proto b/api/resource/definitions/proto/proto.proto index df968d7fa..ae8efa03e 100755 --- a/api/resource/definitions/proto/proto.proto +++ b/api/resource/definitions/proto/proto.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.proto; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/proto"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/proto"; // Mount specifies a mount for a container. message Mount { diff --git a/api/resource/definitions/runtime/runtime.proto b/api/resource/definitions/runtime/runtime.proto index deb1a0199..39afe0ca2 100755 --- a/api/resource/definitions/runtime/runtime.proto +++ b/api/resource/definitions/runtime/runtime.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.runtime; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/runtime"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/runtime"; import "resource/definitions/enums/enums.proto"; diff --git a/api/resource/definitions/secrets/secrets.proto b/api/resource/definitions/secrets/secrets.proto index e270b559b..61eaf1230 100755 --- a/api/resource/definitions/secrets/secrets.proto +++ b/api/resource/definitions/secrets/secrets.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.secrets; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/secrets"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/secrets"; import "common/common.proto"; diff --git a/api/resource/definitions/time/time.proto b/api/resource/definitions/time/time.proto index b547f642e..5f82cc0f0 100755 --- a/api/resource/definitions/time/time.proto +++ b/api/resource/definitions/time/time.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.time; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/time"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/time"; // StatusSpec describes time sync state. message StatusSpec { diff --git a/api/resource/definitions/v1alpha1/v1alpha1.proto b/api/resource/definitions/v1alpha1/v1alpha1.proto index eb03a4ef3..f974130db 100755 --- a/api/resource/definitions/v1alpha1/v1alpha1.proto +++ b/api/resource/definitions/v1alpha1/v1alpha1.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package talos.resource.definitions.v1alpha1; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/v1alpha1"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/v1alpha1"; // ServiceSpec describe service state. message ServiceSpec { diff --git a/api/resource/network/device_config.proto b/api/resource/network/device_config.proto index f98399505..1d05503fe 100644 --- a/api/resource/network/device_config.proto +++ b/api/resource/network/device_config.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package resource.network; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/network"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/network"; // DeviceConfigSpecSpec is the spec for the network.DeviceConfigSpec resource. message DeviceConfigSpecSpec { diff --git a/api/resource/resource.proto b/api/resource/resource.proto index 4b6678a81..f2e87ce2c 100644 --- a/api/resource/resource.proto +++ b/api/resource/resource.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package resource; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource"; import "common/common.proto"; import "google/protobuf/timestamp.proto"; diff --git a/api/security/security.proto b/api/security/security.proto index a6704aee7..bd6421bc6 100644 --- a/api/security/security.proto +++ b/api/security/security.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package securityapi; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/security"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/security"; // The security service definition. service SecurityService { diff --git a/api/storage/storage.proto b/api/storage/storage.proto index b51f06aee..f2ffdf521 100644 --- a/api/storage/storage.proto +++ b/api/storage/storage.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package storage; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/storage"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/storage"; import "common/common.proto"; import "google/protobuf/empty.proto"; diff --git a/api/time/time.proto b/api/time/time.proto index 58cf2f9e4..a86ca7e9b 100644 --- a/api/time/time.proto +++ b/api/time/time.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package time; -option go_package = "github.com/talos-systems/talos/pkg/machinery/api/time"; +option go_package = "github.com/siderolabs/talos/pkg/machinery/api/time"; import "common/common.proto"; import "google/protobuf/empty.proto"; diff --git a/cmd/installer/cmd/image.go b/cmd/installer/cmd/image.go index 04b7613c5..fd9473be1 100644 --- a/cmd/installer/cmd/image.go +++ b/cmd/installer/cmd/image.go @@ -15,14 +15,14 @@ import ( "github.com/siderolabs/go-cmd/pkg/cmd" "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/installer/pkg" - "github.com/talos-systems/talos/cmd/installer/pkg/install" - "github.com/talos-systems/talos/cmd/installer/pkg/ova" - "github.com/talos-systems/talos/cmd/installer/pkg/qemuimg" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform" - "github.com/talos-systems/talos/pkg/archiver" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/cmd/installer/pkg" + "github.com/siderolabs/talos/cmd/installer/pkg/install" + "github.com/siderolabs/talos/cmd/installer/pkg/ova" + "github.com/siderolabs/talos/cmd/installer/pkg/qemuimg" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform" + "github.com/siderolabs/talos/pkg/archiver" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var ( diff --git a/cmd/installer/cmd/install.go b/cmd/installer/cmd/install.go index 0cb3ef9f9..5e0976560 100644 --- a/cmd/installer/cmd/install.go +++ b/cmd/installer/cmd/install.go @@ -11,11 +11,11 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/installer/pkg/install" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/cmd/installer/pkg/install" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/version" ) // installCmd represents the install command. diff --git a/cmd/installer/cmd/iso.go b/cmd/installer/cmd/iso.go index fc93df8ae..3b8c8b4e0 100644 --- a/cmd/installer/cmd/iso.go +++ b/cmd/installer/cmd/iso.go @@ -17,10 +17,10 @@ import ( "github.com/siderolabs/go-procfs/procfs" "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/installer/pkg" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/metal" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/kernel" + "github.com/siderolabs/talos/cmd/installer/pkg" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/metal" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/kernel" ) //go:embed grub.iso.cfg diff --git a/cmd/installer/cmd/root.go b/cmd/installer/cmd/root.go index feead6102..7e8ab0111 100644 --- a/cmd/installer/cmd/root.go +++ b/cmd/installer/cmd/root.go @@ -12,8 +12,8 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/installer/pkg/install" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/cmd/installer/pkg/install" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // rootCmd represents the base command when called without any subcommands. diff --git a/cmd/installer/main.go b/cmd/installer/main.go index cd69e8530..18c17e804 100644 --- a/cmd/installer/main.go +++ b/cmd/installer/main.go @@ -5,7 +5,7 @@ // Package installer provides the installer implementation. package main -import "github.com/talos-systems/talos/cmd/installer/cmd" +import "github.com/siderolabs/talos/cmd/installer/cmd" func main() { cmd.Execute() diff --git a/cmd/installer/pkg/install/extensions.go b/cmd/installer/pkg/install/extensions.go index 1e89de4e5..62717992b 100644 --- a/cmd/installer/pkg/install/extensions.go +++ b/cmd/installer/pkg/install/extensions.go @@ -15,9 +15,9 @@ import ( "path/filepath" "text/tabwriter" - "github.com/talos-systems/talos/internal/pkg/extensions" - "github.com/talos-systems/talos/pkg/machinery/constants" - extinterface "github.com/talos-systems/talos/pkg/machinery/extensions" + "github.com/siderolabs/talos/internal/pkg/extensions" + "github.com/siderolabs/talos/pkg/machinery/constants" + extinterface "github.com/siderolabs/talos/pkg/machinery/extensions" ) func (i *Installer) installExtensions() error { diff --git a/cmd/installer/pkg/install/install.go b/cmd/installer/pkg/install/install.go index 97075ce43..50eee6e02 100644 --- a/cmd/installer/pkg/install/install.go +++ b/cmd/installer/pkg/install/install.go @@ -12,15 +12,15 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/board" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub" - "github.com/talos-systems/talos/internal/pkg/mount" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/kernel" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/board" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub" + "github.com/siderolabs/talos/internal/pkg/mount" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/kernel" + "github.com/siderolabs/talos/pkg/version" ) // Options represents the set of options available for an install. diff --git a/cmd/installer/pkg/install/manifest.go b/cmd/installer/pkg/install/manifest.go index 854908806..168892654 100644 --- a/cmd/installer/pkg/install/manifest.go +++ b/cmd/installer/pkg/install/manifest.go @@ -18,11 +18,11 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice/partition/gpt" "github.com/siderolabs/go-retry/retry" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/board" - "github.com/talos-systems/talos/internal/pkg/mount" - "github.com/talos-systems/talos/internal/pkg/partition" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/board" + "github.com/siderolabs/talos/internal/pkg/mount" + "github.com/siderolabs/talos/internal/pkg/partition" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Manifest represents the instructions for preparing all block devices diff --git a/cmd/installer/pkg/install/manifest_test.go b/cmd/installer/pkg/install/manifest_test.go index b788587db..d39d6c8b6 100644 --- a/cmd/installer/pkg/install/manifest_test.go +++ b/cmd/installer/pkg/install/manifest_test.go @@ -16,11 +16,11 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice/loopback" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/cmd/installer/pkg/install" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/pkg/mount" - "github.com/talos-systems/talos/internal/pkg/partition" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/cmd/installer/pkg/install" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/pkg/mount" + "github.com/siderolabs/talos/internal/pkg/partition" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Some tests in this package cannot be run under buildkit, as buildkit doesn't propagate partition devices diff --git a/cmd/installer/pkg/install/target.go b/cmd/installer/pkg/install/target.go index 32d97e9cf..7ff1c7112 100644 --- a/cmd/installer/pkg/install/target.go +++ b/cmd/installer/pkg/install/target.go @@ -20,10 +20,10 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice/util" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/pkg/mount" - "github.com/talos-systems/talos/internal/pkg/partition" - "github.com/talos-systems/talos/pkg/archiver" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/pkg/mount" + "github.com/siderolabs/talos/internal/pkg/partition" + "github.com/siderolabs/talos/pkg/archiver" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Target represents an installation partition. diff --git a/cmd/installer/pkg/install/verify.go b/cmd/installer/pkg/install/verify.go index 9f8da310e..f43bb503b 100644 --- a/cmd/installer/pkg/install/verify.go +++ b/cmd/installer/pkg/install/verify.go @@ -11,7 +11,7 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice" "github.com/siderolabs/go-blockdevice/blockdevice/filesystem" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // VerifyEphemeralPartition verifies the supplied data device options. diff --git a/cmd/installer/pkg/ova/ova.go b/cmd/installer/pkg/ova/ova.go index fe7dbef49..57ece51d3 100644 --- a/cmd/installer/pkg/ova/ova.go +++ b/cmd/installer/pkg/ova/ova.go @@ -17,8 +17,8 @@ import ( "github.com/siderolabs/go-cmd/pkg/cmd" - "github.com/talos-systems/talos/cmd/installer/pkg" - "github.com/talos-systems/talos/cmd/installer/pkg/qemuimg" + "github.com/siderolabs/talos/cmd/installer/pkg" + "github.com/siderolabs/talos/cmd/installer/pkg/qemuimg" ) const mfTpl = `SHA256({{ .VMDK }})= {{ .VMDKSHA }} diff --git a/cmd/talosctl/cmd/completion.go b/cmd/talosctl/cmd/completion.go index c3d3758e7..e868f1938 100644 --- a/cmd/talosctl/cmd/completion.go +++ b/cmd/talosctl/cmd/completion.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/cli" ) // completionCmd represents the completion command. diff --git a/cmd/talosctl/cmd/docs.go b/cmd/talosctl/cmd/docs.go index 931246541..aa8f0bfbf 100644 --- a/cmd/talosctl/cmd/docs.go +++ b/cmd/talosctl/cmd/docs.go @@ -17,7 +17,7 @@ import ( "github.com/spf13/cobra" "github.com/spf13/cobra/doc" - v1alpha1 "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + v1alpha1 "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) func frontmatter(title, description string) string { diff --git a/cmd/talosctl/cmd/mgmt/cluster/cluster.go b/cmd/talosctl/cmd/mgmt/cluster/cluster.go index fd273400c..304deeb44 100644 --- a/cmd/talosctl/cmd/mgmt/cluster/cluster.go +++ b/cmd/talosctl/cmd/mgmt/cluster/cluster.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/cobra" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) // Cmd represents the cluster command. diff --git a/cmd/talosctl/cmd/mgmt/cluster/create.go b/cmd/talosctl/cmd/mgmt/cluster/create.go index b7913838f..7b2c38b51 100644 --- a/cmd/talosctl/cmd/mgmt/cluster/create.go +++ b/cmd/talosctl/cmd/mgmt/cluster/create.go @@ -27,24 +27,24 @@ import ( "github.com/spf13/pflag" "k8s.io/client-go/tools/clientcmd" - "github.com/talos-systems/talos/cmd/talosctl/pkg/mgmt/helpers" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/cluster/check" - "github.com/talos-systems/talos/pkg/images" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/configpatcher" - "github.com/talos-systems/talos/pkg/machinery/config/encoder" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/bundle" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/access" - "github.com/talos-systems/talos/pkg/provision/providers" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/cmd/talosctl/pkg/mgmt/helpers" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/cluster/check" + "github.com/siderolabs/talos/pkg/images" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/configpatcher" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/bundle" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/access" + "github.com/siderolabs/talos/pkg/provision/providers" + "github.com/siderolabs/talos/pkg/version" ) const ( diff --git a/cmd/talosctl/cmd/mgmt/cluster/destroy.go b/cmd/talosctl/cmd/mgmt/cluster/destroy.go index 121714fc2..d417a852f 100644 --- a/cmd/talosctl/cmd/mgmt/cluster/destroy.go +++ b/cmd/talosctl/cmd/mgmt/cluster/destroy.go @@ -9,8 +9,8 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/provision/providers" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/provision/providers" ) // destroyCmd represents the cluster destroy command. diff --git a/cmd/talosctl/cmd/mgmt/cluster/show.go b/cmd/talosctl/cmd/mgmt/cluster/show.go index ed1c6269b..e6dbc3bd7 100644 --- a/cmd/talosctl/cmd/mgmt/cluster/show.go +++ b/cmd/talosctl/cmd/mgmt/cluster/show.go @@ -17,9 +17,9 @@ import ( "github.com/siderolabs/gen/slices" "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/providers" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/providers" ) // showCmd represents the cluster show command. diff --git a/cmd/talosctl/cmd/mgmt/debug/air-gapped.go b/cmd/talosctl/cmd/mgmt/debug/air-gapped.go index 5430a432d..b788b746c 100644 --- a/cmd/talosctl/cmd/mgmt/debug/air-gapped.go +++ b/cmd/talosctl/cmd/mgmt/debug/air-gapped.go @@ -29,9 +29,9 @@ import ( "github.com/spf13/cobra" "golang.org/x/sync/errgroup" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/config/encoder" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) //go:embed httproot/* diff --git a/cmd/talosctl/cmd/mgmt/dhcpd_launch_linux.go b/cmd/talosctl/cmd/mgmt/dhcpd_launch_linux.go index 04b5612a7..67ca6e190 100644 --- a/cmd/talosctl/cmd/mgmt/dhcpd_launch_linux.go +++ b/cmd/talosctl/cmd/mgmt/dhcpd_launch_linux.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/provision/providers/vm" + "github.com/siderolabs/talos/pkg/provision/providers/vm" ) var dhcpdLaunchCmdFlags struct { diff --git a/cmd/talosctl/cmd/mgmt/gen/ca.go b/cmd/talosctl/cmd/mgmt/gen/ca.go index c07cf375c..6d439d962 100644 --- a/cmd/talosctl/cmd/mgmt/gen/ca.go +++ b/cmd/talosctl/cmd/mgmt/gen/ca.go @@ -13,7 +13,7 @@ import ( "github.com/siderolabs/crypto/x509" "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/cli" ) var genCACmdFlags struct { diff --git a/cmd/talosctl/cmd/mgmt/gen/config.go b/cmd/talosctl/cmd/mgmt/gen/config.go index bd166f39f..65852b307 100644 --- a/cmd/talosctl/cmd/mgmt/gen/config.go +++ b/cmd/talosctl/cmd/mgmt/gen/config.go @@ -15,16 +15,16 @@ import ( "github.com/spf13/cobra" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/cmd/talosctl/pkg/mgmt/helpers" - "github.com/talos-systems/talos/pkg/images" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/configpatcher" - "github.com/talos-systems/talos/pkg/machinery/config/encoder" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/bundle" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/cmd/talosctl/pkg/mgmt/helpers" + "github.com/siderolabs/talos/pkg/images" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/configpatcher" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/bundle" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var genConfigCmdFlags struct { diff --git a/cmd/talosctl/cmd/mgmt/gen/crt.go b/cmd/talosctl/cmd/mgmt/gen/crt.go index f0bee18ce..294d534de 100644 --- a/cmd/talosctl/cmd/mgmt/gen/crt.go +++ b/cmd/talosctl/cmd/mgmt/gen/crt.go @@ -14,7 +14,7 @@ import ( "github.com/siderolabs/crypto/x509" "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/cli" ) var genCrtCmdFlags struct { diff --git a/cmd/talosctl/cmd/mgmt/gen/csr.go b/cmd/talosctl/cmd/mgmt/gen/csr.go index 44eeee7f4..5970cb9e9 100644 --- a/cmd/talosctl/cmd/mgmt/gen/csr.go +++ b/cmd/talosctl/cmd/mgmt/gen/csr.go @@ -16,8 +16,8 @@ import ( "github.com/siderolabs/crypto/x509" "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/role" ) var genCSRCmdFlags struct { diff --git a/cmd/talosctl/cmd/mgmt/gen/key.go b/cmd/talosctl/cmd/mgmt/gen/key.go index d53bd357a..68563a1cd 100644 --- a/cmd/talosctl/cmd/mgmt/gen/key.go +++ b/cmd/talosctl/cmd/mgmt/gen/key.go @@ -11,7 +11,7 @@ import ( "github.com/siderolabs/crypto/x509" "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/cli" ) var genKeyCmdFlags struct { diff --git a/cmd/talosctl/cmd/mgmt/gen/keypair.go b/cmd/talosctl/cmd/mgmt/gen/keypair.go index f8ec205b8..84518c243 100644 --- a/cmd/talosctl/cmd/mgmt/gen/keypair.go +++ b/cmd/talosctl/cmd/mgmt/gen/keypair.go @@ -12,7 +12,7 @@ import ( "github.com/siderolabs/crypto/x509" "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/cli" ) var genKeypairCmdFlags struct { diff --git a/cmd/talosctl/cmd/mgmt/gen/secrets.go b/cmd/talosctl/cmd/mgmt/gen/secrets.go index 0e1486e0e..e1a2121d8 100644 --- a/cmd/talosctl/cmd/mgmt/gen/secrets.go +++ b/cmd/talosctl/cmd/mgmt/gen/secrets.go @@ -11,8 +11,8 @@ import ( "github.com/spf13/cobra" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" ) var genSecretsCmdFlags struct { diff --git a/cmd/talosctl/cmd/mgmt/inject/serviceaccount.go b/cmd/talosctl/cmd/mgmt/inject/serviceaccount.go index 69d226e0f..7f631dfd9 100644 --- a/cmd/talosctl/cmd/mgmt/inject/serviceaccount.go +++ b/cmd/talosctl/cmd/mgmt/inject/serviceaccount.go @@ -10,8 +10,8 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/kubernetes/inject" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/kubernetes/inject" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var serviceAccountCmdFlags struct { diff --git a/cmd/talosctl/cmd/mgmt/loadbalancer_launch.go b/cmd/talosctl/cmd/mgmt/loadbalancer_launch.go index 4dec9f248..a17411fd7 100644 --- a/cmd/talosctl/cmd/mgmt/loadbalancer_launch.go +++ b/cmd/talosctl/cmd/mgmt/loadbalancer_launch.go @@ -11,7 +11,7 @@ import ( "github.com/siderolabs/go-loadbalancer/loadbalancer" "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var loadbalancerLaunchCmdFlags struct { diff --git a/cmd/talosctl/cmd/mgmt/qemu_launch_linux.go b/cmd/talosctl/cmd/mgmt/qemu_launch_linux.go index 0bd854edd..dc9ca27d7 100644 --- a/cmd/talosctl/cmd/mgmt/qemu_launch_linux.go +++ b/cmd/talosctl/cmd/mgmt/qemu_launch_linux.go @@ -9,7 +9,7 @@ package mgmt import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/provision/providers/qemu" + "github.com/siderolabs/talos/pkg/provision/providers/qemu" ) // qemuLaunchCmd represents the qemu-launch command. diff --git a/cmd/talosctl/cmd/mgmt/root.go b/cmd/talosctl/cmd/mgmt/root.go index 608f5f90c..ee50f290b 100644 --- a/cmd/talosctl/cmd/mgmt/root.go +++ b/cmd/talosctl/cmd/mgmt/root.go @@ -7,10 +7,10 @@ package mgmt import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/cmd/mgmt/cluster" - "github.com/talos-systems/talos/cmd/talosctl/cmd/mgmt/debug" - "github.com/talos-systems/talos/cmd/talosctl/cmd/mgmt/gen" - "github.com/talos-systems/talos/cmd/talosctl/cmd/mgmt/inject" + "github.com/siderolabs/talos/cmd/talosctl/cmd/mgmt/cluster" + "github.com/siderolabs/talos/cmd/talosctl/cmd/mgmt/debug" + "github.com/siderolabs/talos/cmd/talosctl/cmd/mgmt/gen" + "github.com/siderolabs/talos/cmd/talosctl/cmd/mgmt/inject" ) // Commands is a list of commands published by the package. diff --git a/cmd/talosctl/cmd/mgmt/validate.go b/cmd/talosctl/cmd/mgmt/validate.go index 9d005b0d5..4787cd9af 100644 --- a/cmd/talosctl/cmd/mgmt/validate.go +++ b/cmd/talosctl/cmd/mgmt/validate.go @@ -9,10 +9,10 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" ) var ( diff --git a/cmd/talosctl/cmd/root.go b/cmd/talosctl/cmd/root.go index ce5032e7f..46862ac2c 100644 --- a/cmd/talosctl/cmd/root.go +++ b/cmd/talosctl/cmd/root.go @@ -12,10 +12,10 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/cmd/mgmt" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/cmd/talosctl/cmd/mgmt" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // rootCmd represents the base command when called without any subcommands. diff --git a/cmd/talosctl/cmd/talos/apply-config.go b/cmd/talosctl/cmd/talos/apply-config.go index 338a885c9..92271392e 100644 --- a/cmd/talosctl/cmd/talos/apply-config.go +++ b/cmd/talosctl/cmd/talos/apply-config.go @@ -14,12 +14,12 @@ import ( "github.com/spf13/cobra" "google.golang.org/protobuf/types/known/durationpb" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/internal/pkg/tui/installer" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/configpatcher" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/internal/pkg/tui/installer" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/configpatcher" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var applyConfigCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/bootstrap.go b/cmd/talosctl/cmd/talos/bootstrap.go index 0edc2849c..96814f40d 100644 --- a/cmd/talosctl/cmd/talos/bootstrap.go +++ b/cmd/talosctl/cmd/talos/bootstrap.go @@ -12,9 +12,9 @@ import ( "github.com/spf13/cobra" snapshot "go.etcd.io/etcd/etcdutl/v3/snapshot" - "github.com/talos-systems/talos/pkg/logging" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/logging" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) var bootstrapCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/config.go b/cmd/talosctl/cmd/talos/config.go index 83dc03b8a..f0cf36b26 100644 --- a/cmd/talosctl/cmd/talos/config.go +++ b/cmd/talosctl/cmd/talos/config.go @@ -23,11 +23,11 @@ import ( "github.com/spf13/cobra" "google.golang.org/protobuf/types/known/durationpb" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/role" ) // configCmd represents the config command. diff --git a/cmd/talosctl/cmd/talos/config_test.go b/cmd/talosctl/cmd/talos/config_test.go index 65a2bd18f..e654ca09c 100644 --- a/cmd/talosctl/cmd/talos/config_test.go +++ b/cmd/talosctl/cmd/talos/config_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) func TestConfigInfoCommand(t *testing.T) { diff --git a/cmd/talosctl/cmd/talos/conformance.go b/cmd/talosctl/cmd/talos/conformance.go index d726eac08..322b32eb4 100644 --- a/cmd/talosctl/cmd/talos/conformance.go +++ b/cmd/talosctl/cmd/talos/conformance.go @@ -10,9 +10,9 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/cluster/sonobuoy" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/cluster/sonobuoy" + "github.com/siderolabs/talos/pkg/machinery/client" ) // conformanceCmd represents the conformance command. diff --git a/cmd/talosctl/cmd/talos/containers.go b/cmd/talosctl/cmd/talos/containers.go index f0f34bf2c..cdbe2020e 100644 --- a/cmd/talosctl/cmd/talos/containers.go +++ b/cmd/talosctl/cmd/talos/containers.go @@ -17,11 +17,11 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/peer" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/api/common" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/api/common" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // containersCmd represents the processes command. diff --git a/cmd/talosctl/cmd/talos/copy.go b/cmd/talosctl/cmd/talos/copy.go index 4edb12753..58012acf0 100644 --- a/cmd/talosctl/cmd/talos/copy.go +++ b/cmd/talosctl/cmd/talos/copy.go @@ -14,8 +14,8 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/machinery/client" ) // cpCmd represents the cp command. diff --git a/cmd/talosctl/cmd/talos/crashdump.go b/cmd/talosctl/cmd/talos/crashdump.go index 5e0264d21..82d7f88f9 100644 --- a/cmd/talosctl/cmd/talos/crashdump.go +++ b/cmd/talosctl/cmd/talos/crashdump.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/client" ) var crashdumpCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/dashboard.go b/cmd/talosctl/cmd/talos/dashboard.go index 867066426..07e919716 100644 --- a/cmd/talosctl/cmd/talos/dashboard.go +++ b/cmd/talosctl/cmd/talos/dashboard.go @@ -10,8 +10,8 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard" + "github.com/siderolabs/talos/pkg/machinery/client" ) var dashboardCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/dashboard/components/gauges.go b/cmd/talosctl/cmd/talos/dashboard/components/gauges.go index 31c851932..4595eb355 100644 --- a/cmd/talosctl/cmd/talos/dashboard/components/gauges.go +++ b/cmd/talosctl/cmd/talos/dashboard/components/gauges.go @@ -11,7 +11,7 @@ import ( ui "github.com/gizak/termui/v3" "github.com/gizak/termui/v3/widgets" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard/data" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard/data" ) // SystemGauges quickly show CPU/mem load. diff --git a/cmd/talosctl/cmd/talos/dashboard/components/graphs.go b/cmd/talosctl/cmd/talos/dashboard/components/graphs.go index 757fc2610..6a72ec1d4 100644 --- a/cmd/talosctl/cmd/talos/dashboard/components/graphs.go +++ b/cmd/talosctl/cmd/talos/dashboard/components/graphs.go @@ -8,7 +8,7 @@ import ( "github.com/gizak/termui/v3/widgets" "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard/data" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard/data" ) // BaseGraph represents the widget with some usage graph. diff --git a/cmd/talosctl/cmd/talos/dashboard/components/info.go b/cmd/talosctl/cmd/talos/dashboard/components/info.go index 0fc16dea4..aa8b716a9 100644 --- a/cmd/talosctl/cmd/talos/dashboard/components/info.go +++ b/cmd/talosctl/cmd/talos/dashboard/components/info.go @@ -10,7 +10,7 @@ import ( "github.com/dustin/go-humanize" "github.com/gizak/termui/v3/widgets" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard/data" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard/data" ) // LoadAvgInfo represents the widget with load average info. diff --git a/cmd/talosctl/cmd/talos/dashboard/components/nodetabs.go b/cmd/talosctl/cmd/talos/dashboard/components/nodetabs.go index 01b1c5ab4..8f3941a89 100644 --- a/cmd/talosctl/cmd/talos/dashboard/components/nodetabs.go +++ b/cmd/talosctl/cmd/talos/dashboard/components/nodetabs.go @@ -10,7 +10,7 @@ import ( "github.com/gizak/termui/v3/widgets" "github.com/siderolabs/gen/maps" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard/data" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard/data" ) // NodeTabs represents the bottom bar with node list. diff --git a/cmd/talosctl/cmd/talos/dashboard/components/sparklines.go b/cmd/talosctl/cmd/talos/dashboard/components/sparklines.go index 0ec6a5a38..58ee6cad8 100644 --- a/cmd/talosctl/cmd/talos/dashboard/components/sparklines.go +++ b/cmd/talosctl/cmd/talos/dashboard/components/sparklines.go @@ -8,7 +8,7 @@ import ( ui "github.com/gizak/termui/v3" "github.com/gizak/termui/v3/widgets" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard/data" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard/data" ) // BaseSparklineGroup represents the widget with some sparklines. diff --git a/cmd/talosctl/cmd/talos/dashboard/components/tables.go b/cmd/talosctl/cmd/talos/dashboard/components/tables.go index caabba532..224467ddb 100644 --- a/cmd/talosctl/cmd/talos/dashboard/components/tables.go +++ b/cmd/talosctl/cmd/talos/dashboard/components/tables.go @@ -15,7 +15,7 @@ import ( ui "github.com/gizak/termui/v3" "github.com/gizak/termui/v3/widgets" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard/data" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard/data" ) // ProcessTable represents the widget with process info. diff --git a/cmd/talosctl/cmd/talos/dashboard/components/tables_test.go b/cmd/talosctl/cmd/talos/dashboard/components/tables_test.go index ff509c6aa..26906a43d 100644 --- a/cmd/talosctl/cmd/talos/dashboard/components/tables_test.go +++ b/cmd/talosctl/cmd/talos/dashboard/components/tables_test.go @@ -7,9 +7,9 @@ package components_test import ( "testing" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard/components" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard/data" - "github.com/talos-systems/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard/components" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard/data" + "github.com/siderolabs/talos/pkg/machinery/api/machine" ) func TestUpdate(t *testing.T) { diff --git a/cmd/talosctl/cmd/talos/dashboard/components/topline.go b/cmd/talosctl/cmd/talos/dashboard/components/topline.go index 3053e95a8..8975f5937 100644 --- a/cmd/talosctl/cmd/talos/dashboard/components/topline.go +++ b/cmd/talosctl/cmd/talos/dashboard/components/topline.go @@ -10,7 +10,7 @@ import ( "github.com/gizak/termui/v3/widgets" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard/data" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard/data" ) // TopLine represents the top bar with host info. diff --git a/cmd/talosctl/cmd/talos/dashboard/dashboard.go b/cmd/talosctl/cmd/talos/dashboard/dashboard.go index f5899b74f..bd66f410f 100644 --- a/cmd/talosctl/cmd/talos/dashboard/dashboard.go +++ b/cmd/talosctl/cmd/talos/dashboard/dashboard.go @@ -9,7 +9,7 @@ import ( "context" "time" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/client" ) // Main is the entrypoint into talosctl dashboard command. diff --git a/cmd/talosctl/cmd/talos/dashboard/data/diff.go b/cmd/talosctl/cmd/talos/dashboard/data/diff.go index 648e7891a..434e0a231 100644 --- a/cmd/talosctl/cmd/talos/dashboard/data/diff.go +++ b/cmd/talosctl/cmd/talos/dashboard/data/diff.go @@ -4,7 +4,7 @@ package data -import "github.com/talos-systems/talos/pkg/machinery/api/machine" +import "github.com/siderolabs/talos/pkg/machinery/api/machine" func cpuInfoDiff(old, next *machine.CPUStat) *machine.CPUStat { if old == nil || next == nil { diff --git a/cmd/talosctl/cmd/talos/dashboard/data/node.go b/cmd/talosctl/cmd/talos/dashboard/data/node.go index f15df151f..c37f80234 100644 --- a/cmd/talosctl/cmd/talos/dashboard/data/node.go +++ b/cmd/talosctl/cmd/talos/dashboard/data/node.go @@ -7,7 +7,7 @@ package data import ( "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/api/machine" ) // Node represents data gathered from a single node. diff --git a/cmd/talosctl/cmd/talos/dashboard/source.go b/cmd/talosctl/cmd/talos/dashboard/source.go index b04f4c839..67e843f9e 100644 --- a/cmd/talosctl/cmd/talos/dashboard/source.go +++ b/cmd/talosctl/cmd/talos/dashboard/source.go @@ -12,8 +12,8 @@ import ( "golang.org/x/sync/errgroup" "google.golang.org/protobuf/types/known/emptypb" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard/data" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard/data" + "github.com/siderolabs/talos/pkg/machinery/client" ) // APISource provides monitoring data via Talos API. diff --git a/cmd/talosctl/cmd/talos/dashboard/ui.go b/cmd/talosctl/cmd/talos/dashboard/ui.go index 1b8271f93..b8305d74b 100644 --- a/cmd/talosctl/cmd/talos/dashboard/ui.go +++ b/cmd/talosctl/cmd/talos/dashboard/ui.go @@ -9,8 +9,8 @@ import ( ui "github.com/gizak/termui/v3" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard/components" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/dashboard/data" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard/components" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/dashboard/data" ) // DataWidget is a widget which consumes Data to draw itself. diff --git a/cmd/talosctl/cmd/talos/disks.go b/cmd/talosctl/cmd/talos/disks.go index cf79bcf42..da52ff274 100644 --- a/cmd/talosctl/cmd/talos/disks.go +++ b/cmd/talosctl/cmd/talos/disks.go @@ -14,8 +14,8 @@ import ( humanize "github.com/dustin/go-humanize" "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/client" ) var disksCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/diskusage.go b/cmd/talosctl/cmd/talos/diskusage.go index d8df3d74f..50620b06b 100644 --- a/cmd/talosctl/cmd/talos/diskusage.go +++ b/cmd/talosctl/cmd/talos/diskusage.go @@ -13,9 +13,9 @@ import ( humanize "github.com/dustin/go-humanize" "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) var ( diff --git a/cmd/talosctl/cmd/talos/dmesg.go b/cmd/talosctl/cmd/talos/dmesg.go index d43b0d8d2..bf84db588 100644 --- a/cmd/talosctl/cmd/talos/dmesg.go +++ b/cmd/talosctl/cmd/talos/dmesg.go @@ -10,9 +10,9 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/client" ) var dmesgTail bool diff --git a/cmd/talosctl/cmd/talos/edit.go b/cmd/talosctl/cmd/talos/edit.go index 08824299d..2482a1305 100644 --- a/cmd/talosctl/cmd/talos/edit.go +++ b/cmd/talosctl/cmd/talos/edit.go @@ -23,11 +23,11 @@ import ( "k8s.io/kubectl/pkg/cmd/util/editor" "k8s.io/kubectl/pkg/cmd/util/editor/crlf" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) var editCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/etcd.go b/cmd/talosctl/cmd/talos/etcd.go index c275e7051..1e6f945c6 100644 --- a/cmd/talosctl/cmd/talos/etcd.go +++ b/cmd/talosctl/cmd/talos/etcd.go @@ -18,11 +18,11 @@ import ( "github.com/spf13/cobra" snapshot "go.etcd.io/etcd/etcdutl/v3/snapshot" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) // etcdCmd represents the etcd command. diff --git a/cmd/talosctl/cmd/talos/events.go b/cmd/talosctl/cmd/talos/events.go index 4c8354141..216198e74 100644 --- a/cmd/talosctl/cmd/talos/events.go +++ b/cmd/talosctl/cmd/talos/events.go @@ -16,9 +16,9 @@ import ( "github.com/siderolabs/gen/slices" "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) var eventsCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/get.go b/cmd/talosctl/cmd/talos/get.go index 9547f29ba..120430926 100644 --- a/cmd/talosctl/cmd/talos/get.go +++ b/cmd/talosctl/cmd/talos/get.go @@ -17,11 +17,11 @@ import ( "github.com/spf13/cobra" "google.golang.org/grpc/metadata" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/output" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/output" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) var getCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/health.go b/cmd/talosctl/cmd/talos/health.go index 297a42b1d..3b21a2d02 100644 --- a/cmd/talosctl/cmd/talos/health.go +++ b/cmd/talosctl/cmd/talos/health.go @@ -16,14 +16,14 @@ import ( "github.com/spf13/cobra" "google.golang.org/grpc/codes" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/cluster/check" - "github.com/talos-systems/talos/pkg/cluster/sonobuoy" - clusterapi "github.com/talos-systems/talos/pkg/machinery/api/cluster" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - clusterres "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/cluster/check" + "github.com/siderolabs/talos/pkg/cluster/sonobuoy" + clusterapi "github.com/siderolabs/talos/pkg/machinery/api/cluster" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + clusterres "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) type clusterNodes struct { diff --git a/cmd/talosctl/cmd/talos/images.go b/cmd/talosctl/cmd/talos/images.go index d1501fba1..58f43f70a 100644 --- a/cmd/talosctl/cmd/talos/images.go +++ b/cmd/talosctl/cmd/talos/images.go @@ -9,8 +9,8 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/images" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/images" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) // imagesCmd represents the images command. diff --git a/cmd/talosctl/cmd/talos/inspect.go b/cmd/talosctl/cmd/talos/inspect.go index 3e1b5c17a..b3b3953e4 100644 --- a/cmd/talosctl/cmd/talos/inspect.go +++ b/cmd/talosctl/cmd/talos/inspect.go @@ -11,9 +11,9 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/client" ) // inspectCmd represents the inspect command. diff --git a/cmd/talosctl/cmd/talos/interfaces.go b/cmd/talosctl/cmd/talos/interfaces.go index f678af3e6..c99afb79a 100644 --- a/cmd/talosctl/cmd/talos/interfaces.go +++ b/cmd/talosctl/cmd/talos/interfaces.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/client" ) // interfacesCmd represents the net interfaces command. diff --git a/cmd/talosctl/cmd/talos/kubeconfig.go b/cmd/talosctl/cmd/talos/kubeconfig.go index 638b7eb38..7fd96c55d 100644 --- a/cmd/talosctl/cmd/talos/kubeconfig.go +++ b/cmd/talosctl/cmd/talos/kubeconfig.go @@ -18,8 +18,8 @@ import ( "github.com/spf13/cobra" "k8s.io/client-go/tools/clientcmd" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/machinery/client" ) var ( diff --git a/cmd/talosctl/cmd/talos/list.go b/cmd/talosctl/cmd/talos/list.go index 83794aa06..7f587632c 100644 --- a/cmd/talosctl/cmd/talos/list.go +++ b/cmd/talosctl/cmd/talos/list.go @@ -15,9 +15,9 @@ import ( humanize "github.com/dustin/go-humanize" "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) const sixMonths = 6 * time.Hour * 24 * 30 diff --git a/cmd/talosctl/cmd/talos/logs.go b/cmd/talosctl/cmd/talos/logs.go index 1573336ee..9ba3f9e88 100644 --- a/cmd/talosctl/cmd/talos/logs.go +++ b/cmd/talosctl/cmd/talos/logs.go @@ -16,11 +16,11 @@ import ( "github.com/spf13/cobra" "google.golang.org/grpc/codes" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var ( diff --git a/cmd/talosctl/cmd/talos/memory.go b/cmd/talosctl/cmd/talos/memory.go index 468614b50..cc790892f 100644 --- a/cmd/talosctl/cmd/talos/memory.go +++ b/cmd/talosctl/cmd/talos/memory.go @@ -14,10 +14,10 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/peer" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/cli" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/cli" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) var verbose bool diff --git a/cmd/talosctl/cmd/talos/mounts.go b/cmd/talosctl/cmd/talos/mounts.go index eb140a996..44e56d553 100644 --- a/cmd/talosctl/cmd/talos/mounts.go +++ b/cmd/talosctl/cmd/talos/mounts.go @@ -13,8 +13,8 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/peer" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/client" ) // mountsCmd represents the mounts command. diff --git a/cmd/talosctl/cmd/talos/output/jsonpath_test.go b/cmd/talosctl/cmd/talos/output/jsonpath_test.go index 1f8dfa539..7508df615 100644 --- a/cmd/talosctl/cmd/talos/output/jsonpath_test.go +++ b/cmd/talosctl/cmd/talos/output/jsonpath_test.go @@ -12,8 +12,8 @@ import ( "github.com/stretchr/testify/assert" "k8s.io/client-go/util/jsonpath" - "github.com/talos-systems/talos/cmd/talosctl/cmd/talos/output" - "github.com/talos-systems/talos/pkg/machinery/resources/hardware" + "github.com/siderolabs/talos/cmd/talosctl/cmd/talos/output" + "github.com/siderolabs/talos/pkg/machinery/resources/hardware" ) func TestWriteResource(t *testing.T) { diff --git a/cmd/talosctl/cmd/talos/patch.go b/cmd/talosctl/cmd/talos/patch.go index d63575e29..3f5302d51 100644 --- a/cmd/talosctl/cmd/talos/patch.go +++ b/cmd/talosctl/cmd/talos/patch.go @@ -16,12 +16,12 @@ import ( "gopkg.in/yaml.v3" cmdutil "k8s.io/kubectl/pkg/cmd/util" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/configpatcher" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/configpatcher" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) var patchCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/pcap.go b/cmd/talosctl/cmd/talos/pcap.go index 4dfcbdcc2..d40992005 100644 --- a/cmd/talosctl/cmd/talos/pcap.go +++ b/cmd/talosctl/cmd/talos/pcap.go @@ -19,9 +19,9 @@ import ( "github.com/spf13/cobra" "google.golang.org/grpc/codes" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) var pcapCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/processes.go b/cmd/talosctl/cmd/talos/processes.go index 68b989efb..6611e7732 100644 --- a/cmd/talosctl/cmd/talos/processes.go +++ b/cmd/talosctl/cmd/talos/processes.go @@ -21,10 +21,10 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/peer" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/cli" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/cli" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) var ( diff --git a/cmd/talosctl/cmd/talos/read.go b/cmd/talosctl/cmd/talos/read.go index 5c29b4c3e..b46fffb3f 100644 --- a/cmd/talosctl/cmd/talos/read.go +++ b/cmd/talosctl/cmd/talos/read.go @@ -13,8 +13,8 @@ import ( "github.com/spf13/cobra" "golang.org/x/sync/errgroup" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/machinery/client" ) // readCmd represents the read command. diff --git a/cmd/talosctl/cmd/talos/reboot.go b/cmd/talosctl/cmd/talos/reboot.go index b951df7b7..a1b78e1ef 100644 --- a/cmd/talosctl/cmd/talos/reboot.go +++ b/cmd/talosctl/cmd/talos/reboot.go @@ -10,9 +10,9 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/action" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/action" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/machinery/client" ) var rebootCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/reset.go b/cmd/talosctl/cmd/talos/reset.go index 888b1bdf4..419f9be7d 100644 --- a/cmd/talosctl/cmd/talos/reset.go +++ b/cmd/talosctl/cmd/talos/reset.go @@ -10,10 +10,10 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/action" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/action" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) var resetCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/restart.go b/cmd/talosctl/cmd/talos/restart.go index 98edbd13f..ebaefbcf7 100644 --- a/cmd/talosctl/cmd/talos/restart.go +++ b/cmd/talosctl/cmd/talos/restart.go @@ -11,9 +11,9 @@ import ( criconstants "github.com/containerd/containerd/pkg/cri/constants" "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // restartCmd represents the restart command. diff --git a/cmd/talosctl/cmd/talos/rollback.go b/cmd/talosctl/cmd/talos/rollback.go index b7166c6c3..c114f71b6 100644 --- a/cmd/talosctl/cmd/talos/rollback.go +++ b/cmd/talosctl/cmd/talos/rollback.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/client" ) // rollbackCmd represents the rollback command. diff --git a/cmd/talosctl/cmd/talos/root.go b/cmd/talosctl/cmd/talos/root.go index 94d41eeb6..a52a42bcb 100644 --- a/cmd/talosctl/cmd/talos/root.go +++ b/cmd/talosctl/cmd/talos/root.go @@ -18,13 +18,13 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/peer" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/global" - "github.com/talos-systems/talos/pkg/cli" - _ "github.com/talos-systems/talos/pkg/grpc/codec" // register codec - "github.com/talos-systems/talos/pkg/machinery/api/common" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/global" + "github.com/siderolabs/talos/pkg/cli" + _ "github.com/siderolabs/talos/pkg/grpc/codec" // register codec + "github.com/siderolabs/talos/pkg/machinery/api/common" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var kubernetes bool diff --git a/cmd/talosctl/cmd/talos/routes.go b/cmd/talosctl/cmd/talos/routes.go index 278f4f39f..bb082a7a7 100644 --- a/cmd/talosctl/cmd/talos/routes.go +++ b/cmd/talosctl/cmd/talos/routes.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/client" ) // routesCmd represents the net routes command. diff --git a/cmd/talosctl/cmd/talos/service.go b/cmd/talosctl/cmd/talos/service.go index bb0a51ccd..54f62bf5d 100644 --- a/cmd/talosctl/cmd/talos/service.go +++ b/cmd/talosctl/cmd/talos/service.go @@ -14,8 +14,8 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/peer" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/client" ) // serviceCmd represents the service command. diff --git a/cmd/talosctl/cmd/talos/shutdown.go b/cmd/talosctl/cmd/talos/shutdown.go index cf0a9723e..ba36ad098 100644 --- a/cmd/talosctl/cmd/talos/shutdown.go +++ b/cmd/talosctl/cmd/talos/shutdown.go @@ -10,9 +10,9 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/action" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/action" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/machinery/client" ) var shutdownCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/stats.go b/cmd/talosctl/cmd/talos/stats.go index 139525cb3..c5d763388 100644 --- a/cmd/talosctl/cmd/talos/stats.go +++ b/cmd/talosctl/cmd/talos/stats.go @@ -17,11 +17,11 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/peer" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/api/common" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/api/common" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // statsCmd represents the stats command. diff --git a/cmd/talosctl/cmd/talos/support.go b/cmd/talosctl/cmd/talos/support.go index 65e7187b1..746fa3bd5 100644 --- a/cmd/talosctl/cmd/talos/support.go +++ b/cmd/talosctl/cmd/talos/support.go @@ -24,9 +24,9 @@ import ( "github.com/spf13/cobra" "golang.org/x/sync/errgroup" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/machinery/client" - clusterresource "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/machinery/client" + clusterresource "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) var supportCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/time.go b/cmd/talosctl/cmd/talos/time.go index d34e0dff6..76725acb3 100644 --- a/cmd/talosctl/cmd/talos/time.go +++ b/cmd/talosctl/cmd/talos/time.go @@ -15,9 +15,9 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/peer" - "github.com/talos-systems/talos/pkg/cli" - timeapi "github.com/talos-systems/talos/pkg/machinery/api/time" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/cli" + timeapi "github.com/siderolabs/talos/pkg/machinery/api/time" + "github.com/siderolabs/talos/pkg/machinery/client" ) var timeCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/upgrade-k8s.go b/cmd/talosctl/cmd/talos/upgrade-k8s.go index dd9502f08..44dccdfe4 100644 --- a/cmd/talosctl/cmd/talos/upgrade-k8s.go +++ b/cmd/talosctl/cmd/talos/upgrade-k8s.go @@ -10,12 +10,12 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/cluster" - k8s "github.com/talos-systems/talos/pkg/cluster/kubernetes" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/cluster" + k8s "github.com/siderolabs/talos/pkg/cluster/kubernetes" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // upgradeK8sCmd represents the upgrade-k8s command. diff --git a/cmd/talosctl/cmd/talos/upgrade.go b/cmd/talosctl/cmd/talos/upgrade.go index f804c7bd9..ef1505a13 100644 --- a/cmd/talosctl/cmd/talos/upgrade.go +++ b/cmd/talosctl/cmd/talos/upgrade.go @@ -15,10 +15,10 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/peer" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/action" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/action" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/client" ) var upgradeCmdFlags struct { diff --git a/cmd/talosctl/cmd/talos/version.go b/cmd/talosctl/cmd/talos/version.go index 7a05557b9..2f272e0b7 100644 --- a/cmd/talosctl/cmd/talos/version.go +++ b/cmd/talosctl/cmd/talos/version.go @@ -14,9 +14,9 @@ import ( "google.golang.org/grpc/peer" "google.golang.org/protobuf/encoding/protojson" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/version" ) // versionCmdFlags represents the `talosctl version` command's flags. @@ -110,7 +110,7 @@ func init() { versionCmd.Flags().BoolVar(&versionCmdFlags.clientOnly, "client", false, "Print client version only") versionCmd.Flags().BoolVarP(&versionCmdFlags.insecure, "insecure", "i", false, "use Talos maintenance mode API") - // TODO remove when https://github.com/talos-systems/talos/issues/907 is implemented + // TODO remove when https://github.com/siderolabs/talos/issues/907 is implemented versionCmd.Flags().BoolVar(&versionCmdFlags.json, "json", false, "") cli.Should(versionCmd.Flags().MarkHidden("json")) diff --git a/cmd/talosctl/main.go b/cmd/talosctl/main.go index 9c68f1cde..9abf501d3 100644 --- a/cmd/talosctl/main.go +++ b/cmd/talosctl/main.go @@ -8,9 +8,9 @@ package main import ( "os" - "github.com/talos-systems/talos/cmd/talosctl/cmd" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/startup" + "github.com/siderolabs/talos/cmd/talosctl/cmd" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/startup" ) func main() { diff --git a/cmd/talosctl/pkg/mgmt/helpers/artifacts.go b/cmd/talosctl/pkg/mgmt/helpers/artifacts.go index 1a1a0f6db..8aae5317d 100644 --- a/cmd/talosctl/pkg/mgmt/helpers/artifacts.go +++ b/cmd/talosctl/pkg/mgmt/helpers/artifacts.go @@ -8,7 +8,7 @@ package helpers import ( "path/filepath" - "github.com/talos-systems/talos/pkg/machinery/gendata" + "github.com/siderolabs/talos/pkg/machinery/gendata" ) // ArtifactsPath is a path to artifacts output directory (set during the build). diff --git a/cmd/talosctl/pkg/mgmt/helpers/image.go b/cmd/talosctl/pkg/mgmt/helpers/image.go index 494b0d95c..a27c8f731 100644 --- a/cmd/talosctl/pkg/mgmt/helpers/image.go +++ b/cmd/talosctl/pkg/mgmt/helpers/image.go @@ -8,7 +8,7 @@ import ( "fmt" "os" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/pkg/version" ) // DefaultImage appends default image version. diff --git a/cmd/talosctl/pkg/mgmt/helpers/wireguard.go b/cmd/talosctl/pkg/mgmt/helpers/wireguard.go index 92650d859..0087f3e36 100644 --- a/cmd/talosctl/pkg/mgmt/helpers/wireguard.go +++ b/cmd/talosctl/pkg/mgmt/helpers/wireguard.go @@ -13,8 +13,8 @@ import ( sideronet "github.com/siderolabs/net" "golang.zx2c4.com/wireguard/wgctrl/wgtypes" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) // NewWireguardConfigBundle creates a new Wireguard config bundle. diff --git a/cmd/talosctl/pkg/talos/action/node.go b/cmd/talosctl/pkg/talos/action/node.go index d61f2d4be..27fff9ed7 100644 --- a/cmd/talosctl/pkg/talos/action/node.go +++ b/cmd/talosctl/pkg/talos/action/node.go @@ -16,11 +16,11 @@ import ( "golang.org/x/sync/errgroup" "google.golang.org/grpc/codes" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - "github.com/talos-systems/talos/pkg/machinery/api/common" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/reporter" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/pkg/machinery/api/common" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/reporter" ) // nodeTracker tracks the actions of a single node. diff --git a/cmd/talosctl/pkg/talos/action/tracker.go b/cmd/talosctl/pkg/talos/action/tracker.go index 2a5240680..aefde9da0 100644 --- a/cmd/talosctl/pkg/talos/action/tracker.go +++ b/cmd/talosctl/pkg/talos/action/tracker.go @@ -21,11 +21,11 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/backoff" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/global" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/reporter" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/global" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/reporter" ) var ( diff --git a/cmd/talosctl/pkg/talos/global/client.go b/cmd/talosctl/pkg/talos/global/client.go index e5525c630..dae2601cb 100644 --- a/cmd/talosctl/pkg/talos/global/client.go +++ b/cmd/talosctl/pkg/talos/global/client.go @@ -13,9 +13,9 @@ import ( "github.com/siderolabs/crypto/x509" "google.golang.org/grpc" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/client" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/client" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) // Args is a context for the Talos command line client. diff --git a/cmd/talosctl/pkg/talos/helpers/archive.go b/cmd/talosctl/pkg/talos/helpers/archive.go index b33919d90..f46d8009b 100644 --- a/cmd/talosctl/pkg/talos/helpers/archive.go +++ b/cmd/talosctl/pkg/talos/helpers/archive.go @@ -12,7 +12,7 @@ import ( "os" "path/filepath" - "github.com/talos-systems/talos/pkg/safepath" + "github.com/siderolabs/talos/pkg/safepath" ) // ExtractFileFromTarGz reads a single file data from an archive. diff --git a/cmd/talosctl/pkg/talos/helpers/checks.go b/cmd/talosctl/pkg/talos/helpers/checks.go index cf37fadff..1581ff854 100644 --- a/cmd/talosctl/pkg/talos/helpers/checks.go +++ b/cmd/talosctl/pkg/talos/helpers/checks.go @@ -13,9 +13,9 @@ import ( hashiversion "github.com/hashicorp/go-version" "google.golang.org/grpc/metadata" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/version" ) // FailIfMultiNodes checks if ctx contains multi-node request metadata. diff --git a/cmd/talosctl/pkg/talos/helpers/helpers_test.go b/cmd/talosctl/pkg/talos/helpers/helpers_test.go index da20bb8e9..1778ccb71 100644 --- a/cmd/talosctl/pkg/talos/helpers/helpers_test.go +++ b/cmd/talosctl/pkg/talos/helpers/helpers_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/assert" yaml "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/cmd/talosctl/pkg/talos/helpers" + "github.com/siderolabs/talos/cmd/talosctl/pkg/talos/helpers" ) type cfg struct { diff --git a/cmd/talosctl/pkg/talos/helpers/mode.go b/cmd/talosctl/pkg/talos/helpers/mode.go index 97cdf3d4a..83ba4f06a 100644 --- a/cmd/talosctl/pkg/talos/helpers/mode.go +++ b/cmd/talosctl/pkg/talos/helpers/mode.go @@ -12,8 +12,8 @@ import ( "github.com/siderolabs/gen/maps" "github.com/spf13/cobra" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/api/machine" ) // InteractiveMode fake mode value for the interactive config mode. diff --git a/cmd/talosctl/pkg/talos/helpers/resources.go b/cmd/talosctl/pkg/talos/helpers/resources.go index a6e5c2886..d6b566ae2 100644 --- a/cmd/talosctl/pkg/talos/helpers/resources.go +++ b/cmd/talosctl/pkg/talos/helpers/resources.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/state" "google.golang.org/grpc/metadata" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/client" ) // ForEachResource gets resources from the controller runtime and runs a callback for each resource. diff --git a/cmd/talosctl/pkg/talos/helpers/stream.go b/cmd/talosctl/pkg/talos/helpers/stream.go index 6a3258030..bd04ca9e8 100644 --- a/cmd/talosctl/pkg/talos/helpers/stream.go +++ b/cmd/talosctl/pkg/talos/helpers/stream.go @@ -12,9 +12,9 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/codes" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // Stream implements the contract for the grpc stream of a specific type. diff --git a/go.mod b/go.mod index ac324745b..40d28e53a 100644 --- a/go.mod +++ b/go.mod @@ -1,16 +1,16 @@ -module github.com/talos-systems/talos +module github.com/siderolabs/talos go 1.19 replace ( // Use nested module. - github.com/talos-systems/talos/pkg/machinery => ./pkg/machinery + github.com/siderolabs/talos/pkg/machinery => ./pkg/machinery // 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 gopkg.in/yaml.v3 => github.com/unix4ever/yaml v0.0.0-20220527175918-f17b0f05cf2c - // See https://github.com/talos-systems/go-loadbalancer/pull/4 + // See https://github.com/siderolabs/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 ) @@ -40,7 +40,7 @@ require ( github.com/containernetworking/plugins v1.1.1 github.com/coreos/go-iptables v0.6.0 github.com/coreos/go-semver v0.3.0 - github.com/cosi-project/runtime v0.2.0-alpha.2 + github.com/cosi-project/runtime v0.2.0-alpha.3 github.com/docker/distribution v2.8.1+incompatible github.com/docker/docker v20.10.20+incompatible github.com/docker/go-connections v0.4.0 @@ -106,11 +106,11 @@ require ( github.com/siderolabs/go-tail v0.1.0 github.com/siderolabs/grpc-proxy v0.4.0 github.com/siderolabs/net v0.4.0 - github.com/siderolabs/siderolink v0.2.0 + github.com/siderolabs/siderolink v0.3.0 + github.com/siderolabs/talos/pkg/machinery v1.3.0-alpha.1 github.com/spf13/cobra v1.6.1 github.com/spf13/pflag v1.0.5 github.com/stretchr/testify v1.8.1 - github.com/talos-systems/talos/pkg/machinery v1.3.0-alpha.1 github.com/u-root/u-root v0.10.0 github.com/vishvananda/netlink v1.2.1-beta.2 github.com/vmware-tanzu/sonobuoy v0.56.10 @@ -140,9 +140,9 @@ require ( ) require ( - cloud.google.com/go v0.102.1 // indirect - cloud.google.com/go/iam v0.3.0 // indirect - cloud.google.com/go/storage v1.26.0 // indirect + cloud.google.com/go v0.105.0 // indirect + cloud.google.com/go/iam v0.6.0 // indirect + cloud.google.com/go/storage v1.27.0 // indirect github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect github.com/MakeNowJust/heredoc v1.0.0 // indirect github.com/Microsoft/go-winio v0.5.2 // indirect @@ -191,12 +191,12 @@ require ( github.com/google/gnostic v0.5.7-v3refs // indirect github.com/google/gofuzz v1.2.0 // indirect github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect - github.com/googleapis/enterprise-certificate-proxy v0.1.0 // indirect - github.com/googleapis/gax-go/v2 v2.4.0 // indirect + github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect + github.com/googleapis/gax-go/v2 v2.6.0 // indirect github.com/gorilla/mux v1.8.0 // indirect github.com/gosuri/uilive v0.0.4 // indirect github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect - github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.12.0 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-immutable-radix v1.3.1 // indirect github.com/hashicorp/go-memdb v1.3.4 // indirect @@ -275,16 +275,16 @@ require ( go.opentelemetry.io/otel/trace v1.10.0 // indirect go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect go.uber.org/multierr v1.8.0 // indirect - golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect + golang.org/x/crypto v0.1.0 // indirect golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect - golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1 // indirect + golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 // indirect golang.org/x/text v0.4.0 // indirect golang.org/x/tools v0.1.12 // indirect - golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect - golang.zx2c4.com/wireguard v0.0.0-20220407013110-ef5c587f782d // indirect - google.golang.org/api v0.96.0 // indirect + golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect + golang.zx2c4.com/wireguard v0.0.0-20220920152132-bb719d3a6e2c // indirect + google.golang.org/api v0.100.0 // indirect google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto v0.0.0-20221025140454-527a21cfbd71 // indirect + google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/ini.v1 v1.66.2 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect diff --git a/go.sum b/go.sum index 0ba4df69f..b96a5bcbd 100644 --- a/go.sum +++ b/go.sum @@ -14,42 +14,22 @@ cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKV cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= -cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= -cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= -cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= -cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= -cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= -cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= -cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= -cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= -cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= -cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= -cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= -cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= -cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= -cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= -cloud.google.com/go v0.102.1 h1:vpK6iQWv/2uUeFJth4/cBHsQAGjn1iIE6AAlxipRaA0= -cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= +cloud.google.com/go v0.105.0 h1:DNtEKRBAAzeS4KyIory52wWHuClNaXJ5x1F7xa4q+5Y= +cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= -cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= -cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= -cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= -cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= -cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= cloud.google.com/go/compute v1.10.0 h1:aoLIYaA1fX3ywihqpBk2APQKOo20nXsp1GEZQbx5Jk4= cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk= -cloud.google.com/go/iam v0.3.0 h1:exkAomrVUuzx9kWFI1wm3KI0uoDeUFPB4kKGzx6x+Gc= -cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= +cloud.google.com/go/iam v0.6.0 h1:nsqQC88kT5Iwlm4MeNGTpfMWddp6NB/UOLFTH6m1QfQ= +cloud.google.com/go/iam v0.6.0/go.mod h1:+1AH33ueBne5MzYccyMHtEKqLE4/kJOibtffMHDMFMc= +cloud.google.com/go/longrunning v0.1.1 h1:y50CXG4j0+qvEukslYFBCrzaXX0qpFbBzc3PchSu/LE= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= @@ -59,9 +39,8 @@ cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0Zeo cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= -cloud.google.com/go/storage v1.26.0 h1:lYAGjknyDJirSzfwUlkv4Nsnj7od7foxQNH/fqZqles= -cloud.google.com/go/storage v1.26.0/go.mod h1:mk/N7YwIKEWyTvXAWQCIeiCTdLoRH6Pd5xmSnolQLTI= +cloud.google.com/go/storage v1.27.0 h1:YOO045NZI9RKfCj1c5A/ZtuuENUc8OAW+gHdGnDgyMQ= +cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= github.com/Azure/azure-sdk-for-go v16.2.1+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= @@ -200,14 +179,9 @@ github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDk github.com/cloudflare/circl v1.1.0 h1:bZgT/A+cikZnKIwn7xL2OBj012Bmvho/o6RpRvv3GKY= github.com/cloudflare/circl v1.1.0/go.mod h1:prBCrKB9DV4poKZY1l9zBXg2QJY7mvgRvtMxxK7fi4I= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= -github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= github.com/cockroachdb/datadriven v0.0.0-20200714090401-bf6692d28da5 h1:xD/lrqdvwsc+O2bjSSi3YqY73Ke3LAiSCx49aCesA0E= github.com/cockroachdb/datadriven v0.0.0-20200714090401-bf6692d28da5/go.mod h1:h6jFvWxBdQXxjopDMZyH2UVceIRfR84bdzbkoKrsWNo= @@ -335,8 +309,8 @@ github.com/coreos/go-systemd/v22 v22.3.2 h1:D9/bQk5vlXQFZ6Kwuu6zaiXJ9oTPe68++AzA github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/cosi-project/runtime v0.2.0-alpha.2 h1:B27kw7knAukaHiXwKP51hGh4q2RMaY+wPF+beXBjZMI= -github.com/cosi-project/runtime v0.2.0-alpha.2/go.mod h1:jv79UECqzQaAeVwbdawUGmEBCX0fl7J7JBysnOYIM4U= +github.com/cosi-project/runtime v0.2.0-alpha.3 h1:dtVWvyhB79C95rCxe9EPW4zSWpvYLuQlHeDbu7k1uPo= +github.com/cosi-project/runtime v0.2.0-alpha.3/go.mod h1:hLD9uvqKG0EESZnqVDCpFlKEMjFEAlr2jIfdHG9gDpI= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2 h1:p1EgwI/C7NhT0JmVkwCD2ZBK8j4aeHQX2pMHHBfMQ6w= @@ -400,12 +374,10 @@ github.com/emicklei/go-restful/v3 v3.9.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= -github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/evanphx/json-patch v4.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= github.com/evanphx/json-patch v5.6.0+incompatible h1:jBYDEEiFBPxA0v50tFdvOzQQTCvpL6mnFh5mB2/l16U= @@ -516,7 +488,6 @@ github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -537,7 +508,6 @@ github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaS github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.1 h1:gK4Kx5IaGY9CD5sPJ36FHiBJ6ZXl0kilRiiCj+jdYp4= @@ -557,7 +527,6 @@ github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= -github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-containerregistry v0.5.1/go.mod h1:Ct15B4yir3PLOP5jsy0GNeYVaIZs/MK/Jz5any1wFW0= @@ -570,9 +539,7 @@ github.com/google/gopacket v1.1.19/go.mod h1:iJ8V8n6KS+z2U1A8pUwu8bW5SyEMkXJB8Yo github.com/google/martian v2.1.0+incompatible h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.2.1 h1:d8MncMlErDFTwQGBK1xhv026j9kqhvw1Qv9IbWT1VLQ= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/nftables v0.0.0-20221015190445-4f5cd5826fbd h1:EWP0uTXu3ItJlSimbOvSFVejL5/Bc8eMui48EESr9R4= github.com/google/nftables v0.0.0-20221015190445-4f5cd5826fbd/go.mod h1:b97ulCCFipUC+kSin+zygkvUVpx0vyIAwxXFdY3PlNc= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= @@ -582,14 +549,7 @@ github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ= @@ -599,19 +559,13 @@ github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.1.0 h1:zO8WHNx/MYiAKJ3d5spxZXZE6KHmIQGQcAzwUzV7qQw= -github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= +github.com/googleapis/enterprise-certificate-proxy v0.2.0 h1:y8Yozv7SZtlU//QXbezB6QkpuE6jMD2/gfzk4AftXjs= +github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= -github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= -github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= -github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= -github.com/googleapis/gax-go/v2 v2.4.0 h1:dS9eYAjhrE2RjmzYw2XAPvcXfmcQLtFEQWn0CR82awk= -github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= +github.com/googleapis/gax-go/v2 v2.6.0 h1:SXk3ABtQYDT/OH8jAyvEOQ58mgawq5C4o/4/89qN2ZU= +github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= github.com/googleapis/gnostic v0.4.1/go.mod h1:LRhVm6pbyptWbWbuZ38d1eyptfvIytN3ir6b65WBswg= -github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/handlers v0.0.0-20150720190736-60c7bfde3e33/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ= github.com/gorilla/mux v1.7.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= @@ -635,8 +589,8 @@ github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgf github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 h1:lLT7ZLSzGLI08vc9cpd+tYmNWjdKDqyr/2L+f6U12Fk= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.12.0 h1:kr3j8iIMR4ywO/O0rvksXaJvauGGCMg2zAZIiNZ9uIQ= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.12.0/go.mod h1:ummNFgdgLhhX7aIiy35vVmQNS0rWXknfPE0qe6fmFXg= github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= @@ -1092,8 +1046,8 @@ github.com/siderolabs/net v0.4.0 h1:1bOgVay/ijPkJz4qct98nHsiB/ysLQU0KLoBC4qLm7I= github.com/siderolabs/net v0.4.0/go.mod h1:/ibG+Hm9HU27agp5r9Q3eZicEfjquzNzQNux5uEk0kM= github.com/siderolabs/protoenc v0.2.0 h1:QFxWIAo//12+/bm27GNYoK/TpQGTYsRrrZCu9jSghvU= github.com/siderolabs/protoenc v0.2.0/go.mod h1:mu4gc6pJxhdJYpuloacKE4jsJojj87qDXwn8LUvs2bY= -github.com/siderolabs/siderolink v0.2.0 h1:IbiHdiMSpyXWPtuNxUvhm9tP5jCG2G3ITPCESbIL61E= -github.com/siderolabs/siderolink v0.2.0/go.mod h1:/ujfvQ/pGLP1NZfSYPaV76LNq0MBU+Fmy37I+P1WzO4= +github.com/siderolabs/siderolink v0.3.0 h1:dYaTaO9quQY3oCveYc9wOohdKziqfMdV613N4inEHS4= +github.com/siderolabs/siderolink v0.3.0/go.mod h1:LrkE9BoHzfi/m43EQx/Fk6kSal6Uvthu5AtRC3W5GcI= github.com/sirupsen/logrus v1.0.4-0.20170822132746-89742aefa4b2/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= github.com/sirupsen/logrus v1.0.6/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= @@ -1162,7 +1116,6 @@ github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69 github.com/syndtr/gocapability v0.0.0-20170704070218-db04d3cc01c8/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= github.com/syndtr/gocapability v0.0.0-20180916011248-d98352740cb2/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= -github.com/talos-systems/go-retry v0.3.1 h1:GjjyHB8i1CJpb1O5qYPMljq74cRQ5uiDoyMaWddA5FA= github.com/tchap/go-patricia v2.2.6+incompatible/go.mod h1:bmLyhP68RS6kStMGxByiQ23RP/odRBOTVjwp2cDyi6I= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= @@ -1245,7 +1198,6 @@ go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.25.0/go.mod h1:E5NNboN0UqSAki0Atn9kVwaN7I+l25gGxDqBueo/74E= @@ -1297,8 +1249,9 @@ golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 h1:kUhD7nTDoI3fVd9G4ORWrbV5NY0liEs/Jg2pv5f+bBA= golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.1.0 h1:MDRAIl0xIo9Io2xV565hzXHw3zVseKrJKodhohM5CjU= +golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -1322,7 +1275,6 @@ golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHl golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= @@ -1334,8 +1286,6 @@ golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzB golang.org/x/mod v0.1.1-0.20191209134235-331c550502dd/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 h1:6zppjxzCulZykYSLyVDYbneBfbaBIQPYMevg0bEwv2s= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= @@ -1383,29 +1333,18 @@ golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81R golang.org/x/net v0.0.0-20201006153459-a7d1128ccaa0/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201010224723-4f7140c49acb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= golang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod h1:OJAsFXCWl8Ukc7SiCT/9KSuxbyM7479/AVlXFRxuMCk= -golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210825183410-e898025ed96a/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210928044308-7d9f5e0b762b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/net v0.0.0-20220923203811-8be639271d50/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/net v0.1.0 h1:hZ/3BUoy5aId7sCpA/Tc5lt8DkFgdVS2onTpJsZ/fl0= golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= @@ -1414,24 +1353,10 @@ golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4Iltr golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1 h1:lxqLZaMad/dJHMFZH0NiNpiEZI/nhgWhe4wgzpE+MuA= -golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 h1:nt+Q6cXKz4MosCSpnbMtqiQ8Oz0pxTef2B4Vca2lvfk= +golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1443,7 +1368,6 @@ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220923202941-7f9b1623fab7/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1512,7 +1436,6 @@ golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200817155316-9781c653f443/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200916030750-2334cc1a136f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200922070232-aee5d888a860/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1525,14 +1448,8 @@ golang.org/x/sys v0.0.0-20201117170446-d9b008d0a637/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201202213521-69691e467435/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1540,38 +1457,24 @@ golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210426230700-d19ff857e887/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210525143221-35b2ab0089ea/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210906170528-6f6e22806c34/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211116061358-0a5406a5449c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220318055525-2edf467146b5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220319134239-a9b59b0215f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220517195934-5e4e11fc645e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -1655,32 +1558,21 @@ golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roY golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= golang.org/x/tools v0.0.0-20200916195026-c9a70fc28ce3/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= -golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.12 h1:VveCTK38A2rkS8ZqFY25HIDFscX5X9OoEhJd3quQmXU= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f h1:uF6paiQQebLeSXkrTqHqz0MXhXXS1KgF41eUdBNvxK0= -golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.zx2c4.com/wireguard v0.0.0-20220407013110-ef5c587f782d h1:q4JksJ2n0fmbXC0Aj0eOs6E0AcPqnKglxWXWFqGD6x0= -golang.zx2c4.com/wireguard v0.0.0-20220407013110-ef5c587f782d/go.mod h1:bVQfyl2sCM/QIIGHpWbFGfHPuDvqnCNkT6MQLTCjO/U= +golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= +golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +golang.zx2c4.com/wireguard v0.0.0-20220920152132-bb719d3a6e2c h1:Okh6a1xpnJslG9Mn84pId1Mn+Q8cvpo4HCeeFWHo0cA= +golang.zx2c4.com/wireguard v0.0.0-20220920152132-bb719d3a6e2c/go.mod h1:enML0deDxY1ux+B6ANGiwtg0yAJi1rctkTpcHNAVPyg= golang.zx2c4.com/wireguard/wgctrl v0.0.0-20220916014741-473347a5e6e3 h1:ARxNdT6I+00ZyY5yRT/ZECkQti4iGrMZX9dvG/ao/LY= golang.zx2c4.com/wireguard/wgctrl v0.0.0-20220916014741-473347a5e6e3/go.mod h1:yp4gl6zOlnDGOZeWeDfMwQcsdOIQnMdhuPx9mwwWBL4= google.golang.org/api v0.0.0-20160322025152-9bf6e6e569ff/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= @@ -1700,31 +1592,8 @@ google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0M google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= -google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= -google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= -google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= -google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= -google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= -google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= -google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= -google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= -google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= -google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= -google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= -google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= -google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= -google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= -google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= -google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= -google.golang.org/api v0.96.0 h1:F60cuQPJq7K7FzsxMYHAUJSiXh2oKctHxBMbDygxhfM= -google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.100.0 h1:LGUYIrbW9pzYQQ8NWXlaIVkgnfubVBZbMFb9P8TK374= +google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -1768,60 +1637,11 @@ google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7Fc google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201110150050-8816d57aaa9a/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= -google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= -google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= -google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20221025140454-527a21cfbd71 h1:GEgb2jF5zxsFJpJfg9RoDDWm7tiwc/DDSTE2BtLUkXU= -google.golang.org/genproto v0.0.0-20221025140454-527a21cfbd71/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= +google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c h1:QgY/XxIAIeccR+Ca/rDdKubLIU9rcJ3xfy1DC/Wd2Oo= +google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c/go.mod h1:CGI5F/G+E5bKwmfYo09AXuVN4dD894kIKUFmVbP2/Fo= google.golang.org/grpc v0.0.0-20160317175043-d3ddb4469d5a/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= @@ -1838,29 +1658,15 @@ google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKa google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= -google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= google.golang.org/grpc v1.41.0/go.mod h1:U3l9uK9J0sini8mHphKoXyaqDA/8VyGnDee1zzIUK6k= -google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= -google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= google.golang.org/grpc v1.50.1 h1:DS/BukOZWp8s6p4Dt/tOaJaTQyPyOoCcrjroHuCeLzY= google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -1874,7 +1680,6 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w= google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U= diff --git a/hack/chglog/config.yml b/hack/chglog/config.yml index 3d8eda040..2c89a3d9d 100755 --- a/hack/chglog/config.yml +++ b/hack/chglog/config.yml @@ -2,7 +2,7 @@ style: github template: CHANGELOG.tpl.md info: title: CHANGELOG - repository_url: https://github.com/talos-systems/talos + repository_url: https://github.com/siderolabs/talos options: commits: # filters: @@ -25,4 +25,4 @@ options: - Subject notes: keywords: - - BREAKING CHANGE \ No newline at end of file + - BREAKING CHANGE diff --git a/hack/cloud-image-uploader/go.mod b/hack/cloud-image-uploader/go.mod index 46e88375c..132766f4c 100644 --- a/hack/cloud-image-uploader/go.mod +++ b/hack/cloud-image-uploader/go.mod @@ -1,12 +1,12 @@ -module github.com/talos-systems/cloud-image-uploader +module github.com/siderolabs/cloud-image-uploader go 1.19 require ( github.com/aws/aws-sdk-go v1.44.122 github.com/google/uuid v1.3.0 + github.com/siderolabs/go-retry v0.3.2 github.com/spf13/pflag v1.0.5 - github.com/talos-systems/go-retry v0.3.1 golang.org/x/sync v0.1.0 ) diff --git a/hack/cloud-image-uploader/go.sum b/hack/cloud-image-uploader/go.sum index 103f7fef7..1a621fad9 100644 --- a/hack/cloud-image-uploader/go.sum +++ b/hack/cloud-image-uploader/go.sum @@ -12,11 +12,11 @@ github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfC github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/siderolabs/go-retry v0.3.2 h1:FzWslFm4y8RY1wU0gIskm0oZHOpsSibZqlR8N8/k4Eo= +github.com/siderolabs/go-retry v0.3.2/go.mod h1:Ac8HIh0nAYDQm04FGZHNofVAXteyd4xR9oujTRrtvK0= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/talos-systems/go-retry v0.3.1 h1:GjjyHB8i1CJpb1O5qYPMljq74cRQ5uiDoyMaWddA5FA= -github.com/talos-systems/go-retry v0.3.1/go.mod h1:HiXQqyVStZ35uSY/MTLWVvQVmC3lIW2MS5VdDaMtoKM= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220909164309-bea034e7d591 h1:D0B/7al0LLrVC8aWF4+oxpv/m8bc7ViFfVS8/gXGdqI= golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= diff --git a/hack/docgen/go.mod b/hack/docgen/go.mod index b8a44a4e9..39276cbed 100644 --- a/hack/docgen/go.mod +++ b/hack/docgen/go.mod @@ -1,4 +1,4 @@ -module github.com/talos-systems/talos-hack-docgen +module github.com/siderolabs/talos-hack-docgen go 1.19 diff --git a/hack/docgen/main.go b/hack/docgen/main.go index be43b0393..e702a1acd 100644 --- a/hack/docgen/main.go +++ b/hack/docgen/main.go @@ -31,7 +31,7 @@ var tpl = `// This Source Code Form is subject to the terms of the Mozilla Publi package {{ .Package }} import ( - "github.com/talos-systems/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" ) {{ $tick := "` + "`" + `" -}} diff --git a/hack/gotagsrewrite/go.mod b/hack/gotagsrewrite/go.mod index c04c355ba..5708a1e36 100644 --- a/hack/gotagsrewrite/go.mod +++ b/hack/gotagsrewrite/go.mod @@ -1,4 +1,4 @@ -module github.com/talos-systems/gotagsrewrite +module github.com/siderolabs/gotagsrewrite go 1.19 diff --git a/hack/structprotogen/go.mod b/hack/structprotogen/go.mod index e384884f5..e8a5713fd 100644 --- a/hack/structprotogen/go.mod +++ b/hack/structprotogen/go.mod @@ -1,17 +1,17 @@ -module github.com/talos-systems/structprotogen +module github.com/siderolabs/structprotogen go 1.19 require ( github.com/fatih/structtag v1.2.0 - github.com/spf13/cobra v1.5.0 - golang.org/x/tools v0.1.12 + github.com/spf13/cobra v1.6.1 + golang.org/x/tools v0.2.0 gopkg.in/typ.v4 v4.2.0 ) require ( - github.com/inconshreveable/mousetrap v1.0.0 // indirect + github.com/inconshreveable/mousetrap v1.0.1 // indirect github.com/spf13/pflag v1.0.5 // indirect - golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect - golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8 // indirect + golang.org/x/mod v0.6.0 // indirect + golang.org/x/sys v0.1.0 // indirect ) diff --git a/hack/structprotogen/go.sum b/hack/structprotogen/go.sum index 0c0fe942b..cd4710c55 100644 --- a/hack/structprotogen/go.sum +++ b/hack/structprotogen/go.sum @@ -1,20 +1,20 @@ github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/fatih/structtag v1.2.0 h1:/OdNE99OxoI/PqaW/SuSK9uxxT3f/tcSZgon/ssNSx4= github.com/fatih/structtag v1.2.0/go.mod h1:mBJUNpUnHmRKrKlQQlmCrh5PuhftFbNv8Ys4/aAZl94= -github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= -github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= +github.com/inconshreveable/mousetrap v1.0.1 h1:U3uMjPSQEBMNp1lFxmllqCPM6P5u/Xq7Pgzkat/bFNc= +github.com/inconshreveable/mousetrap v1.0.1/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/spf13/cobra v1.5.0 h1:X+jTBEBqF0bHN+9cSMgmfuvv2VHJ9ezmFNf9Y/XstYU= -github.com/spf13/cobra v1.5.0/go.mod h1:dWXEIy2H428czQCjInthrTRUg7yKbok+2Qi/yBIJoUM= +github.com/spf13/cobra v1.6.1 h1:o94oiPyS4KD1mPy2fmcYYHHfCxLqYjJOhGsCHFZtEzA= +github.com/spf13/cobra v1.6.1/go.mod h1:IOw/AERYS7UzyrGinqmz6HLUo219MORXGxhbaJUqzrY= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= -golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 h1:6zppjxzCulZykYSLyVDYbneBfbaBIQPYMevg0bEwv2s= -golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8 h1:h+EGohizhe9XlX18rfpa8k8RAc5XyaeamM+0VHRd4lc= -golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/tools v0.1.12 h1:VveCTK38A2rkS8ZqFY25HIDFscX5X9OoEhJd3quQmXU= -golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/mod v0.6.0 h1:b9gGHsz9/HhJ3HF5DHQytPpuwocVTChQJK3AvoLRD5I= +golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= +golang.org/x/sys v0.1.0 h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U= +golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/tools v0.2.0 h1:G6AHpWxTMGY1KyEYoAQ5WTtIekUUvDNjan3ugu60JvE= +golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/typ.v4 v4.2.0 h1:rT3IApRQ7JZUIMpX6NjAIZ5UvoRjvyt083oy1lcS+kQ= gopkg.in/typ.v4 v4.2.0/go.mod h1:wolXe8DlewxRCjA7SOiT3zjrZ0eQJZcr8cmV6bQWJUM= -gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/hack/structprotogen/main.go b/hack/structprotogen/main.go index fdbc2e32b..166e7db9e 100644 --- a/hack/structprotogen/main.go +++ b/hack/structprotogen/main.go @@ -15,17 +15,17 @@ import ( "github.com/spf13/cobra" - "github.com/talos-systems/structprotogen/ast" - "github.com/talos-systems/structprotogen/loader" - "github.com/talos-systems/structprotogen/proto" - "github.com/talos-systems/structprotogen/types" + "github.com/siderolabs/structprotogen/ast" + "github.com/siderolabs/structprotogen/loader" + "github.com/siderolabs/structprotogen/proto" + "github.com/siderolabs/structprotogen/types" ) // rootCmd represents the base command when called without any subcommands. var rootCmd = &cobra.Command{ Use: "structprotogen path dest", Short: "This CLI is used to generate proto files from Go structs into one proto file", - Example: "gotagsrewrite github.com/talos-systems/talos/pkg/machinery/resources/... ./api/resource/definitions", + Example: "gotagsrewrite github.com/siderolabs/talos/pkg/machinery/resources/... ./api/resource/definitions", Args: cobra.ExactArgs(2), Version: "v1.0.0", RunE: func(cmd *cobra.Command, args []string) error { diff --git a/hack/structprotogen/proto/proto.go b/hack/structprotogen/proto/proto.go index 3b04c9ed7..759f5875b 100644 --- a/hack/structprotogen/proto/proto.go +++ b/hack/structprotogen/proto/proto.go @@ -14,8 +14,8 @@ import ( "gopkg.in/typ.v4/slices" - "github.com/talos-systems/structprotogen/sliceutil" - "github.com/talos-systems/structprotogen/types" + "github.com/siderolabs/structprotogen/sliceutil" + "github.com/siderolabs/structprotogen/types" ) // Pkg represents a protobuf package. @@ -60,7 +60,7 @@ func (p *Pkg) WriteDebug(w io.Writer) { fmt.Fprint(w, "syntax = \"proto3\";\n\n") fmt.Fprintf(w, "package talos.resource.definitions.%s; // %s\n\n", p.Name, p.GoPkg) - fmt.Fprintf(w, "option go_package = \"github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/%s\";\n\n", pkgName) // TODO: insert proper path + fmt.Fprintf(w, "option go_package = \"github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/%s\";\n\n", pkgName) // TODO: insert proper path if p.imports.Len() > 0 { for i := 0; i < p.imports.Len(); i++ { @@ -87,7 +87,7 @@ func (p *Pkg) Format(w io.Writer) { fmt.Fprint(w, "syntax = \"proto3\";\n\n") fmt.Fprintf(w, "package talos.resource.definitions.%s;\n\n", p.Name) - fmt.Fprintf(w, "option go_package = \"github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/%s\";\n\n", pkgName) // TODO: insert proper path + fmt.Fprintf(w, "option go_package = \"github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/%s\";\n\n", pkgName) // TODO: insert proper path if p.imports.Len() > 0 { for i := 0; i < p.imports.Len(); i++ { @@ -427,57 +427,57 @@ func formatBasicTypeName(typPkg string, typ string) (importPath, fullName string return "google/protobuf/duration.proto", "google.protobuf.Duration" case typeData{"io/fs", "FileMode"}: return "", "uint32" //nolint:goconst - case typeData{"github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine", "Type"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine", "Type"}: return enumsProto, "talos.resource.definitions.enums.MachineType" - case typeData{"github.com/talos-systems/talos/pkg/machinery/resources/kubespan", "PeerState"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/resources/kubespan", "PeerState"}: return enumsProto, "talos.resource.definitions.enums.KubespanPeerState" - case typeData{"github.com/talos-systems/talos/pkg/machinery/resources/network", "ConfigLayer"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/resources/network", "ConfigLayer"}: return enumsProto, "talos.resource.definitions.enums.NetworkConfigLayer" - case typeData{"github.com/talos-systems/talos/pkg/machinery/resources/network", "Operator"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/resources/network", "Operator"}: return enumsProto, "talos.resource.definitions.enums.NetworkOperator" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "Family"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "Family"}: return enumsProto, "talos.resource.definitions.enums.NethelpersFamily" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "AddressFlags"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "AddressFlags"}: return "", "uint32" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "Scope"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "Scope"}: return enumsProto, "talos.resource.definitions.enums.NethelpersScope" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "ADSelect"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "ADSelect"}: return enumsProto, "talos.resource.definitions.enums.NethelpersADSelect" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "ARPAllTargets"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "ARPAllTargets"}: return enumsProto, "talos.resource.definitions.enums.NethelpersARPAllTargets" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "ARPValidate"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "ARPValidate"}: return enumsProto, "talos.resource.definitions.enums.NethelpersARPValidate" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "FailOverMAC"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "FailOverMAC"}: return enumsProto, "talos.resource.definitions.enums.NethelpersFailOverMAC" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "BondXmitHashPolicy"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "BondXmitHashPolicy"}: return enumsProto, "talos.resource.definitions.enums.NethelpersBondXmitHashPolicy" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "LACPRate"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "LACPRate"}: return enumsProto, "talos.resource.definitions.enums.NethelpersLACPRate" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "BondMode"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "BondMode"}: return enumsProto, "talos.resource.definitions.enums.NethelpersBondMode" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "PrimaryReselect"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "PrimaryReselect"}: return enumsProto, "talos.resource.definitions.enums.NethelpersPrimaryReselect" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "LinkType"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "LinkType"}: return enumsProto, "talos.resource.definitions.enums.NethelpersLinkType" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "Duplex"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "Duplex"}: return enumsProto, "talos.resource.definitions.enums.NethelpersDuplex" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "LinkFlags"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "LinkFlags"}: return "", "uint32" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "OperationalState"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "OperationalState"}: return enumsProto, "talos.resource.definitions.enums.NethelpersOperationalState" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "Port"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "Port"}: return enumsProto, "talos.resource.definitions.enums.NethelpersPort" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "RouteFlags"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "RouteFlags"}: return "", "uint32" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "RouteProtocol"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "RouteProtocol"}: return enumsProto, "talos.resource.definitions.enums.NethelpersRouteProtocol" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "RoutingTable"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "RoutingTable"}: return enumsProto, "talos.resource.definitions.enums.NethelpersRoutingTable" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "RouteType"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "RouteType"}: return enumsProto, "talos.resource.definitions.enums.NethelpersRouteType" - case typeData{"github.com/talos-systems/talos/pkg/machinery/nethelpers", "VLANProtocol"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/nethelpers", "VLANProtocol"}: return enumsProto, "talos.resource.definitions.enums.NethelpersVLANProtocol" - case typeData{"github.com/talos-systems/talos/pkg/machinery/resources/runtime", "MachineStage"}: + case typeData{"github.com/siderolabs/talos/pkg/machinery/resources/runtime", "MachineStage"}: return enumsProto, "talos.resource.definitions.enums.RuntimeMachineStage" default: return "", "" diff --git a/hack/structprotogen/types/types.go b/hack/structprotogen/types/types.go index 9849bb6c6..772c50311 100644 --- a/hack/structprotogen/types/types.go +++ b/hack/structprotogen/types/types.go @@ -15,8 +15,8 @@ import ( "golang.org/x/tools/go/packages" "gopkg.in/typ.v4/slices" - "github.com/talos-systems/structprotogen/ast" - "github.com/talos-systems/structprotogen/sliceutil" + "github.com/siderolabs/structprotogen/ast" + "github.com/siderolabs/structprotogen/sliceutil" ) // PkgDecl is a struct which contains package path and tagged struct declarations. @@ -61,7 +61,7 @@ func forEachTaggedStruct(taggedStructs ast.TaggedStructs, pkg *packages.Package, obj := scope.Lookup(name) // This is special resource - ignore it. - if pkg.PkgPath == "github.com/talos-systems/talos/pkg/machinery/resources/network" && name == "DeviceConfigSpecSpec" { + if pkg.PkgPath == "github.com/siderolabs/talos/pkg/machinery/resources/network" && name == "DeviceConfigSpecSpec" { continue } diff --git a/hack/test/digitalrebar/bootenv.yaml b/hack/test/digitalrebar/bootenv.yaml index 94d8c34ff..5079b9760 100644 --- a/hack/test/digitalrebar/bootenv.yaml +++ b/hack/test/digitalrebar/bootenv.yaml @@ -19,7 +19,7 @@ OS: Version: '0.6' IsoFile: 'talos.tar.gz' IsoSha256: '401ec26cef179e0a66d44f020dad47f7322f4cfc84826242e9c83d6cce4f2547' - IsoUrl: 'https://github.com/talos-systems/talos/releases/download/v0.6.0/boot.tar.gz' + IsoUrl: 'https://github.com/siderolabs/talos/releases/download/v0.6.0/boot.tar.gz' SupportedArchitectures: {} Templates: - Name: 'pxelinux' diff --git a/hack/test/e2e-gcp.sh b/hack/test/e2e-gcp.sh index 3d9de4df0..bf5c9caa7 100755 --- a/hack/test/e2e-gcp.sh +++ b/hack/test/e2e-gcp.sh @@ -36,8 +36,8 @@ function setup { ${CLUSTERCTL} generate cluster ${NAME_PREFIX} \ --kubeconfig /tmp/e2e/docker/kubeconfig \ - --from https://github.com/talos-systems/cluster-api-templates/blob/v1beta1/gcp/standard/standard.yaml > ${TMP}/cluster.yaml - + --from https://github.com/siderolabs/cluster-api-templates/blob/v1beta1/gcp/standard/standard.yaml > ${TMP}/cluster.yaml + } setup diff --git a/hack/test/e2e.sh b/hack/test/e2e.sh index 4bce1a871..f1ef2987b 100755 --- a/hack/test/e2e.sh +++ b/hack/test/e2e.sh @@ -14,7 +14,7 @@ # - INSTALLER_IMAGE # # Some environment variables set in this file (e. g. TALOS_VERSION and KUBERNETES_VERSION) -# are referenced by https://github.com/talos-systems/cluster-api-templates. +# are referenced by https://github.com/siderolabs/cluster-api-templates. # See other e2e-*.sh scripts. set -eoux pipefail diff --git a/internal/app/apid/main.go b/internal/app/apid/main.go index e4162f6ef..d7b23ff77 100644 --- a/internal/app/apid/main.go +++ b/internal/app/apid/main.go @@ -27,14 +27,14 @@ import ( "google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials/insecure" - apidbackend "github.com/talos-systems/talos/internal/app/apid/pkg/backend" - "github.com/talos-systems/talos/internal/app/apid/pkg/director" - "github.com/talos-systems/talos/internal/app/apid/pkg/provider" - "github.com/talos-systems/talos/pkg/grpc/factory" - "github.com/talos-systems/talos/pkg/grpc/middleware/authz" - "github.com/talos-systems/talos/pkg/grpc/proxy/backend" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/startup" + apidbackend "github.com/siderolabs/talos/internal/app/apid/pkg/backend" + "github.com/siderolabs/talos/internal/app/apid/pkg/director" + "github.com/siderolabs/talos/internal/app/apid/pkg/provider" + "github.com/siderolabs/talos/pkg/grpc/factory" + "github.com/siderolabs/talos/pkg/grpc/middleware/authz" + "github.com/siderolabs/talos/pkg/grpc/proxy/backend" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/startup" ) func runDebugServer(ctx context.Context) { diff --git a/internal/app/apid/pkg/backend/apid.go b/internal/app/apid/pkg/backend/apid.go index f9cf7e332..fc86863d3 100644 --- a/internal/app/apid/pkg/backend/apid.go +++ b/internal/app/apid/pkg/backend/apid.go @@ -19,10 +19,10 @@ import ( "google.golang.org/grpc/status" "google.golang.org/protobuf/encoding/protowire" - "github.com/talos-systems/talos/pkg/grpc/middleware/authz" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/grpc/middleware/authz" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/proto" ) var _ proxy.Backend = (*APID)(nil) diff --git a/internal/app/apid/pkg/backend/apid_factory_test.go b/internal/app/apid/pkg/backend/apid_factory_test.go index 20a2b7f96..13791b3de 100644 --- a/internal/app/apid/pkg/backend/apid_factory_test.go +++ b/internal/app/apid/pkg/backend/apid_factory_test.go @@ -12,7 +12,7 @@ import ( "github.com/siderolabs/grpc-proxy/proxy" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/apid/pkg/backend" + "github.com/siderolabs/talos/internal/app/apid/pkg/backend" ) type APIDFactorySuite struct { diff --git a/internal/app/apid/pkg/backend/apid_test.go b/internal/app/apid/pkg/backend/apid_test.go index 0ef862335..3785b43f3 100644 --- a/internal/app/apid/pkg/backend/apid_test.go +++ b/internal/app/apid/pkg/backend/apid_test.go @@ -20,20 +20,20 @@ import ( "google.golang.org/protobuf/reflect/protoreflect" "google.golang.org/protobuf/types/descriptorpb" - "github.com/talos-systems/talos/internal/app/apid/pkg/backend" - "github.com/talos-systems/talos/pkg/grpc/middleware/authz" - "github.com/talos-systems/talos/pkg/machinery/api/cluster" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/api/inspect" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/api/resource" - "github.com/talos-systems/talos/pkg/machinery/api/security" - "github.com/talos-systems/talos/pkg/machinery/api/storage" - "github.com/talos-systems/talos/pkg/machinery/api/time" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/proto" - "github.com/talos-systems/talos/pkg/machinery/role" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/internal/app/apid/pkg/backend" + "github.com/siderolabs/talos/pkg/grpc/middleware/authz" + "github.com/siderolabs/talos/pkg/machinery/api/cluster" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/api/inspect" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/api/resource" + "github.com/siderolabs/talos/pkg/machinery/api/security" + "github.com/siderolabs/talos/pkg/machinery/api/storage" + "github.com/siderolabs/talos/pkg/machinery/api/time" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/version" ) type APIDSuite struct { diff --git a/internal/app/apid/pkg/director/director_test.go b/internal/app/apid/pkg/director/director_test.go index ec3a299c0..ecdb6308d 100644 --- a/internal/app/apid/pkg/director/director_test.go +++ b/internal/app/apid/pkg/director/director_test.go @@ -15,7 +15,7 @@ import ( "google.golang.org/grpc/metadata" "google.golang.org/grpc/status" - "github.com/talos-systems/talos/internal/app/apid/pkg/director" + "github.com/siderolabs/talos/internal/app/apid/pkg/director" ) type DirectorSuite struct { diff --git a/internal/app/apid/pkg/director/local_address.go b/internal/app/apid/pkg/director/local_address.go index c7d05a925..0724bfcdd 100644 --- a/internal/app/apid/pkg/director/local_address.go +++ b/internal/app/apid/pkg/director/local_address.go @@ -11,7 +11,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "github.com/cosi-project/runtime/pkg/state" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // LocalAddressProvider provides local address information. diff --git a/internal/app/apid/pkg/provider/provider.go b/internal/app/apid/pkg/provider/provider.go index 2cb0edd2b..d1286d34f 100644 --- a/internal/app/apid/pkg/provider/provider.go +++ b/internal/app/apid/pkg/provider/provider.go @@ -16,7 +16,7 @@ import ( "github.com/cosi-project/runtime/pkg/state" "github.com/siderolabs/crypto/tls" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // TLSConfig provides client & server TLS configs for apid. diff --git a/internal/app/init/main.go b/internal/app/init/main.go index d812ec62a..128a85baf 100644 --- a/internal/app/init/main.go +++ b/internal/app/init/main.go @@ -22,11 +22,11 @@ import ( "golang.org/x/sys/unix" "gopkg.in/freddierice/go-losetup.v1" - "github.com/talos-systems/talos/internal/pkg/mount" - "github.com/talos-systems/talos/internal/pkg/mount/switchroot" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/extensions" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/internal/pkg/mount" + "github.com/siderolabs/talos/internal/pkg/mount/switchroot" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/extensions" + "github.com/siderolabs/talos/pkg/version" ) func init() { diff --git a/internal/app/machined/internal/server/v1alpha1/v1alpha1_cluster.go b/internal/app/machined/internal/server/v1alpha1/v1alpha1_cluster.go index 811181d63..6251f0200 100644 --- a/internal/app/machined/internal/server/v1alpha1/v1alpha1_cluster.go +++ b/internal/app/machined/internal/server/v1alpha1/v1alpha1_cluster.go @@ -19,15 +19,15 @@ import ( corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/cluster/check" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/grpc/middleware/authz" - clusterapi "github.com/talos-systems/talos/pkg/machinery/api/cluster" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - clusterres "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/cluster/check" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/grpc/middleware/authz" + clusterapi "github.com/siderolabs/talos/pkg/machinery/api/cluster" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + clusterres "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) // HealthCheck implements the cluster.ClusterServer interface. diff --git a/internal/app/machined/internal/server/v1alpha1/v1alpha1_inspect.go b/internal/app/machined/internal/server/v1alpha1/v1alpha1_inspect.go index 21277f952..3adc42a98 100644 --- a/internal/app/machined/internal/server/v1alpha1/v1alpha1_inspect.go +++ b/internal/app/machined/internal/server/v1alpha1/v1alpha1_inspect.go @@ -11,7 +11,7 @@ import ( "github.com/cosi-project/runtime/pkg/controller" "google.golang.org/protobuf/types/known/emptypb" - inspectapi "github.com/talos-systems/talos/pkg/machinery/api/inspect" + inspectapi "github.com/siderolabs/talos/pkg/machinery/api/inspect" ) // InspectServer implements InspectService API. diff --git a/internal/app/machined/internal/server/v1alpha1/v1alpha1_monitoring.go b/internal/app/machined/internal/server/v1alpha1/v1alpha1_monitoring.go index 3d6f31405..f3bbf3076 100644 --- a/internal/app/machined/internal/server/v1alpha1/v1alpha1_monitoring.go +++ b/internal/app/machined/internal/server/v1alpha1/v1alpha1_monitoring.go @@ -16,7 +16,7 @@ import ( "github.com/siderolabs/gen/slices" "google.golang.org/protobuf/types/known/emptypb" - "github.com/talos-systems/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/api/machine" ) // Hostname implements the machine.MachineServer interface. diff --git a/internal/app/machined/internal/server/v1alpha1/v1alpha1_server.go b/internal/app/machined/internal/server/v1alpha1/v1alpha1_server.go index d04e5a6c1..1cdfa7a79 100644 --- a/internal/app/machined/internal/server/v1alpha1/v1alpha1_server.go +++ b/internal/app/machined/internal/server/v1alpha1/v1alpha1_server.go @@ -49,44 +49,44 @@ import ( "google.golang.org/grpc/status" "google.golang.org/protobuf/types/known/emptypb" - installer "github.com/talos-systems/talos/cmd/installer/pkg/install" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/disk" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/resources" - storaged "github.com/talos-systems/talos/internal/app/storaged" - "github.com/talos-systems/talos/internal/pkg/configuration" - "github.com/talos-systems/talos/internal/pkg/containers" - taloscontainerd "github.com/talos-systems/talos/internal/pkg/containers/containerd" - "github.com/talos-systems/talos/internal/pkg/containers/cri" - "github.com/talos-systems/talos/internal/pkg/etcd" - "github.com/talos-systems/talos/internal/pkg/install" - "github.com/talos-systems/talos/internal/pkg/miniprocfs" - "github.com/talos-systems/talos/internal/pkg/mount" - "github.com/talos-systems/talos/pkg/archiver" - "github.com/talos-systems/talos/pkg/chunker" - "github.com/talos-systems/talos/pkg/chunker/stream" - "github.com/talos-systems/talos/pkg/kubeconfig" - "github.com/talos-systems/talos/pkg/machinery/api/cluster" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/api/inspect" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/api/resource" - "github.com/talos-systems/talos/pkg/machinery/api/storage" - timeapi "github.com/talos-systems/talos/pkg/machinery/api/time" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" - machinetype "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - timeresource "github.com/talos-systems/talos/pkg/machinery/resources/time" - "github.com/talos-systems/talos/pkg/machinery/role" - "github.com/talos-systems/talos/pkg/version" + installer "github.com/siderolabs/talos/cmd/installer/pkg/install" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/disk" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/resources" + storaged "github.com/siderolabs/talos/internal/app/storaged" + "github.com/siderolabs/talos/internal/pkg/configuration" + "github.com/siderolabs/talos/internal/pkg/containers" + taloscontainerd "github.com/siderolabs/talos/internal/pkg/containers/containerd" + "github.com/siderolabs/talos/internal/pkg/containers/cri" + "github.com/siderolabs/talos/internal/pkg/etcd" + "github.com/siderolabs/talos/internal/pkg/install" + "github.com/siderolabs/talos/internal/pkg/miniprocfs" + "github.com/siderolabs/talos/internal/pkg/mount" + "github.com/siderolabs/talos/pkg/archiver" + "github.com/siderolabs/talos/pkg/chunker" + "github.com/siderolabs/talos/pkg/chunker/stream" + "github.com/siderolabs/talos/pkg/kubeconfig" + "github.com/siderolabs/talos/pkg/machinery/api/cluster" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/api/inspect" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/api/resource" + "github.com/siderolabs/talos/pkg/machinery/api/storage" + timeapi "github.com/siderolabs/talos/pkg/machinery/api/time" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" + machinetype "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + timeresource "github.com/siderolabs/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/version" ) // MinimumEtcdUpgradeLeaseLockSeconds indicates the minimum number of seconds for which we open a lease lock for upgrading Etcd nodes. diff --git a/internal/app/machined/internal/server/v1alpha1/v1alpha1_time.go b/internal/app/machined/internal/server/v1alpha1/v1alpha1_time.go index 11427f97b..2b23d6e32 100644 --- a/internal/app/machined/internal/server/v1alpha1/v1alpha1_time.go +++ b/internal/app/machined/internal/server/v1alpha1/v1alpha1_time.go @@ -14,9 +14,9 @@ import ( "google.golang.org/protobuf/types/known/emptypb" "google.golang.org/protobuf/types/known/timestamppb" - timeapi "github.com/talos-systems/talos/pkg/machinery/api/time" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" + timeapi "github.com/siderolabs/talos/pkg/machinery/api/time" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // ConfigProvider defines an interface sufficient for the TimeServer. diff --git a/internal/app/machined/internal/server/v1alpha1/v1alpha1_time_test.go b/internal/app/machined/internal/server/v1alpha1/v1alpha1_time_test.go index 6fbf679f7..4b95a9168 100644 --- a/internal/app/machined/internal/server/v1alpha1/v1alpha1_time_test.go +++ b/internal/app/machined/internal/server/v1alpha1/v1alpha1_time_test.go @@ -16,12 +16,12 @@ import ( "google.golang.org/grpc/credentials/insecure" "google.golang.org/protobuf/types/known/emptypb" - runtime "github.com/talos-systems/talos/internal/app/machined/internal/server/v1alpha1" - "github.com/talos-systems/talos/pkg/grpc/dialer" - "github.com/talos-systems/talos/pkg/grpc/factory" - timeapi "github.com/talos-systems/talos/pkg/machinery/api/time" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + runtime "github.com/siderolabs/talos/internal/app/machined/internal/server/v1alpha1" + "github.com/siderolabs/talos/pkg/grpc/dialer" + "github.com/siderolabs/talos/pkg/grpc/factory" + timeapi "github.com/siderolabs/talos/pkg/machinery/api/time" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) type TimedSuite struct { diff --git a/internal/app/machined/main.go b/internal/app/machined/main.go index 51caa3085..e84ad5bfd 100644 --- a/internal/app/machined/main.go +++ b/internal/app/machined/main.go @@ -23,21 +23,21 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/apid" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/services" - "github.com/talos-systems/talos/internal/app/maintenance" - "github.com/talos-systems/talos/internal/app/poweroff" - "github.com/talos-systems/talos/internal/app/trustd" - "github.com/talos-systems/talos/internal/pkg/mount" - "github.com/talos-systems/talos/pkg/httpdefaults" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/startup" + "github.com/siderolabs/talos/internal/app/apid" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/services" + "github.com/siderolabs/talos/internal/app/maintenance" + "github.com/siderolabs/talos/internal/app/poweroff" + "github.com/siderolabs/talos/internal/app/trustd" + "github.com/siderolabs/talos/internal/pkg/mount" + "github.com/siderolabs/talos/pkg/httpdefaults" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/startup" ) func init() { diff --git a/internal/app/machined/pkg/adapters/cluster/identity.go b/internal/app/machined/pkg/adapters/cluster/identity.go index f7b65c040..ca0ce2368 100644 --- a/internal/app/machined/pkg/adapters/cluster/identity.go +++ b/internal/app/machined/pkg/adapters/cluster/identity.go @@ -11,8 +11,8 @@ import ( "github.com/jxskiss/base62" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) // IdentitySpec adapter provides identity generation. diff --git a/internal/app/machined/pkg/adapters/cluster/identity_test.go b/internal/app/machined/pkg/adapters/cluster/identity_test.go index c0e289460..8c23b4701 100644 --- a/internal/app/machined/pkg/adapters/cluster/identity_test.go +++ b/internal/app/machined/pkg/adapters/cluster/identity_test.go @@ -10,8 +10,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - clusteradapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + clusteradapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) func TestIdentityGenerate(t *testing.T) { diff --git a/internal/app/machined/pkg/adapters/hardware/memorymodule.go b/internal/app/machined/pkg/adapters/hardware/memorymodule.go index c11c4d8a9..4d6462058 100644 --- a/internal/app/machined/pkg/adapters/hardware/memorymodule.go +++ b/internal/app/machined/pkg/adapters/hardware/memorymodule.go @@ -7,7 +7,7 @@ package hardware import ( "github.com/siderolabs/go-smbios/smbios" - "github.com/talos-systems/talos/pkg/machinery/resources/hardware" + "github.com/siderolabs/talos/pkg/machinery/resources/hardware" ) // MemoryModule adapter provider conversion from smbios.SMBIOS. diff --git a/internal/app/machined/pkg/adapters/hardware/processor.go b/internal/app/machined/pkg/adapters/hardware/processor.go index 45886279e..7ae64ac0f 100644 --- a/internal/app/machined/pkg/adapters/hardware/processor.go +++ b/internal/app/machined/pkg/adapters/hardware/processor.go @@ -7,7 +7,7 @@ package hardware import ( "github.com/siderolabs/go-smbios/smbios" - "github.com/talos-systems/talos/pkg/machinery/resources/hardware" + "github.com/siderolabs/talos/pkg/machinery/resources/hardware" ) // Processor adapter provider conversion from smbios.SMBIOS. diff --git a/internal/app/machined/pkg/adapters/hardware/system_information.go b/internal/app/machined/pkg/adapters/hardware/system_information.go index c2005427d..d0712d558 100644 --- a/internal/app/machined/pkg/adapters/hardware/system_information.go +++ b/internal/app/machined/pkg/adapters/hardware/system_information.go @@ -7,7 +7,7 @@ package hardware import ( "github.com/siderolabs/go-smbios/smbios" - "github.com/talos-systems/talos/pkg/machinery/resources/hardware" + "github.com/siderolabs/talos/pkg/machinery/resources/hardware" ) // SystemInformation adapter provider conversion from smbios.SMBIOS. diff --git a/internal/app/machined/pkg/adapters/k8s/manifest.go b/internal/app/machined/pkg/adapters/k8s/manifest.go index 299adf17f..8a9184448 100644 --- a/internal/app/machined/pkg/adapters/k8s/manifest.go +++ b/internal/app/machined/pkg/adapters/k8s/manifest.go @@ -15,7 +15,7 @@ import ( "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/util/yaml" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // Manifest adapter provides conversion from procfs. diff --git a/internal/app/machined/pkg/adapters/k8s/manifest_test.go b/internal/app/machined/pkg/adapters/k8s/manifest_test.go index b7d70387a..340ae5954 100644 --- a/internal/app/machined/pkg/adapters/k8s/manifest_test.go +++ b/internal/app/machined/pkg/adapters/k8s/manifest_test.go @@ -11,8 +11,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - k8sadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + k8sadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) func TestManifestSetYAML(t *testing.T) { diff --git a/internal/app/machined/pkg/adapters/k8s/static_pod.go b/internal/app/machined/pkg/adapters/k8s/static_pod.go index 1e2d2a316..c545733b8 100644 --- a/internal/app/machined/pkg/adapters/k8s/static_pod.go +++ b/internal/app/machined/pkg/adapters/k8s/static_pod.go @@ -9,7 +9,7 @@ import ( v1 "k8s.io/api/core/v1" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // StaticPod adapter provides conversion from *v1.Pod. diff --git a/internal/app/machined/pkg/adapters/k8s/static_pod_status.go b/internal/app/machined/pkg/adapters/k8s/static_pod_status.go index a5fae0d1e..bdcea57d9 100644 --- a/internal/app/machined/pkg/adapters/k8s/static_pod_status.go +++ b/internal/app/machined/pkg/adapters/k8s/static_pod_status.go @@ -9,7 +9,7 @@ import ( v1 "k8s.io/api/core/v1" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // StaticPodStatus adapter provides conversion from *v1.PodStatus. diff --git a/internal/app/machined/pkg/adapters/kubespan/identity.go b/internal/app/machined/pkg/adapters/kubespan/identity.go index 53070b9ba..dc1ead970 100644 --- a/internal/app/machined/pkg/adapters/kubespan/identity.go +++ b/internal/app/machined/pkg/adapters/kubespan/identity.go @@ -14,8 +14,8 @@ import ( "go4.org/netipx" "golang.zx2c4.com/wireguard/wgctrl/wgtypes" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // IdentitySpec adapter provides identity generation. diff --git a/internal/app/machined/pkg/adapters/kubespan/identity_test.go b/internal/app/machined/pkg/adapters/kubespan/identity_test.go index e1d570864..9b58f22e1 100644 --- a/internal/app/machined/pkg/adapters/kubespan/identity_test.go +++ b/internal/app/machined/pkg/adapters/kubespan/identity_test.go @@ -11,8 +11,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - kubespanadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/kubespan" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" + kubespanadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" ) func TestIdentityGenerateKey(t *testing.T) { diff --git a/internal/app/machined/pkg/adapters/kubespan/peer_status.go b/internal/app/machined/pkg/adapters/kubespan/peer_status.go index 4b527711f..d8d2515ae 100644 --- a/internal/app/machined/pkg/adapters/kubespan/peer_status.go +++ b/internal/app/machined/pkg/adapters/kubespan/peer_status.go @@ -12,7 +12,7 @@ import ( "go4.org/netipx" "golang.zx2c4.com/wireguard/wgctrl/wgtypes" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" ) // PeerStatusSpec adapter provides Wiregard integration and state management. diff --git a/internal/app/machined/pkg/adapters/kubespan/peer_status_test.go b/internal/app/machined/pkg/adapters/kubespan/peer_status_test.go index a52fc7bb3..70da7938e 100644 --- a/internal/app/machined/pkg/adapters/kubespan/peer_status_test.go +++ b/internal/app/machined/pkg/adapters/kubespan/peer_status_test.go @@ -12,8 +12,8 @@ import ( "github.com/siderolabs/gen/value" "github.com/stretchr/testify/assert" - kubespanadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/kubespan" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" + kubespanadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" ) func TestPeerStatus_PickNewEndpoint(t *testing.T) { diff --git a/internal/app/machined/pkg/adapters/network/bond_master_spec.go b/internal/app/machined/pkg/adapters/network/bond_master_spec.go index 052907845..5cd479803 100644 --- a/internal/app/machined/pkg/adapters/network/bond_master_spec.go +++ b/internal/app/machined/pkg/adapters/network/bond_master_spec.go @@ -8,8 +8,8 @@ import ( "github.com/mdlayher/netlink" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // BondMasterSpec adapter provides encoding/decoding to netlink structures. diff --git a/internal/app/machined/pkg/adapters/network/bond_master_spec_test.go b/internal/app/machined/pkg/adapters/network/bond_master_spec_test.go index b1c5f307c..1798d8f44 100644 --- a/internal/app/machined/pkg/adapters/network/bond_master_spec_test.go +++ b/internal/app/machined/pkg/adapters/network/bond_master_spec_test.go @@ -9,9 +9,9 @@ import ( "github.com/stretchr/testify/require" - networkadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/network" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + networkadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/network" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestBondMasterSpec(t *testing.T) { diff --git a/internal/app/machined/pkg/adapters/network/bridge_master_spec.go b/internal/app/machined/pkg/adapters/network/bridge_master_spec.go index 6828d2558..35ca5d461 100644 --- a/internal/app/machined/pkg/adapters/network/bridge_master_spec.go +++ b/internal/app/machined/pkg/adapters/network/bridge_master_spec.go @@ -8,7 +8,7 @@ import ( "github.com/mdlayher/netlink" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // BridgeMasterSpec adapter provides encoding/decoding to netlink structures. diff --git a/internal/app/machined/pkg/adapters/network/vlan_spec.go b/internal/app/machined/pkg/adapters/network/vlan_spec.go index b00f4eb23..220a4f1c0 100644 --- a/internal/app/machined/pkg/adapters/network/vlan_spec.go +++ b/internal/app/machined/pkg/adapters/network/vlan_spec.go @@ -10,8 +10,8 @@ import ( "github.com/mdlayher/netlink" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // VLANSpec adapter provides encoding/decoding to netlink structures. diff --git a/internal/app/machined/pkg/adapters/network/vlan_spec_test.go b/internal/app/machined/pkg/adapters/network/vlan_spec_test.go index 27741b503..1f6715ce4 100644 --- a/internal/app/machined/pkg/adapters/network/vlan_spec_test.go +++ b/internal/app/machined/pkg/adapters/network/vlan_spec_test.go @@ -9,9 +9,9 @@ import ( "github.com/stretchr/testify/require" - networkadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/network" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + networkadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/network" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestVLANSpec(t *testing.T) { diff --git a/internal/app/machined/pkg/adapters/network/wireguard_spec.go b/internal/app/machined/pkg/adapters/network/wireguard_spec.go index 1b232b775..7da025fdd 100644 --- a/internal/app/machined/pkg/adapters/network/wireguard_spec.go +++ b/internal/app/machined/pkg/adapters/network/wireguard_spec.go @@ -12,7 +12,7 @@ import ( "go4.org/netipx" "golang.zx2c4.com/wireguard/wgctrl/wgtypes" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // WireguardSpec adapter provides encoding/decoding to netlink structures. diff --git a/internal/app/machined/pkg/adapters/network/wireguard_spec_test.go b/internal/app/machined/pkg/adapters/network/wireguard_spec_test.go index b3c8e6735..4b71e28e3 100644 --- a/internal/app/machined/pkg/adapters/network/wireguard_spec_test.go +++ b/internal/app/machined/pkg/adapters/network/wireguard_spec_test.go @@ -15,8 +15,8 @@ import ( "github.com/stretchr/testify/require" "golang.zx2c4.com/wireguard/wgctrl/wgtypes" - networkadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/network" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + networkadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestWireguardSpecDecode(t *testing.T) { diff --git a/internal/app/machined/pkg/adapters/perf/cpu.go b/internal/app/machined/pkg/adapters/perf/cpu.go index c458739a9..40904da6a 100644 --- a/internal/app/machined/pkg/adapters/perf/cpu.go +++ b/internal/app/machined/pkg/adapters/perf/cpu.go @@ -8,7 +8,7 @@ import ( "github.com/prometheus/procfs" "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/machinery/resources/perf" + "github.com/siderolabs/talos/pkg/machinery/resources/perf" ) // CPU adapter provides conversion from procfs. diff --git a/internal/app/machined/pkg/adapters/perf/mem.go b/internal/app/machined/pkg/adapters/perf/mem.go index 4a627a7d5..d7f480b53 100644 --- a/internal/app/machined/pkg/adapters/perf/mem.go +++ b/internal/app/machined/pkg/adapters/perf/mem.go @@ -8,7 +8,7 @@ import ( "github.com/prometheus/procfs" "github.com/siderolabs/go-pointer" - "github.com/talos-systems/talos/pkg/machinery/resources/perf" + "github.com/siderolabs/talos/pkg/machinery/resources/perf" ) // Memory adapter provides conversion from procfs. diff --git a/internal/app/machined/pkg/controllers/cluster/affiliate_merge.go b/internal/app/machined/pkg/controllers/cluster/affiliate_merge.go index e82cd4b6e..8c6326267 100644 --- a/internal/app/machined/pkg/controllers/cluster/affiliate_merge.go +++ b/internal/app/machined/pkg/controllers/cluster/affiliate_merge.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) // AffiliateMergeController merges raw Affiliates from the RawNamespaceName into final representation in the NamespaceName. diff --git a/internal/app/machined/pkg/controllers/cluster/affiliate_merge_test.go b/internal/app/machined/pkg/controllers/cluster/affiliate_merge_test.go index 08ce5f93a..4cf23e8f4 100644 --- a/internal/app/machined/pkg/controllers/cluster/affiliate_merge_test.go +++ b/internal/app/machined/pkg/controllers/cluster/affiliate_merge_test.go @@ -13,9 +13,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - clusterctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/cluster" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + clusterctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/cluster" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) type AffiliateMergeSuite struct { diff --git a/internal/app/machined/pkg/controllers/cluster/cluster.go b/internal/app/machined/pkg/controllers/cluster/cluster.go index 98e968fd0..6f2df170e 100644 --- a/internal/app/machined/pkg/controllers/cluster/cluster.go +++ b/internal/app/machined/pkg/controllers/cluster/cluster.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/controller" "github.com/cosi-project/runtime/pkg/resource" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) func cleanupAffiliates(ctx context.Context, ctrl controller.Controller, r controller.Runtime, touchedIDs map[resource.ID]struct{}) error { diff --git a/internal/app/machined/pkg/controllers/cluster/cluster_test.go b/internal/app/machined/pkg/controllers/cluster/cluster_test.go index f0db4e752..a9bdc6577 100644 --- a/internal/app/machined/pkg/controllers/cluster/cluster_test.go +++ b/internal/app/machined/pkg/controllers/cluster/cluster_test.go @@ -18,9 +18,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) type ClusterSuite struct { diff --git a/internal/app/machined/pkg/controllers/cluster/config.go b/internal/app/machined/pkg/controllers/cluster/config.go index 848862327..7dbdf4412 100644 --- a/internal/app/machined/pkg/controllers/cluster/config.go +++ b/internal/app/machined/pkg/controllers/cluster/config.go @@ -17,8 +17,8 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) // ConfigController watches v1alpha1.Config, updates discovery config. diff --git a/internal/app/machined/pkg/controllers/cluster/config_test.go b/internal/app/machined/pkg/controllers/cluster/config_test.go index 4154b0fb6..33f59c199 100644 --- a/internal/app/machined/pkg/controllers/cluster/config_test.go +++ b/internal/app/machined/pkg/controllers/cluster/config_test.go @@ -14,10 +14,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - clusterctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/cluster" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + clusterctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/cluster" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) type ConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/cluster/discovery_service.go b/internal/app/machined/pkg/controllers/cluster/discovery_service.go index 8fb3f7819..72bce54ea 100644 --- a/internal/app/machined/pkg/controllers/cluster/discovery_service.go +++ b/internal/app/machined/pkg/controllers/cluster/discovery_service.go @@ -23,13 +23,13 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/proto" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/version" ) const defaultDiscoveryTTL = 30 * time.Minute diff --git a/internal/app/machined/pkg/controllers/cluster/discovery_service_test.go b/internal/app/machined/pkg/controllers/cluster/discovery_service_test.go index 13f259a49..8491caefa 100644 --- a/internal/app/machined/pkg/controllers/cluster/discovery_service_test.go +++ b/internal/app/machined/pkg/controllers/cluster/discovery_service_test.go @@ -22,16 +22,16 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - clusteradapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/cluster" - clusterctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/cluster" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/proto" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + clusteradapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/cluster" + clusterctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/cluster" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) type DiscoveryServiceSuite struct { diff --git a/internal/app/machined/pkg/controllers/cluster/endpoint.go b/internal/app/machined/pkg/controllers/cluster/endpoint.go index 72e6761fa..66afa5c00 100644 --- a/internal/app/machined/pkg/controllers/cluster/endpoint.go +++ b/internal/app/machined/pkg/controllers/cluster/endpoint.go @@ -15,9 +15,9 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // EndpointController looks up control plane endpoints. diff --git a/internal/app/machined/pkg/controllers/cluster/endpoint_test.go b/internal/app/machined/pkg/controllers/cluster/endpoint_test.go index a29547acc..b6152dbb8 100644 --- a/internal/app/machined/pkg/controllers/cluster/endpoint_test.go +++ b/internal/app/machined/pkg/controllers/cluster/endpoint_test.go @@ -14,10 +14,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - clusterctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/cluster" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + clusterctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/cluster" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) type EndpointSuite struct { diff --git a/internal/app/machined/pkg/controllers/cluster/kubernetes_pull.go b/internal/app/machined/pkg/controllers/cluster/kubernetes_pull.go index 32f7d5c8e..8f7cf52be 100644 --- a/internal/app/machined/pkg/controllers/cluster/kubernetes_pull.go +++ b/internal/app/machined/pkg/controllers/cluster/kubernetes_pull.go @@ -14,13 +14,13 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/internal/pkg/discovery/registry" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/kubernetes" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/internal/pkg/discovery/registry" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/kubernetes" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // KubernetesPullController pulls list of Affiliate resource from the Kubernetes registry. diff --git a/internal/app/machined/pkg/controllers/cluster/kubernetes_push.go b/internal/app/machined/pkg/controllers/cluster/kubernetes_push.go index b08830012..937cfdea5 100644 --- a/internal/app/machined/pkg/controllers/cluster/kubernetes_push.go +++ b/internal/app/machined/pkg/controllers/cluster/kubernetes_push.go @@ -14,12 +14,12 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/internal/pkg/discovery/registry" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/kubernetes" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/internal/pkg/discovery/registry" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/kubernetes" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) // KubernetesPushController pushes Affiliate resource to the Kubernetes registry. diff --git a/internal/app/machined/pkg/controllers/cluster/local_affiliate.go b/internal/app/machined/pkg/controllers/cluster/local_affiliate.go index 306815658..c8ff35a4d 100644 --- a/internal/app/machined/pkg/controllers/cluster/local_affiliate.go +++ b/internal/app/machined/pkg/controllers/cluster/local_affiliate.go @@ -16,13 +16,13 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/version" ) // LocalAffiliateController builds Affiliate resource for the local node. diff --git a/internal/app/machined/pkg/controllers/cluster/local_affiliate_test.go b/internal/app/machined/pkg/controllers/cluster/local_affiliate_test.go index a9a897855..9c1c36319 100644 --- a/internal/app/machined/pkg/controllers/cluster/local_affiliate_test.go +++ b/internal/app/machined/pkg/controllers/cluster/local_affiliate_test.go @@ -14,16 +14,16 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - clusteradapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/cluster" - kubespanadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/kubespan" - clusterctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/cluster" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/version" + clusteradapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/cluster" + kubespanadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/kubespan" + clusterctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/cluster" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/version" ) type LocalAffiliateSuite struct { diff --git a/internal/app/machined/pkg/controllers/cluster/member.go b/internal/app/machined/pkg/controllers/cluster/member.go index 0d0d1111a..45949ea63 100644 --- a/internal/app/machined/pkg/controllers/cluster/member.go +++ b/internal/app/machined/pkg/controllers/cluster/member.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) // MemberController converts Affiliates which have Nodename set into Members. diff --git a/internal/app/machined/pkg/controllers/cluster/member_test.go b/internal/app/machined/pkg/controllers/cluster/member_test.go index 9a8711de7..d4748643e 100644 --- a/internal/app/machined/pkg/controllers/cluster/member_test.go +++ b/internal/app/machined/pkg/controllers/cluster/member_test.go @@ -13,9 +13,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - clusterctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/cluster" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + clusterctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/cluster" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) type MemberSuite struct { diff --git a/internal/app/machined/pkg/controllers/cluster/node_identity.go b/internal/app/machined/pkg/controllers/cluster/node_identity.go index 7bf349958..2265581e5 100644 --- a/internal/app/machined/pkg/controllers/cluster/node_identity.go +++ b/internal/app/machined/pkg/controllers/cluster/node_identity.go @@ -15,14 +15,14 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - clusteradapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/cluster" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/files" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + clusteradapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/cluster" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/files" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // NodeIdentityController manages runtime.Identity caching identity in the STATE. diff --git a/internal/app/machined/pkg/controllers/cluster/node_identity_test.go b/internal/app/machined/pkg/controllers/cluster/node_identity_test.go index 8df57ea56..8b966ded5 100644 --- a/internal/app/machined/pkg/controllers/cluster/node_identity_test.go +++ b/internal/app/machined/pkg/controllers/cluster/node_identity_test.go @@ -15,13 +15,13 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - clusterctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/cluster" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/files" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + clusterctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/cluster" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/files" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) type NodeIdentitySuite struct { diff --git a/internal/app/machined/pkg/controllers/config/k8s_address_filter.go b/internal/app/machined/pkg/controllers/config/k8s_address_filter.go index bb80c9323..582685140 100644 --- a/internal/app/machined/pkg/controllers/config/k8s_address_filter.go +++ b/internal/app/machined/pkg/controllers/config/k8s_address_filter.go @@ -15,9 +15,9 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // K8sAddressFilterController creates NodeAddressFilters based on machine configuration. diff --git a/internal/app/machined/pkg/controllers/config/k8s_address_filter_test.go b/internal/app/machined/pkg/controllers/config/k8s_address_filter_test.go index 2b16bca44..6ea58a740 100644 --- a/internal/app/machined/pkg/controllers/config/k8s_address_filter_test.go +++ b/internal/app/machined/pkg/controllers/config/k8s_address_filter_test.go @@ -22,12 +22,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - configctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/config" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + configctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/config" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type K8sAddressFilterSuite struct { diff --git a/internal/app/machined/pkg/controllers/config/k8s_control_plane.go b/internal/app/machined/pkg/controllers/config/k8s_control_plane.go index c09811ddc..6b53b120b 100644 --- a/internal/app/machined/pkg/controllers/config/k8s_control_plane.go +++ b/internal/app/machined/pkg/controllers/config/k8s_control_plane.go @@ -16,14 +16,14 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/argsbuilder" - "github.com/talos-systems/talos/pkg/images" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/argsbuilder" + "github.com/siderolabs/talos/pkg/images" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // K8sControlPlaneController manages Kubernetes control plane resources based on configuration. diff --git a/internal/app/machined/pkg/controllers/config/k8s_control_plane_test.go b/internal/app/machined/pkg/controllers/config/k8s_control_plane_test.go index 981ddad01..59404fab6 100644 --- a/internal/app/machined/pkg/controllers/config/k8s_control_plane_test.go +++ b/internal/app/machined/pkg/controllers/config/k8s_control_plane_test.go @@ -25,13 +25,13 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - configctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/config" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + configctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/config" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) type K8sControlPlaneSuite struct { diff --git a/internal/app/machined/pkg/controllers/config/machine_type.go b/internal/app/machined/pkg/controllers/config/machine_type.go index fa871f69f..9e008d47c 100644 --- a/internal/app/machined/pkg/controllers/config/machine_type.go +++ b/internal/app/machined/pkg/controllers/config/machine_type.go @@ -14,8 +14,8 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) // MachineTypeController manages config.MachineType based on configuration. diff --git a/internal/app/machined/pkg/controllers/cri/seccomp_profile.go b/internal/app/machined/pkg/controllers/cri/seccomp_profile.go index 21c9930c9..9f9d56b52 100644 --- a/internal/app/machined/pkg/controllers/cri/seccomp_profile.go +++ b/internal/app/machined/pkg/controllers/cri/seccomp_profile.go @@ -15,8 +15,8 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/cri" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/cri" ) // SeccompProfileController manages v1alpha1.Stats which is the current snaphot of the machine CPU and Memory consumption. diff --git a/internal/app/machined/pkg/controllers/cri/seccomp_profile_file.go b/internal/app/machined/pkg/controllers/cri/seccomp_profile_file.go index 7af15d910..b86cd2032 100644 --- a/internal/app/machined/pkg/controllers/cri/seccomp_profile_file.go +++ b/internal/app/machined/pkg/controllers/cri/seccomp_profile_file.go @@ -21,10 +21,10 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - runtimetalos "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/cri" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + runtimetalos "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/cri" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // SeccompProfileFileController manages the Seccomp Profiles on the host. diff --git a/internal/app/machined/pkg/controllers/cri/seccomp_profile_file_test.go b/internal/app/machined/pkg/controllers/cri/seccomp_profile_file_test.go index 956e2ed73..ad171bb72 100644 --- a/internal/app/machined/pkg/controllers/cri/seccomp_profile_file_test.go +++ b/internal/app/machined/pkg/controllers/cri/seccomp_profile_file_test.go @@ -15,10 +15,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/cri" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - criseccompresource "github.com/talos-systems/talos/pkg/machinery/resources/cri" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/cri" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + criseccompresource "github.com/siderolabs/talos/pkg/machinery/resources/cri" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) func (suite *CRISeccompProfileFileSuite) TestReconcileSeccompProfileFile() { diff --git a/internal/app/machined/pkg/controllers/cri/seccomp_profile_test.go b/internal/app/machined/pkg/controllers/cri/seccomp_profile_test.go index 6f6e1834a..174e4c076 100644 --- a/internal/app/machined/pkg/controllers/cri/seccomp_profile_test.go +++ b/internal/app/machined/pkg/controllers/cri/seccomp_profile_test.go @@ -12,11 +12,11 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/cri" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - criseccompresource "github.com/talos-systems/talos/pkg/machinery/resources/cri" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/cri" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + criseccompresource "github.com/siderolabs/talos/pkg/machinery/resources/cri" ) func (suite *CRISeccompProfileSuite) TestReconcileSeccompProfile() { diff --git a/internal/app/machined/pkg/controllers/ctest/ctest.go b/internal/app/machined/pkg/controllers/ctest/ctest.go index 0b0e05b9a..0a2ff0528 100644 --- a/internal/app/machined/pkg/controllers/ctest/ctest.go +++ b/internal/app/machined/pkg/controllers/ctest/ctest.go @@ -22,7 +22,7 @@ import ( "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/logging" ) // DefaultSuite is a base suite for controller testing. diff --git a/internal/app/machined/pkg/controllers/etcd/advertised_peer.go b/internal/app/machined/pkg/controllers/etcd/advertised_peer.go index b4dfe980a..fb0200c83 100644 --- a/internal/app/machined/pkg/controllers/etcd/advertised_peer.go +++ b/internal/app/machined/pkg/controllers/etcd/advertised_peer.go @@ -20,11 +20,11 @@ import ( "go.etcd.io/etcd/api/v3/etcdserverpb" "go.uber.org/zap" - etcdcli "github.com/talos-systems/talos/internal/pkg/etcd" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/etcd" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + etcdcli "github.com/siderolabs/talos/internal/pkg/etcd" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/etcd" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // AdvertisedPeerController updates advertised peer list for this instance of etcd. diff --git a/internal/app/machined/pkg/controllers/etcd/config.go b/internal/app/machined/pkg/controllers/etcd/config.go index ade1a0fe9..dd2397150 100644 --- a/internal/app/machined/pkg/controllers/etcd/config.go +++ b/internal/app/machined/pkg/controllers/etcd/config.go @@ -15,8 +15,8 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/etcd" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/etcd" ) // ConfigController renders manifests based on templates and config/secrets. diff --git a/internal/app/machined/pkg/controllers/etcd/config_test.go b/internal/app/machined/pkg/controllers/etcd/config_test.go index f88a81657..ee3ecf4c5 100644 --- a/internal/app/machined/pkg/controllers/etcd/config_test.go +++ b/internal/app/machined/pkg/controllers/etcd/config_test.go @@ -13,12 +13,12 @@ import ( "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - etcdctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/etcd" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/etcd" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + etcdctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/etcd" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/etcd" ) func TestConfigSuite(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/etcd/pki.go b/internal/app/machined/pkg/controllers/etcd/pki.go index 18f4f3054..9a8fa3480 100644 --- a/internal/app/machined/pkg/controllers/etcd/pki.go +++ b/internal/app/machined/pkg/controllers/etcd/pki.go @@ -17,10 +17,10 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/filetree" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/etcd" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/filetree" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/etcd" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // PKIController renders manifests based on templates and config/secrets. diff --git a/internal/app/machined/pkg/controllers/etcd/spec.go b/internal/app/machined/pkg/controllers/etcd/spec.go index aba4cf464..57040f805 100644 --- a/internal/app/machined/pkg/controllers/etcd/spec.go +++ b/internal/app/machined/pkg/controllers/etcd/spec.go @@ -18,9 +18,9 @@ import ( "github.com/siderolabs/net" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/etcd" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/etcd" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // SpecController renders manifests based on templates and Spec/secrets. diff --git a/internal/app/machined/pkg/controllers/etcd/spec_test.go b/internal/app/machined/pkg/controllers/etcd/spec_test.go index c8e7f4d19..92ef9e49d 100644 --- a/internal/app/machined/pkg/controllers/etcd/spec_test.go +++ b/internal/app/machined/pkg/controllers/etcd/spec_test.go @@ -14,11 +14,11 @@ import ( "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - etcdctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/etcd" - "github.com/talos-systems/talos/pkg/machinery/resources/etcd" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + etcdctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/etcd" + "github.com/siderolabs/talos/pkg/machinery/resources/etcd" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestSpecSuite(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/files/cri_config_parts.go b/internal/app/machined/pkg/controllers/files/cri_config_parts.go index 217d820e3..6ab5b099a 100644 --- a/internal/app/machined/pkg/controllers/files/cri_config_parts.go +++ b/internal/app/machined/pkg/controllers/files/cri_config_parts.go @@ -16,8 +16,8 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/files" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/files" ) // CRIConfigPartsController merges parts of the CRI config from /etc/cri/conf.d/*.part into final /etc/cri/conf.d/cri.toml. diff --git a/internal/app/machined/pkg/controllers/files/cri_registry_config.go b/internal/app/machined/pkg/controllers/files/cri_registry_config.go index 9647df936..89c8eb5bd 100644 --- a/internal/app/machined/pkg/controllers/files/cri_registry_config.go +++ b/internal/app/machined/pkg/controllers/files/cri_registry_config.go @@ -20,10 +20,10 @@ import ( "go.uber.org/zap" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/pkg/containers/cri/containerd" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/files" + "github.com/siderolabs/talos/internal/pkg/containers/cri/containerd" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/files" ) // CRIRegistryConfigController generates parts of the CRI config for registry configuration. diff --git a/internal/app/machined/pkg/controllers/files/etcfile.go b/internal/app/machined/pkg/controllers/files/etcfile.go index 57603ab00..f478e88b2 100644 --- a/internal/app/machined/pkg/controllers/files/etcfile.go +++ b/internal/app/machined/pkg/controllers/files/etcfile.go @@ -16,7 +16,7 @@ import ( "go.uber.org/zap" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/pkg/machinery/resources/files" + "github.com/siderolabs/talos/pkg/machinery/resources/files" ) // EtcFileController watches EtcFileSpecs, creates/updates files. diff --git a/internal/app/machined/pkg/controllers/files/etcfile_test.go b/internal/app/machined/pkg/controllers/files/etcfile_test.go index 8ff6e36d2..a577c507c 100644 --- a/internal/app/machined/pkg/controllers/files/etcfile_test.go +++ b/internal/app/machined/pkg/controllers/files/etcfile_test.go @@ -22,9 +22,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - filesctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/files" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/resources/files" + filesctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/files" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/resources/files" ) type EtcFileSuite struct { diff --git a/internal/app/machined/pkg/controllers/hardware/hardware_test.go b/internal/app/machined/pkg/controllers/hardware/hardware_test.go index 433675981..2a58c09c5 100644 --- a/internal/app/machined/pkg/controllers/hardware/hardware_test.go +++ b/internal/app/machined/pkg/controllers/hardware/hardware_test.go @@ -18,9 +18,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) type HardwareSuite struct { diff --git a/internal/app/machined/pkg/controllers/hardware/system.go b/internal/app/machined/pkg/controllers/hardware/system.go index 857b5d835..d6ba76ddf 100644 --- a/internal/app/machined/pkg/controllers/hardware/system.go +++ b/internal/app/machined/pkg/controllers/hardware/system.go @@ -14,10 +14,10 @@ import ( "github.com/siderolabs/go-smbios/smbios" "go.uber.org/zap" - hwadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/hardware" - runtimetalos "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - pkgSMBIOS "github.com/talos-systems/talos/internal/pkg/smbios" - "github.com/talos-systems/talos/pkg/machinery/resources/hardware" + hwadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/hardware" + runtimetalos "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + pkgSMBIOS "github.com/siderolabs/talos/internal/pkg/smbios" + "github.com/siderolabs/talos/pkg/machinery/resources/hardware" ) // SystemInfoController populates CPU information of the underlying hardware. diff --git a/internal/app/machined/pkg/controllers/hardware/system_test.go b/internal/app/machined/pkg/controllers/hardware/system_test.go index 83fe40e27..082ba12d0 100644 --- a/internal/app/machined/pkg/controllers/hardware/system_test.go +++ b/internal/app/machined/pkg/controllers/hardware/system_test.go @@ -15,9 +15,9 @@ import ( "github.com/siderolabs/go-smbios/smbios" "github.com/stretchr/testify/suite" - hardwarectrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/hardware" - runtimetalos "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/hardware" + hardwarectrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/hardware" + runtimetalos "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/hardware" ) type SystemInfoSuite struct { diff --git a/internal/app/machined/pkg/controllers/k8s/control_plane_static_pod.go b/internal/app/machined/pkg/controllers/k8s/control_plane_static_pod.go index 6fdd18aca..72617b47a 100644 --- a/internal/app/machined/pkg/controllers/k8s/control_plane_static_pod.go +++ b/internal/app/machined/pkg/controllers/k8s/control_plane_static_pod.go @@ -24,11 +24,11 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/util/intstr" - k8sadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/k8s" - "github.com/talos-systems/talos/pkg/argsbuilder" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + k8sadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/k8s" + "github.com/siderolabs/talos/pkg/argsbuilder" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // ControlPlaneStaticPodController manages k8s.StaticPod based on control plane configuration. diff --git a/internal/app/machined/pkg/controllers/k8s/control_plane_static_pod_test.go b/internal/app/machined/pkg/controllers/k8s/control_plane_static_pod_test.go index 03aa624e5..751b39e6e 100644 --- a/internal/app/machined/pkg/controllers/k8s/control_plane_static_pod_test.go +++ b/internal/app/machined/pkg/controllers/k8s/control_plane_static_pod_test.go @@ -25,12 +25,12 @@ import ( "github.com/stretchr/testify/suite" v1 "k8s.io/api/core/v1" - k8sadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/k8s" - k8sctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/k8s" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + k8sadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/k8s" + k8sctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/k8s" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) type ControlPlaneStaticPodSuite struct { diff --git a/internal/app/machined/pkg/controllers/k8s/endpoint.go b/internal/app/machined/pkg/controllers/k8s/endpoint.go index 068ff4b62..fb9764938 100644 --- a/internal/app/machined/pkg/controllers/k8s/endpoint.go +++ b/internal/app/machined/pkg/controllers/k8s/endpoint.go @@ -26,13 +26,13 @@ import ( "k8s.io/client-go/tools/clientcmd" clientcmdapi "k8s.io/client-go/tools/clientcmd/api" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/kubernetes" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/kubernetes" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // EndpointController looks up control plane endpoints. diff --git a/internal/app/machined/pkg/controllers/k8s/extra_manifest.go b/internal/app/machined/pkg/controllers/k8s/extra_manifest.go index 6f532e929..e7ffce28a 100644 --- a/internal/app/machined/pkg/controllers/k8s/extra_manifest.go +++ b/internal/app/machined/pkg/controllers/k8s/extra_manifest.go @@ -20,10 +20,10 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - k8sadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/k8s" - "github.com/talos-systems/talos/pkg/httpdefaults" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + k8sadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/k8s" + "github.com/siderolabs/talos/pkg/httpdefaults" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // ExtraManifestController renders manifests based on templates and config/secrets. diff --git a/internal/app/machined/pkg/controllers/k8s/extra_manifest_test.go b/internal/app/machined/pkg/controllers/k8s/extra_manifest_test.go index 6b7ba59ad..fa888356f 100644 --- a/internal/app/machined/pkg/controllers/k8s/extra_manifest_test.go +++ b/internal/app/machined/pkg/controllers/k8s/extra_manifest_test.go @@ -24,12 +24,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - k8sadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/k8s" - k8sctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/k8s" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + k8sadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/k8s" + k8sctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/k8s" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) type ExtraManifestSuite struct { diff --git a/internal/app/machined/pkg/controllers/k8s/kubelet_config.go b/internal/app/machined/pkg/controllers/k8s/kubelet_config.go index d8eb909a7..d6f6c8ce5 100644 --- a/internal/app/machined/pkg/controllers/k8s/kubelet_config.go +++ b/internal/app/machined/pkg/controllers/k8s/kubelet_config.go @@ -17,9 +17,9 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // KubeletConfigController renders manifests based on templates and config/secrets. diff --git a/internal/app/machined/pkg/controllers/k8s/kubelet_config_test.go b/internal/app/machined/pkg/controllers/k8s/kubelet_config_test.go index d9fb379e3..8a90287f9 100644 --- a/internal/app/machined/pkg/controllers/k8s/kubelet_config_test.go +++ b/internal/app/machined/pkg/controllers/k8s/kubelet_config_test.go @@ -23,12 +23,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - k8sctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/k8s" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + k8sctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/k8s" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) type KubeletConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/k8s/kubelet_service.go b/internal/app/machined/pkg/controllers/k8s/kubelet_service.go index 6f6ade73f..5aef649db 100644 --- a/internal/app/machined/pkg/controllers/k8s/kubelet_service.go +++ b/internal/app/machined/pkg/controllers/k8s/kubelet_service.go @@ -28,14 +28,14 @@ import ( "k8s.io/client-go/tools/clientcmd" kubeletconfig "k8s.io/kubelet/config/v1beta1" - runtimetalos "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/services" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/files" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + runtimetalos "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/services" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/files" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // ServiceManager is the interface to the v1alpha1 services subsystems. diff --git a/internal/app/machined/pkg/controllers/k8s/kubelet_spec.go b/internal/app/machined/pkg/controllers/k8s/kubelet_spec.go index a95935381..8bc204cec 100644 --- a/internal/app/machined/pkg/controllers/k8s/kubelet_spec.go +++ b/internal/app/machined/pkg/controllers/k8s/kubelet_spec.go @@ -22,11 +22,11 @@ import ( "k8s.io/apimachinery/pkg/runtime" kubeletconfig "k8s.io/kubelet/config/v1beta1" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/argsbuilder" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/kubelet" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/argsbuilder" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/kubelet" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // KubeletSpecController renders manifests based on templates and config/secrets. diff --git a/internal/app/machined/pkg/controllers/k8s/kubelet_spec_test.go b/internal/app/machined/pkg/controllers/k8s/kubelet_spec_test.go index 6879f9403..8baa7edb5 100644 --- a/internal/app/machined/pkg/controllers/k8s/kubelet_spec_test.go +++ b/internal/app/machined/pkg/controllers/k8s/kubelet_spec_test.go @@ -29,10 +29,10 @@ import ( v1 "k8s.io/component-base/logs/api/v1" kubeletconfig "k8s.io/kubelet/config/v1beta1" - k8sctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/k8s" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + k8sctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/k8s" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) type KubeletSpecSuite struct { diff --git a/internal/app/machined/pkg/controllers/k8s/kubelet_static_pod.go b/internal/app/machined/pkg/controllers/k8s/kubelet_static_pod.go index 476e70f15..93f585cb8 100644 --- a/internal/app/machined/pkg/controllers/k8s/kubelet_static_pod.go +++ b/internal/app/machined/pkg/controllers/k8s/kubelet_static_pod.go @@ -15,11 +15,11 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - k8sadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/k8s" - "github.com/talos-systems/talos/pkg/kubernetes/kubelet" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + k8sadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/k8s" + "github.com/siderolabs/talos/pkg/kubernetes/kubelet" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // KubeletStaticPodController renders static pod definitions and manages k8s.StaticPodStatus. diff --git a/internal/app/machined/pkg/controllers/k8s/manifest.go b/internal/app/machined/pkg/controllers/k8s/manifest.go index 6b28df349..bc3a9cefe 100644 --- a/internal/app/machined/pkg/controllers/k8s/manifest.go +++ b/internal/app/machined/pkg/controllers/k8s/manifest.go @@ -18,10 +18,10 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - k8sadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/k8s" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + k8sadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/k8s" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // ManifestController renders manifests based on templates and config/secrets. diff --git a/internal/app/machined/pkg/controllers/k8s/manifest_apply.go b/internal/app/machined/pkg/controllers/k8s/manifest_apply.go index 42ea46b2f..f35a5a696 100644 --- a/internal/app/machined/pkg/controllers/k8s/manifest_apply.go +++ b/internal/app/machined/pkg/controllers/k8s/manifest_apply.go @@ -30,13 +30,13 @@ import ( "k8s.io/client-go/tools/clientcmd" clientcmdapi "k8s.io/client-go/tools/clientcmd/api" - k8sadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/k8s" - "github.com/talos-systems/talos/internal/pkg/etcd" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + k8sadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/k8s" + "github.com/siderolabs/talos/internal/pkg/etcd" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // ManifestApplyController applies manifests via control plane endpoint. diff --git a/internal/app/machined/pkg/controllers/k8s/manifest_test.go b/internal/app/machined/pkg/controllers/k8s/manifest_test.go index 8a31fed0d..a250414cc 100644 --- a/internal/app/machined/pkg/controllers/k8s/manifest_test.go +++ b/internal/app/machined/pkg/controllers/k8s/manifest_test.go @@ -24,12 +24,12 @@ import ( "github.com/stretchr/testify/suite" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" - k8sadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/k8s" - k8sctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/k8s" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + k8sadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/k8s" + k8sctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/k8s" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) type ManifestSuite struct { diff --git a/internal/app/machined/pkg/controllers/k8s/nodeip.go b/internal/app/machined/pkg/controllers/k8s/nodeip.go index f9f108de7..2476cbf36 100644 --- a/internal/app/machined/pkg/controllers/k8s/nodeip.go +++ b/internal/app/machined/pkg/controllers/k8s/nodeip.go @@ -18,8 +18,8 @@ import ( "github.com/siderolabs/net" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // NodeIPController renders manifests based on templates and config/secrets. diff --git a/internal/app/machined/pkg/controllers/k8s/nodeip_config.go b/internal/app/machined/pkg/controllers/k8s/nodeip_config.go index 9ddc1aba8..28189d0b2 100644 --- a/internal/app/machined/pkg/controllers/k8s/nodeip_config.go +++ b/internal/app/machined/pkg/controllers/k8s/nodeip_config.go @@ -15,8 +15,8 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // NodeIPConfigController renders manifests based on templates and config/secrets. diff --git a/internal/app/machined/pkg/controllers/k8s/nodeip_config_test.go b/internal/app/machined/pkg/controllers/k8s/nodeip_config_test.go index 7c8996272..02f7500db 100644 --- a/internal/app/machined/pkg/controllers/k8s/nodeip_config_test.go +++ b/internal/app/machined/pkg/controllers/k8s/nodeip_config_test.go @@ -21,12 +21,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - k8sctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/k8s" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + k8sctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/k8s" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) type NodeIPConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/k8s/nodeip_test.go b/internal/app/machined/pkg/controllers/k8s/nodeip_test.go index a016daf4c..79c0067c9 100644 --- a/internal/app/machined/pkg/controllers/k8s/nodeip_test.go +++ b/internal/app/machined/pkg/controllers/k8s/nodeip_test.go @@ -22,10 +22,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - k8sctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/k8s" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + k8sctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/k8s" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type NodeIPSuite struct { diff --git a/internal/app/machined/pkg/controllers/k8s/nodename.go b/internal/app/machined/pkg/controllers/k8s/nodename.go index d82dd66ac..f832ad55e 100644 --- a/internal/app/machined/pkg/controllers/k8s/nodename.go +++ b/internal/app/machined/pkg/controllers/k8s/nodename.go @@ -15,9 +15,9 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // NodenameController renders manifests based on templates and config/secrets. diff --git a/internal/app/machined/pkg/controllers/k8s/nodename_test.go b/internal/app/machined/pkg/controllers/k8s/nodename_test.go index 21949f97b..87cec5883 100644 --- a/internal/app/machined/pkg/controllers/k8s/nodename_test.go +++ b/internal/app/machined/pkg/controllers/k8s/nodename_test.go @@ -23,12 +23,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - k8sctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/k8s" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + k8sctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/k8s" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type NodenameSuite struct { diff --git a/internal/app/machined/pkg/controllers/k8s/render_config_static_pods.go b/internal/app/machined/pkg/controllers/k8s/render_config_static_pods.go index b288023de..64318623f 100644 --- a/internal/app/machined/pkg/controllers/k8s/render_config_static_pods.go +++ b/internal/app/machined/pkg/controllers/k8s/render_config_static_pods.go @@ -21,8 +21,8 @@ import ( apiserverv1 "k8s.io/apiserver/pkg/apis/apiserver/v1" auditv1 "k8s.io/apiserver/pkg/apis/audit/v1" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // RenderConfigsStaticPodController manages k8s.ConfigsReady and renders configs for the control plane. diff --git a/internal/app/machined/pkg/controllers/k8s/render_secrets_static_pod.go b/internal/app/machined/pkg/controllers/k8s/render_secrets_static_pod.go index 288a16923..4715aa951 100644 --- a/internal/app/machined/pkg/controllers/k8s/render_secrets_static_pod.go +++ b/internal/app/machined/pkg/controllers/k8s/render_secrets_static_pod.go @@ -19,9 +19,9 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // RenderSecretsStaticPodController manages k8s.SecretsReady and renders secrets from secrets.Kubernetes. diff --git a/internal/app/machined/pkg/controllers/k8s/static_pod_config.go b/internal/app/machined/pkg/controllers/k8s/static_pod_config.go index 2aa39aa30..f83e1506a 100644 --- a/internal/app/machined/pkg/controllers/k8s/static_pod_config.go +++ b/internal/app/machined/pkg/controllers/k8s/static_pod_config.go @@ -16,8 +16,8 @@ import ( corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // StaticPodConfigController manages k8s.StaticPod based on machine configuration. diff --git a/internal/app/machined/pkg/controllers/k8s/static_pod_config_test.go b/internal/app/machined/pkg/controllers/k8s/static_pod_config_test.go index dc93e453c..0cc1ccc11 100644 --- a/internal/app/machined/pkg/controllers/k8s/static_pod_config_test.go +++ b/internal/app/machined/pkg/controllers/k8s/static_pod_config_test.go @@ -21,11 +21,11 @@ import ( "github.com/stretchr/testify/suite" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" - k8sctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/k8s" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + k8sctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/k8s" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) type StaticPodConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/k8s/static_pod_server.go b/internal/app/machined/pkg/controllers/k8s/static_pod_server.go index c0303d95f..095b1bae2 100644 --- a/internal/app/machined/pkg/controllers/k8s/static_pod_server.go +++ b/internal/app/machined/pkg/controllers/k8s/static_pod_server.go @@ -17,7 +17,7 @@ import ( "go.uber.org/zap" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // StaticPodServerController renders all static pod definitions as a PodList and serves it as YAML via HTTP. diff --git a/internal/app/machined/pkg/controllers/k8s/static_pod_server_test.go b/internal/app/machined/pkg/controllers/k8s/static_pod_server_test.go index 3394dbbe3..4276d832e 100644 --- a/internal/app/machined/pkg/controllers/k8s/static_pod_server_test.go +++ b/internal/app/machined/pkg/controllers/k8s/static_pod_server_test.go @@ -23,9 +23,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - k8sctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/k8s" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + k8sctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/k8s" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) type StaticPodListSuite struct { diff --git a/internal/app/machined/pkg/controllers/kubeaccess/config.go b/internal/app/machined/pkg/controllers/kubeaccess/config.go index 3dbb5634b..5d1df9189 100644 --- a/internal/app/machined/pkg/controllers/kubeaccess/config.go +++ b/internal/app/machined/pkg/controllers/kubeaccess/config.go @@ -14,8 +14,8 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubeaccess" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubeaccess" ) // ConfigController watches v1alpha1.Config, updates Talos API access config. diff --git a/internal/app/machined/pkg/controllers/kubeaccess/config_test.go b/internal/app/machined/pkg/controllers/kubeaccess/config_test.go index 19d4cf99e..9a85fb972 100644 --- a/internal/app/machined/pkg/controllers/kubeaccess/config_test.go +++ b/internal/app/machined/pkg/controllers/kubeaccess/config_test.go @@ -13,11 +13,11 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - kubeaccessctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/kubeaccess" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubeaccess" + kubeaccessctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/kubeaccess" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubeaccess" ) type ConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/kubeaccess/endpoint.go b/internal/app/machined/pkg/controllers/kubeaccess/endpoint.go index 85425680b..10897f59e 100644 --- a/internal/app/machined/pkg/controllers/kubeaccess/endpoint.go +++ b/internal/app/machined/pkg/controllers/kubeaccess/endpoint.go @@ -21,12 +21,12 @@ import ( "k8s.io/client-go/tools/clientcmd" clientcmdapi "k8s.io/client-go/tools/clientcmd/api" - "github.com/talos-systems/talos/pkg/kubernetes" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/kubeaccess" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/kubernetes" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/kubeaccess" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // EndpointController manages Kubernetes endpoints resource for Talos API endpoints. diff --git a/internal/app/machined/pkg/controllers/kubeaccess/kubeaccess_test.go b/internal/app/machined/pkg/controllers/kubeaccess/kubeaccess_test.go index 48047ac35..faa77f3b5 100644 --- a/internal/app/machined/pkg/controllers/kubeaccess/kubeaccess_test.go +++ b/internal/app/machined/pkg/controllers/kubeaccess/kubeaccess_test.go @@ -18,9 +18,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) type KubeaccessSuite struct { diff --git a/internal/app/machined/pkg/controllers/kubeaccess/serviceaccount.go b/internal/app/machined/pkg/controllers/kubeaccess/serviceaccount.go index cc864a658..079abba96 100644 --- a/internal/app/machined/pkg/controllers/kubeaccess/serviceaccount.go +++ b/internal/app/machined/pkg/controllers/kubeaccess/serviceaccount.go @@ -20,12 +20,12 @@ import ( "k8s.io/client-go/tools/clientcmd" clientcmdapi "k8s.io/client-go/tools/clientcmd/api" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/kubeaccess/serviceaccount" - "github.com/talos-systems/talos/internal/pkg/etcd" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubeaccess" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/kubeaccess/serviceaccount" + "github.com/siderolabs/talos/internal/pkg/etcd" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubeaccess" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // CRDController manages Kubernetes endpoints resource for Talos API endpoints. diff --git a/internal/app/machined/pkg/controllers/kubeaccess/serviceaccount/crd_controller.go b/internal/app/machined/pkg/controllers/kubeaccess/serviceaccount/crd_controller.go index 64bdab64a..206f6ef57 100644 --- a/internal/app/machined/pkg/controllers/kubeaccess/serviceaccount/crd_controller.go +++ b/internal/app/machined/pkg/controllers/kubeaccess/serviceaccount/crd_controller.go @@ -41,11 +41,11 @@ import ( "k8s.io/client-go/util/connrotation" "k8s.io/client-go/util/workqueue" - taloskubernetes "github.com/talos-systems/talos/pkg/kubernetes" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/role" + taloskubernetes "github.com/siderolabs/talos/pkg/kubernetes" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/role" ) const ( diff --git a/internal/app/machined/pkg/controllers/kubespan/config.go b/internal/app/machined/pkg/controllers/kubespan/config.go index 7aba3ed36..4a07da75f 100644 --- a/internal/app/machined/pkg/controllers/kubespan/config.go +++ b/internal/app/machined/pkg/controllers/kubespan/config.go @@ -14,8 +14,8 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" ) // ConfigController watches v1alpha1.Config, updates KubeSpan config. diff --git a/internal/app/machined/pkg/controllers/kubespan/config_test.go b/internal/app/machined/pkg/controllers/kubespan/config_test.go index 5b589c41f..e0a38ba02 100644 --- a/internal/app/machined/pkg/controllers/kubespan/config_test.go +++ b/internal/app/machined/pkg/controllers/kubespan/config_test.go @@ -12,10 +12,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - kubespanctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/kubespan" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" + kubespanctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/kubespan" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" ) type ConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/kubespan/endpoint.go b/internal/app/machined/pkg/controllers/kubespan/endpoint.go index b91595759..e145a3095 100644 --- a/internal/app/machined/pkg/controllers/kubespan/endpoint.go +++ b/internal/app/machined/pkg/controllers/kubespan/endpoint.go @@ -13,8 +13,8 @@ import ( "github.com/siderolabs/gen/value" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" ) // EndpointController watches KubeSpanPeerStatuses, Affiliates and harvests additional endpoints for the peers. diff --git a/internal/app/machined/pkg/controllers/kubespan/endpoint_test.go b/internal/app/machined/pkg/controllers/kubespan/endpoint_test.go index d5ba65677..6fb48c8ab 100644 --- a/internal/app/machined/pkg/controllers/kubespan/endpoint_test.go +++ b/internal/app/machined/pkg/controllers/kubespan/endpoint_test.go @@ -12,10 +12,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - kubespanctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/kubespan" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" + kubespanctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/kubespan" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" ) type EndpointSuite struct { diff --git a/internal/app/machined/pkg/controllers/kubespan/identity.go b/internal/app/machined/pkg/controllers/kubespan/identity.go index 1ae13a5fd..cd13b027d 100644 --- a/internal/app/machined/pkg/controllers/kubespan/identity.go +++ b/internal/app/machined/pkg/controllers/kubespan/identity.go @@ -16,14 +16,14 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - kubespanadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/kubespan" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + kubespanadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/kubespan" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // IdentityController watches KubeSpan configuration, updates KubeSpan Identity. diff --git a/internal/app/machined/pkg/controllers/kubespan/identity_test.go b/internal/app/machined/pkg/controllers/kubespan/identity_test.go index a76e58067..b23336ed1 100644 --- a/internal/app/machined/pkg/controllers/kubespan/identity_test.go +++ b/internal/app/machined/pkg/controllers/kubespan/identity_test.go @@ -15,14 +15,14 @@ import ( "github.com/stretchr/testify/suite" "golang.zx2c4.com/wireguard/wgctrl/wgtypes" - kubespanctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/kubespan" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + kubespanctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/kubespan" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) type IdentitySuite struct { diff --git a/internal/app/machined/pkg/controllers/kubespan/kubespan_test.go b/internal/app/machined/pkg/controllers/kubespan/kubespan_test.go index e43b51836..df5a9b122 100644 --- a/internal/app/machined/pkg/controllers/kubespan/kubespan_test.go +++ b/internal/app/machined/pkg/controllers/kubespan/kubespan_test.go @@ -21,9 +21,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) type KubeSpanSuite struct { diff --git a/internal/app/machined/pkg/controllers/kubespan/manager.go b/internal/app/machined/pkg/controllers/kubespan/manager.go index 607c44044..d678a12ef 100644 --- a/internal/app/machined/pkg/controllers/kubespan/manager.go +++ b/internal/app/machined/pkg/controllers/kubespan/manager.go @@ -22,12 +22,12 @@ import ( "golang.zx2c4.com/wireguard/wgctrl" "golang.zx2c4.com/wireguard/wgctrl/wgtypes" - kubespanadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/kubespan" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + kubespanadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/kubespan" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // DefaultPeerReconcileInterval is interval between peer status reconciliation on timer. diff --git a/internal/app/machined/pkg/controllers/kubespan/manager_test.go b/internal/app/machined/pkg/controllers/kubespan/manager_test.go index 3740812bd..9d160977d 100644 --- a/internal/app/machined/pkg/controllers/kubespan/manager_test.go +++ b/internal/app/machined/pkg/controllers/kubespan/manager_test.go @@ -18,13 +18,13 @@ import ( "go4.org/netipx" "golang.zx2c4.com/wireguard/wgctrl/wgtypes" - kubespanadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/kubespan" - kubespanctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/kubespan" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + kubespanadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/kubespan" + kubespanctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/kubespan" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type ManagerSuite struct { diff --git a/internal/app/machined/pkg/controllers/kubespan/nftables_test.go b/internal/app/machined/pkg/controllers/kubespan/nftables_test.go index 088d3d05b..164ba3503 100644 --- a/internal/app/machined/pkg/controllers/kubespan/nftables_test.go +++ b/internal/app/machined/pkg/controllers/kubespan/nftables_test.go @@ -11,8 +11,8 @@ import ( "github.com/stretchr/testify/require" "go4.org/netipx" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/kubespan" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/kubespan" + "github.com/siderolabs/talos/pkg/machinery/constants" ) func TestNfTables(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/kubespan/peer_spec.go b/internal/app/machined/pkg/controllers/kubespan/peer_spec.go index bb338eed3..d8711f85a 100644 --- a/internal/app/machined/pkg/controllers/kubespan/peer_spec.go +++ b/internal/app/machined/pkg/controllers/kubespan/peer_spec.go @@ -17,9 +17,9 @@ import ( "go.uber.org/zap" "go4.org/netipx" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" ) // PeerSpecController watches cluster.Affiliates updates PeerSpec. diff --git a/internal/app/machined/pkg/controllers/kubespan/peer_spec_test.go b/internal/app/machined/pkg/controllers/kubespan/peer_spec_test.go index 7a41e5b39..ba919dc1d 100644 --- a/internal/app/machined/pkg/controllers/kubespan/peer_spec_test.go +++ b/internal/app/machined/pkg/controllers/kubespan/peer_spec_test.go @@ -13,15 +13,15 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - clusteradapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/cluster" - kubespanctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/kubespan" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + clusteradapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/cluster" + kubespanctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/kubespan" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) type PeerSpecSuite struct { diff --git a/internal/app/machined/pkg/controllers/kubespan/routing_rules_test.go b/internal/app/machined/pkg/controllers/kubespan/routing_rules_test.go index edeb8186e..4933b5cde 100644 --- a/internal/app/machined/pkg/controllers/kubespan/routing_rules_test.go +++ b/internal/app/machined/pkg/controllers/kubespan/routing_rules_test.go @@ -8,8 +8,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/kubespan" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/kubespan" + "github.com/siderolabs/talos/pkg/machinery/constants" ) func TestRoutingRules(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/network/address_config.go b/internal/app/machined/pkg/controllers/network/address_config.go index b4b0a757f..da0a53c5b 100644 --- a/internal/app/machined/pkg/controllers/network/address_config.go +++ b/internal/app/machined/pkg/controllers/network/address_config.go @@ -17,10 +17,10 @@ import ( "github.com/siderolabs/go-procfs/procfs" "go.uber.org/zap" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // AddressConfigController manages network.AddressSpec based on machine configuration, kernel cmdline and some built-in defaults. diff --git a/internal/app/machined/pkg/controllers/network/address_config_test.go b/internal/app/machined/pkg/controllers/network/address_config_test.go index 7e40c12f8..c7687ea07 100644 --- a/internal/app/machined/pkg/controllers/network/address_config_test.go +++ b/internal/app/machined/pkg/controllers/network/address_config_test.go @@ -26,12 +26,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type AddressConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/address_event.go b/internal/app/machined/pkg/controllers/network/address_event.go index f8b7fa7ef..39ddf5ee7 100644 --- a/internal/app/machined/pkg/controllers/network/address_event.go +++ b/internal/app/machined/pkg/controllers/network/address_event.go @@ -14,10 +14,10 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // AddressEventController reports aggregated enpoints state from hostname statuses and k8s endpoints diff --git a/internal/app/machined/pkg/controllers/network/address_event_test.go b/internal/app/machined/pkg/controllers/network/address_event_test.go index 6bd19c7a0..f4c21c8bf 100644 --- a/internal/app/machined/pkg/controllers/network/address_event_test.go +++ b/internal/app/machined/pkg/controllers/network/address_event_test.go @@ -20,12 +20,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/proto" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - networkresource "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + networkresource "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type mockEventsStream struct { diff --git a/internal/app/machined/pkg/controllers/network/address_merge.go b/internal/app/machined/pkg/controllers/network/address_merge.go index 5974ee122..3f4918a93 100644 --- a/internal/app/machined/pkg/controllers/network/address_merge.go +++ b/internal/app/machined/pkg/controllers/network/address_merge.go @@ -16,7 +16,7 @@ import ( "github.com/cosi-project/runtime/pkg/state" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // AddressMergeController merges network.AddressSpec in network.ConfigNamespace and produces final network.AddressSpec in network.Namespace. diff --git a/internal/app/machined/pkg/controllers/network/address_merge_test.go b/internal/app/machined/pkg/controllers/network/address_merge_test.go index 5137cfec6..624811bcd 100644 --- a/internal/app/machined/pkg/controllers/network/address_merge_test.go +++ b/internal/app/machined/pkg/controllers/network/address_merge_test.go @@ -23,10 +23,10 @@ import ( "github.com/stretchr/testify/suite" "golang.org/x/sync/errgroup" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type AddressMergeSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/address_spec.go b/internal/app/machined/pkg/controllers/network/address_spec.go index e350d4455..f1dce5aca 100644 --- a/internal/app/machined/pkg/controllers/network/address_spec.go +++ b/internal/app/machined/pkg/controllers/network/address_spec.go @@ -20,9 +20,9 @@ import ( "go4.org/netipx" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network/watch" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network/watch" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // AddressSpecController applies network.AddressSpec to the actual interfaces. diff --git a/internal/app/machined/pkg/controllers/network/address_spec_test.go b/internal/app/machined/pkg/controllers/network/address_spec_test.go index 3ebb581fa..98a856380 100644 --- a/internal/app/machined/pkg/controllers/network/address_spec_test.go +++ b/internal/app/machined/pkg/controllers/network/address_spec_test.go @@ -26,10 +26,10 @@ import ( "github.com/stretchr/testify/suite" "golang.org/x/sys/unix" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type AddressSpecSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/address_status.go b/internal/app/machined/pkg/controllers/network/address_status.go index f972280e9..6f90a6318 100644 --- a/internal/app/machined/pkg/controllers/network/address_status.go +++ b/internal/app/machined/pkg/controllers/network/address_status.go @@ -15,9 +15,9 @@ import ( "go.uber.org/zap" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network/watch" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network/watch" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // AddressStatusController manages secrets.Etcd based on configuration. diff --git a/internal/app/machined/pkg/controllers/network/address_status_test.go b/internal/app/machined/pkg/controllers/network/address_status_test.go index 1515d42b3..34201a904 100644 --- a/internal/app/machined/pkg/controllers/network/address_status_test.go +++ b/internal/app/machined/pkg/controllers/network/address_status_test.go @@ -21,9 +21,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type AddressStatusSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/cmdline.go b/internal/app/machined/pkg/controllers/network/cmdline.go index b5e7e9e37..88083fcf0 100644 --- a/internal/app/machined/pkg/controllers/network/cmdline.go +++ b/internal/app/machined/pkg/controllers/network/cmdline.go @@ -16,10 +16,10 @@ import ( "github.com/siderolabs/gen/pair/ordered" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // CmdlineNetworking contains parsed cmdline networking settings. diff --git a/internal/app/machined/pkg/controllers/network/cmdline_test.go b/internal/app/machined/pkg/controllers/network/cmdline_test.go index 6fd23be23..132289fc3 100644 --- a/internal/app/machined/pkg/controllers/network/cmdline_test.go +++ b/internal/app/machined/pkg/controllers/network/cmdline_test.go @@ -13,9 +13,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - netconfig "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + netconfig "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type CmdlineSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/device_config.go b/internal/app/machined/pkg/controllers/network/device_config.go index f0654cd27..48fc28783 100644 --- a/internal/app/machined/pkg/controllers/network/device_config.go +++ b/internal/app/machined/pkg/controllers/network/device_config.go @@ -15,10 +15,10 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // DeviceConfigController manages network.DeviceConfig based on configuration. diff --git a/internal/app/machined/pkg/controllers/network/device_config_test.go b/internal/app/machined/pkg/controllers/network/device_config_test.go index ecd67e985..bbe410a52 100644 --- a/internal/app/machined/pkg/controllers/network/device_config_test.go +++ b/internal/app/machined/pkg/controllers/network/device_config_test.go @@ -21,11 +21,11 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type DeviceConfigSpecSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/etcfile.go b/internal/app/machined/pkg/controllers/network/etcfile.go index fe849b14b..f71a4833b 100644 --- a/internal/app/machined/pkg/controllers/network/etcfile.go +++ b/internal/app/machined/pkg/controllers/network/etcfile.go @@ -17,10 +17,10 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/files" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/files" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // EtcFileController creates /etc/hostname and /etc/resolv.conf files based on finalized network configuration. diff --git a/internal/app/machined/pkg/controllers/network/etcfile_test.go b/internal/app/machined/pkg/controllers/network/etcfile_test.go index ec6f88a41..383ea2e61 100644 --- a/internal/app/machined/pkg/controllers/network/etcfile_test.go +++ b/internal/app/machined/pkg/controllers/network/etcfile_test.go @@ -24,12 +24,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/files" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/files" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type EtcFileConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/hardware_addr.go b/internal/app/machined/pkg/controllers/network/hardware_addr.go index 3415dc897..a1cb6db52 100644 --- a/internal/app/machined/pkg/controllers/network/hardware_addr.go +++ b/internal/app/machined/pkg/controllers/network/hardware_addr.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // HardwareAddrController manages secrets.Etcd based on configuration. diff --git a/internal/app/machined/pkg/controllers/network/hardware_addr_test.go b/internal/app/machined/pkg/controllers/network/hardware_addr_test.go index 93b9c71e6..e34e38c6e 100644 --- a/internal/app/machined/pkg/controllers/network/hardware_addr_test.go +++ b/internal/app/machined/pkg/controllers/network/hardware_addr_test.go @@ -22,10 +22,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type HardwareAddrSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/hostname_config.go b/internal/app/machined/pkg/controllers/network/hostname_config.go index ca9ce5bc8..73391c62a 100644 --- a/internal/app/machined/pkg/controllers/network/hostname_config.go +++ b/internal/app/machined/pkg/controllers/network/hostname_config.go @@ -18,10 +18,10 @@ import ( "github.com/siderolabs/go-procfs/procfs" "go.uber.org/zap" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // HostnameConfigController manages network.HostnameSpec based on machine configuration, kernel cmdline. diff --git a/internal/app/machined/pkg/controllers/network/hostname_config_test.go b/internal/app/machined/pkg/controllers/network/hostname_config_test.go index eee0d0e3a..6e56de3bf 100644 --- a/internal/app/machined/pkg/controllers/network/hostname_config_test.go +++ b/internal/app/machined/pkg/controllers/network/hostname_config_test.go @@ -26,12 +26,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type HostnameConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/hostname_merge.go b/internal/app/machined/pkg/controllers/network/hostname_merge.go index 5c9efbc2a..3a8aa24e0 100644 --- a/internal/app/machined/pkg/controllers/network/hostname_merge.go +++ b/internal/app/machined/pkg/controllers/network/hostname_merge.go @@ -14,7 +14,7 @@ import ( "github.com/cosi-project/runtime/pkg/state" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // HostnameMergeController merges network.HostnameSpec in network.ConfigNamespace and produces final network.HostnameSpec in network.Namespace. diff --git a/internal/app/machined/pkg/controllers/network/hostname_merge_test.go b/internal/app/machined/pkg/controllers/network/hostname_merge_test.go index 025e77f92..ecc3d0e6c 100644 --- a/internal/app/machined/pkg/controllers/network/hostname_merge_test.go +++ b/internal/app/machined/pkg/controllers/network/hostname_merge_test.go @@ -21,9 +21,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type HostnameMergeSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/hostname_spec.go b/internal/app/machined/pkg/controllers/network/hostname_spec.go index 6f568402b..56e336c4a 100644 --- a/internal/app/machined/pkg/controllers/network/hostname_spec.go +++ b/internal/app/machined/pkg/controllers/network/hostname_spec.go @@ -14,8 +14,8 @@ import ( "go.uber.org/zap" "golang.org/x/sys/unix" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // HostnameSpecController applies network.HostnameSpec to the actual interfaces. diff --git a/internal/app/machined/pkg/controllers/network/hostname_spec_test.go b/internal/app/machined/pkg/controllers/network/hostname_spec_test.go index fae320fd1..e8ae1953e 100644 --- a/internal/app/machined/pkg/controllers/network/hostname_spec_test.go +++ b/internal/app/machined/pkg/controllers/network/hostname_spec_test.go @@ -19,10 +19,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type HostnameSpecSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/link_config.go b/internal/app/machined/pkg/controllers/network/link_config.go index d81932cb2..3eb03b2af 100644 --- a/internal/app/machined/pkg/controllers/network/link_config.go +++ b/internal/app/machined/pkg/controllers/network/link_config.go @@ -17,9 +17,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" "go.uber.org/zap" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // LinkConfigController manages network.LinkSpec based on machine configuration, kernel cmdline. diff --git a/internal/app/machined/pkg/controllers/network/link_config_test.go b/internal/app/machined/pkg/controllers/network/link_config_test.go index 75bf1cee8..c1bb9fa54 100644 --- a/internal/app/machined/pkg/controllers/network/link_config_test.go +++ b/internal/app/machined/pkg/controllers/network/link_config_test.go @@ -25,12 +25,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type LinkConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/link_merge.go b/internal/app/machined/pkg/controllers/network/link_merge.go index 766246a3c..bb54a92b2 100644 --- a/internal/app/machined/pkg/controllers/network/link_merge.go +++ b/internal/app/machined/pkg/controllers/network/link_merge.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // LinkMergeController merges network.LinkSpec in network.ConfigNamespace and produces final network.LinkSpec in network.Namespace. diff --git a/internal/app/machined/pkg/controllers/network/link_merge_test.go b/internal/app/machined/pkg/controllers/network/link_merge_test.go index ca8a4de84..8e667ed6d 100644 --- a/internal/app/machined/pkg/controllers/network/link_merge_test.go +++ b/internal/app/machined/pkg/controllers/network/link_merge_test.go @@ -22,10 +22,10 @@ import ( "github.com/stretchr/testify/suite" "golang.org/x/sync/errgroup" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type LinkMergeSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/link_spec.go b/internal/app/machined/pkg/controllers/network/link_spec.go index a99d91372..0e8e927db 100644 --- a/internal/app/machined/pkg/controllers/network/link_spec.go +++ b/internal/app/machined/pkg/controllers/network/link_spec.go @@ -19,10 +19,10 @@ import ( "golang.org/x/sys/unix" "golang.zx2c4.com/wireguard/wgctrl" - networkadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/network" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network/watch" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + networkadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network/watch" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // LinkSpecController applies network.LinkSpec to the actual interfaces. diff --git a/internal/app/machined/pkg/controllers/network/link_spec_test.go b/internal/app/machined/pkg/controllers/network/link_spec_test.go index 391e63ea4..6c4ff2440 100644 --- a/internal/app/machined/pkg/controllers/network/link_spec_test.go +++ b/internal/app/machined/pkg/controllers/network/link_spec_test.go @@ -26,11 +26,11 @@ import ( "github.com/stretchr/testify/suite" "golang.zx2c4.com/wireguard/wgctrl/wgtypes" - networkadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/network" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + networkadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type LinkSpecSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/link_status.go b/internal/app/machined/pkg/controllers/network/link_status.go index 1831380ab..c2be9de1e 100644 --- a/internal/app/machined/pkg/controllers/network/link_status.go +++ b/internal/app/machined/pkg/controllers/network/link_status.go @@ -21,11 +21,11 @@ import ( "golang.zx2c4.com/wireguard/wgctrl" "golang.zx2c4.com/wireguard/wgctrl/wgtypes" - networkadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/network" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network/watch" - "github.com/talos-systems/talos/internal/pkg/pci" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + networkadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network/watch" + "github.com/siderolabs/talos/internal/pkg/pci" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // LinkStatusController manages secrets.Etcd based on configuration. diff --git a/internal/app/machined/pkg/controllers/network/link_status_test.go b/internal/app/machined/pkg/controllers/network/link_status_test.go index c34cf63e8..d54f76369 100644 --- a/internal/app/machined/pkg/controllers/network/link_status_test.go +++ b/internal/app/machined/pkg/controllers/network/link_status_test.go @@ -28,10 +28,10 @@ import ( "github.com/stretchr/testify/suite" "golang.org/x/sys/unix" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type LinkStatusSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/network.go b/internal/app/machined/pkg/controllers/network/network.go index 5b0e999e9..158dfd3be 100644 --- a/internal/app/machined/pkg/controllers/network/network.go +++ b/internal/app/machined/pkg/controllers/network/network.go @@ -10,10 +10,10 @@ import ( "github.com/siderolabs/gen/pair/ordered" - networkadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/network" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + networkadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/network" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // DefaultRouteMetric is the default route metric if no metric was specified explicitly. diff --git a/internal/app/machined/pkg/controllers/network/node_address.go b/internal/app/machined/pkg/controllers/network/node_address.go index 2d5e40aad..deffbea3e 100644 --- a/internal/app/machined/pkg/controllers/network/node_address.go +++ b/internal/app/machined/pkg/controllers/network/node_address.go @@ -16,8 +16,8 @@ import ( "github.com/siderolabs/gen/value" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // NodeAddressController manages secrets.Etcd based on configuration. diff --git a/internal/app/machined/pkg/controllers/network/node_address_test.go b/internal/app/machined/pkg/controllers/network/node_address_test.go index 14578ba76..b59a5c911 100644 --- a/internal/app/machined/pkg/controllers/network/node_address_test.go +++ b/internal/app/machined/pkg/controllers/network/node_address_test.go @@ -25,10 +25,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type NodeAddressSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/operator/dhcp4.go b/internal/app/machined/pkg/controllers/network/operator/dhcp4.go index ff7e5a9a3..e0fff4eb0 100644 --- a/internal/app/machined/pkg/controllers/network/operator/dhcp4.go +++ b/internal/app/machined/pkg/controllers/network/operator/dhcp4.go @@ -20,9 +20,9 @@ import ( "go.uber.org/zap" "go4.org/netipx" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // DHCP4 implements the DHCPv4 network operator. diff --git a/internal/app/machined/pkg/controllers/network/operator/dhcp6.go b/internal/app/machined/pkg/controllers/network/operator/dhcp6.go index af6d44000..44825be9f 100644 --- a/internal/app/machined/pkg/controllers/network/operator/dhcp6.go +++ b/internal/app/machined/pkg/controllers/network/operator/dhcp6.go @@ -24,8 +24,8 @@ import ( "go4.org/netipx" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // DHCP6 implements the DHCPv6 network operator. diff --git a/internal/app/machined/pkg/controllers/network/operator/operator.go b/internal/app/machined/pkg/controllers/network/operator/operator.go index 93d651668..ad7f18bdd 100644 --- a/internal/app/machined/pkg/controllers/network/operator/operator.go +++ b/internal/app/machined/pkg/controllers/network/operator/operator.go @@ -8,7 +8,7 @@ package operator import ( "context" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // Operator describes common interface of the operators. diff --git a/internal/app/machined/pkg/controllers/network/operator/vip.go b/internal/app/machined/pkg/controllers/network/operator/vip.go index 2d260b2a7..c5ba1138d 100644 --- a/internal/app/machined/pkg/controllers/network/operator/vip.go +++ b/internal/app/machined/pkg/controllers/network/operator/vip.go @@ -19,13 +19,13 @@ import ( "go.etcd.io/etcd/client/v3/concurrency" "go.uber.org/zap" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network/operator/vip" - "github.com/talos-systems/talos/internal/pkg/etcd" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network/operator/vip" + "github.com/siderolabs/talos/internal/pkg/etcd" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) const campaignRetryInterval = time.Second diff --git a/internal/app/machined/pkg/controllers/network/operator/vip/equinix_metal.go b/internal/app/machined/pkg/controllers/network/operator/vip/equinix_metal.go index 3b000738c..d1b896235 100644 --- a/internal/app/machined/pkg/controllers/network/operator/vip/equinix_metal.go +++ b/internal/app/machined/pkg/controllers/network/operator/vip/equinix_metal.go @@ -13,8 +13,8 @@ import ( "github.com/packethost/packngo" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // EquinixMetalHandler implements assignment and release of Virtual IPs using API. diff --git a/internal/app/machined/pkg/controllers/network/operator/vip/equinix_metal_test.go b/internal/app/machined/pkg/controllers/network/operator/vip/equinix_metal_test.go index 717f822b4..c464b2bb5 100644 --- a/internal/app/machined/pkg/controllers/network/operator/vip/equinix_metal_test.go +++ b/internal/app/machined/pkg/controllers/network/operator/vip/equinix_metal_test.go @@ -12,9 +12,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network/operator/vip" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network/operator/vip" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestEquinixMetalHandler(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/network/operator/vip/hcloud.go b/internal/app/machined/pkg/controllers/network/operator/vip/hcloud.go index e693359c4..8d07fd7c8 100644 --- a/internal/app/machined/pkg/controllers/network/operator/vip/hcloud.go +++ b/internal/app/machined/pkg/controllers/network/operator/vip/hcloud.go @@ -14,8 +14,8 @@ import ( "github.com/hetznercloud/hcloud-go/hcloud" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // HCloudHandler implements assignment and release of Virtual IPs using API. diff --git a/internal/app/machined/pkg/controllers/network/operator_config.go b/internal/app/machined/pkg/controllers/network/operator_config.go index 558abaae5..c9ffcf7d6 100644 --- a/internal/app/machined/pkg/controllers/network/operator_config.go +++ b/internal/app/machined/pkg/controllers/network/operator_config.go @@ -16,8 +16,8 @@ import ( "github.com/siderolabs/go-procfs/procfs" "go.uber.org/zap" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // OperatorConfigController manages network.OperatorSpec based on machine configuration, kernel cmdline. diff --git a/internal/app/machined/pkg/controllers/network/operator_config_test.go b/internal/app/machined/pkg/controllers/network/operator_config_test.go index 6fe1e4ffd..df7f65a96 100644 --- a/internal/app/machined/pkg/controllers/network/operator_config_test.go +++ b/internal/app/machined/pkg/controllers/network/operator_config_test.go @@ -24,12 +24,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type OperatorConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/operator_merge.go b/internal/app/machined/pkg/controllers/network/operator_merge.go index f66e93ce1..94cde5a9b 100644 --- a/internal/app/machined/pkg/controllers/network/operator_merge.go +++ b/internal/app/machined/pkg/controllers/network/operator_merge.go @@ -16,7 +16,7 @@ import ( "github.com/cosi-project/runtime/pkg/state" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // OperatorMergeController merges network.OperatorSpec in network.ConfigNamespace and produces final network.OperatorSpec in network.Namespace. diff --git a/internal/app/machined/pkg/controllers/network/operator_merge_test.go b/internal/app/machined/pkg/controllers/network/operator_merge_test.go index 962b4a8ee..fd137fec2 100644 --- a/internal/app/machined/pkg/controllers/network/operator_merge_test.go +++ b/internal/app/machined/pkg/controllers/network/operator_merge_test.go @@ -22,9 +22,9 @@ import ( "github.com/stretchr/testify/suite" "golang.org/x/sync/errgroup" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type OperatorMergeSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/operator_spec.go b/internal/app/machined/pkg/controllers/network/operator_spec.go index 20a3d4194..e5c1f540a 100644 --- a/internal/app/machined/pkg/controllers/network/operator_spec.go +++ b/internal/app/machined/pkg/controllers/network/operator_spec.go @@ -16,10 +16,10 @@ import ( "github.com/cosi-project/runtime/pkg/state" "go.uber.org/zap" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network/operator" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network/operator" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // OperatorSpecController applies network.OperatorSpec to the actual interfaces. diff --git a/internal/app/machined/pkg/controllers/network/operator_spec_test.go b/internal/app/machined/pkg/controllers/network/operator_spec_test.go index cab1d3f31..12ba068e9 100644 --- a/internal/app/machined/pkg/controllers/network/operator_spec_test.go +++ b/internal/app/machined/pkg/controllers/network/operator_spec_test.go @@ -22,11 +22,11 @@ import ( "github.com/stretchr/testify/suite" "go.uber.org/zap" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network/operator" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network/operator" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type OperatorSpecSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/operator_vip_config.go b/internal/app/machined/pkg/controllers/network/operator_vip_config.go index c7c9d7dc0..54f23c76d 100644 --- a/internal/app/machined/pkg/controllers/network/operator_vip_config.go +++ b/internal/app/machined/pkg/controllers/network/operator_vip_config.go @@ -17,9 +17,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" "go.uber.org/zap" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network/operator/vip" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network/operator/vip" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // OperatorVIPConfigController manages network.OperatorSpec for virtual IPs based on machine configuration. diff --git a/internal/app/machined/pkg/controllers/network/operator_vip_config_test.go b/internal/app/machined/pkg/controllers/network/operator_vip_config_test.go index 257a570ef..eed122256 100644 --- a/internal/app/machined/pkg/controllers/network/operator_vip_config_test.go +++ b/internal/app/machined/pkg/controllers/network/operator_vip_config_test.go @@ -24,11 +24,11 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type OperatorVIPConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/platform_config.go b/internal/app/machined/pkg/controllers/network/platform_config.go index a08c0fe0a..8158a7d96 100644 --- a/internal/app/machined/pkg/controllers/network/platform_config.go +++ b/internal/app/machined/pkg/controllers/network/platform_config.go @@ -22,12 +22,12 @@ import ( "go.uber.org/zap" "gopkg.in/yaml.v3" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // Virtual link name for external IPs. diff --git a/internal/app/machined/pkg/controllers/network/platform_config_test.go b/internal/app/machined/pkg/controllers/network/platform_config_test.go index 112e9e456..c9914152c 100644 --- a/internal/app/machined/pkg/controllers/network/platform_config_test.go +++ b/internal/app/machined/pkg/controllers/network/platform_config_test.go @@ -25,14 +25,14 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) type PlatformConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/resolver_config.go b/internal/app/machined/pkg/controllers/network/resolver_config.go index 7b8dd0290..4727e7db7 100644 --- a/internal/app/machined/pkg/controllers/network/resolver_config.go +++ b/internal/app/machined/pkg/controllers/network/resolver_config.go @@ -16,10 +16,10 @@ import ( "github.com/siderolabs/go-procfs/procfs" "go.uber.org/zap" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // ResolverConfigController manages network.ResolverSpec based on machine configuration, kernel cmdline. diff --git a/internal/app/machined/pkg/controllers/network/resolver_config_test.go b/internal/app/machined/pkg/controllers/network/resolver_config_test.go index 4a3d1be2d..a99a5bc6d 100644 --- a/internal/app/machined/pkg/controllers/network/resolver_config_test.go +++ b/internal/app/machined/pkg/controllers/network/resolver_config_test.go @@ -24,12 +24,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type ResolverConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/resolver_merge.go b/internal/app/machined/pkg/controllers/network/resolver_merge.go index 8e9a29403..9645b1bc7 100644 --- a/internal/app/machined/pkg/controllers/network/resolver_merge.go +++ b/internal/app/machined/pkg/controllers/network/resolver_merge.go @@ -16,7 +16,7 @@ import ( "github.com/cosi-project/runtime/pkg/state" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // ResolverMergeController merges network.ResolverSpec in network.ConfigNamespace and produces final network.ResolverSpec in network.Namespace. diff --git a/internal/app/machined/pkg/controllers/network/resolver_merge_test.go b/internal/app/machined/pkg/controllers/network/resolver_merge_test.go index 04f8de95d..cbfd7da19 100644 --- a/internal/app/machined/pkg/controllers/network/resolver_merge_test.go +++ b/internal/app/machined/pkg/controllers/network/resolver_merge_test.go @@ -23,10 +23,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type ResolverMergeSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/resolver_spec.go b/internal/app/machined/pkg/controllers/network/resolver_spec.go index 16e1788e7..9a82412fe 100644 --- a/internal/app/machined/pkg/controllers/network/resolver_spec.go +++ b/internal/app/machined/pkg/controllers/network/resolver_spec.go @@ -15,7 +15,7 @@ import ( "github.com/siderolabs/gen/slices" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // ResolverSpecController applies network.ResolverSpec to the actual interfaces. diff --git a/internal/app/machined/pkg/controllers/network/resolver_spec_test.go b/internal/app/machined/pkg/controllers/network/resolver_spec_test.go index 29a80ee1a..4935e1a89 100644 --- a/internal/app/machined/pkg/controllers/network/resolver_spec_test.go +++ b/internal/app/machined/pkg/controllers/network/resolver_spec_test.go @@ -22,10 +22,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type ResolverSpecSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/route_config.go b/internal/app/machined/pkg/controllers/network/route_config.go index 7b2954847..76711eb4d 100644 --- a/internal/app/machined/pkg/controllers/network/route_config.go +++ b/internal/app/machined/pkg/controllers/network/route_config.go @@ -16,9 +16,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" "go.uber.org/zap" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // RouteConfigController manages network.RouteSpec based on machine configuration, kernel cmdline. diff --git a/internal/app/machined/pkg/controllers/network/route_config_test.go b/internal/app/machined/pkg/controllers/network/route_config_test.go index 0a6076f82..4ddf1ed35 100644 --- a/internal/app/machined/pkg/controllers/network/route_config_test.go +++ b/internal/app/machined/pkg/controllers/network/route_config_test.go @@ -25,12 +25,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type RouteConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/route_merge.go b/internal/app/machined/pkg/controllers/network/route_merge.go index 2c745165d..69af25f04 100644 --- a/internal/app/machined/pkg/controllers/network/route_merge.go +++ b/internal/app/machined/pkg/controllers/network/route_merge.go @@ -14,7 +14,7 @@ import ( "github.com/cosi-project/runtime/pkg/state" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // RouteMergeController merges network.RouteSpec in network.ConfigNamespace and produces final network.RouteSpec in network.Namespace. diff --git a/internal/app/machined/pkg/controllers/network/route_merge_test.go b/internal/app/machined/pkg/controllers/network/route_merge_test.go index 10490f8e0..67bed27fb 100644 --- a/internal/app/machined/pkg/controllers/network/route_merge_test.go +++ b/internal/app/machined/pkg/controllers/network/route_merge_test.go @@ -23,10 +23,10 @@ import ( "github.com/stretchr/testify/suite" "golang.org/x/sync/errgroup" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type RouteMergeSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/route_spec.go b/internal/app/machined/pkg/controllers/network/route_spec.go index 2fe1e04a0..55e601649 100644 --- a/internal/app/machined/pkg/controllers/network/route_spec.go +++ b/internal/app/machined/pkg/controllers/network/route_spec.go @@ -17,9 +17,9 @@ import ( "go.uber.org/zap" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network/watch" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network/watch" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // RouteSpecController applies network.RouteSpec to the actual interfaces. diff --git a/internal/app/machined/pkg/controllers/network/route_spec_test.go b/internal/app/machined/pkg/controllers/network/route_spec_test.go index e5ed1f50e..a173e522d 100644 --- a/internal/app/machined/pkg/controllers/network/route_spec_test.go +++ b/internal/app/machined/pkg/controllers/network/route_spec_test.go @@ -26,10 +26,10 @@ import ( "github.com/stretchr/testify/suite" "golang.org/x/sys/unix" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type RouteSpecSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/route_status.go b/internal/app/machined/pkg/controllers/network/route_status.go index f4c70732d..a1fd0efa7 100644 --- a/internal/app/machined/pkg/controllers/network/route_status.go +++ b/internal/app/machined/pkg/controllers/network/route_status.go @@ -15,9 +15,9 @@ import ( "go.uber.org/zap" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network/watch" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network/watch" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // RouteStatusController manages secrets.Etcd based on configuration. diff --git a/internal/app/machined/pkg/controllers/network/route_status_test.go b/internal/app/machined/pkg/controllers/network/route_status_test.go index 753ffce23..0d1fa4284 100644 --- a/internal/app/machined/pkg/controllers/network/route_status_test.go +++ b/internal/app/machined/pkg/controllers/network/route_status_test.go @@ -21,10 +21,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type RouteStatusSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/status.go b/internal/app/machined/pkg/controllers/network/status.go index 89c08011c..61a0f5b4f 100644 --- a/internal/app/machined/pkg/controllers/network/status.go +++ b/internal/app/machined/pkg/controllers/network/status.go @@ -15,8 +15,8 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/files" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/files" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // StatusController manages secrets.Etcd based on configuration. diff --git a/internal/app/machined/pkg/controllers/network/status_test.go b/internal/app/machined/pkg/controllers/network/status_test.go index c155e66fe..5bf2f0324 100644 --- a/internal/app/machined/pkg/controllers/network/status_test.go +++ b/internal/app/machined/pkg/controllers/network/status_test.go @@ -21,10 +21,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/resources/files" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/resources/files" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type StatusSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/timeserver_config.go b/internal/app/machined/pkg/controllers/network/timeserver_config.go index a78e86281..f09baa44a 100644 --- a/internal/app/machined/pkg/controllers/network/timeserver_config.go +++ b/internal/app/machined/pkg/controllers/network/timeserver_config.go @@ -15,10 +15,10 @@ import ( "github.com/siderolabs/go-procfs/procfs" "go.uber.org/zap" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // TimeServerConfigController manages network.TimeServerSpec based on machine configuration, kernel cmdline. diff --git a/internal/app/machined/pkg/controllers/network/timeserver_config_test.go b/internal/app/machined/pkg/controllers/network/timeserver_config_test.go index 4bd627504..a8a15166f 100644 --- a/internal/app/machined/pkg/controllers/network/timeserver_config_test.go +++ b/internal/app/machined/pkg/controllers/network/timeserver_config_test.go @@ -23,12 +23,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type TimeServerConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/timeserver_merge.go b/internal/app/machined/pkg/controllers/network/timeserver_merge.go index 584b665aa..50e5d2622 100644 --- a/internal/app/machined/pkg/controllers/network/timeserver_merge.go +++ b/internal/app/machined/pkg/controllers/network/timeserver_merge.go @@ -16,7 +16,7 @@ import ( "github.com/cosi-project/runtime/pkg/state" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // TimeServerMergeController merges network.TimeServerSpec in network.ConfigNamespace and produces final network.TimeServerSpec in network.Namespace. diff --git a/internal/app/machined/pkg/controllers/network/timeserver_merge_test.go b/internal/app/machined/pkg/controllers/network/timeserver_merge_test.go index dfc023798..6c4d58ccd 100644 --- a/internal/app/machined/pkg/controllers/network/timeserver_merge_test.go +++ b/internal/app/machined/pkg/controllers/network/timeserver_merge_test.go @@ -22,10 +22,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type TimeServerMergeSuite struct { diff --git a/internal/app/machined/pkg/controllers/network/timeserver_spec.go b/internal/app/machined/pkg/controllers/network/timeserver_spec.go index 3aa63f0d1..6e3b4fe32 100644 --- a/internal/app/machined/pkg/controllers/network/timeserver_spec.go +++ b/internal/app/machined/pkg/controllers/network/timeserver_spec.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/state" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // TimeServerSpecController applies network.TimeServerSpec to the actual interfaces. diff --git a/internal/app/machined/pkg/controllers/network/timeserver_spec_test.go b/internal/app/machined/pkg/controllers/network/timeserver_spec_test.go index 2bdd3fa6f..0533c0f8f 100644 --- a/internal/app/machined/pkg/controllers/network/timeserver_spec_test.go +++ b/internal/app/machined/pkg/controllers/network/timeserver_spec_test.go @@ -21,10 +21,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - netctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + netctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type TimeServerSpecSuite struct { diff --git a/internal/app/machined/pkg/controllers/perf/perf.go b/internal/app/machined/pkg/controllers/perf/perf.go index c7ae8a517..23aed9125 100644 --- a/internal/app/machined/pkg/controllers/perf/perf.go +++ b/internal/app/machined/pkg/controllers/perf/perf.go @@ -13,8 +13,8 @@ import ( "github.com/prometheus/procfs" "go.uber.org/zap" - perfadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/perf" - "github.com/talos-systems/talos/pkg/machinery/resources/perf" + perfadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/perf" + "github.com/siderolabs/talos/pkg/machinery/resources/perf" ) const updateInterval = time.Second * 30 diff --git a/internal/app/machined/pkg/controllers/perf/perf_test.go b/internal/app/machined/pkg/controllers/perf/perf_test.go index d6ae0128a..8cd5cb8c0 100644 --- a/internal/app/machined/pkg/controllers/perf/perf_test.go +++ b/internal/app/machined/pkg/controllers/perf/perf_test.go @@ -20,9 +20,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/perf" - "github.com/talos-systems/talos/pkg/logging" - perfresource "github.com/talos-systems/talos/pkg/machinery/resources/perf" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/perf" + "github.com/siderolabs/talos/pkg/logging" + perfresource "github.com/siderolabs/talos/pkg/machinery/resources/perf" ) type PerfSuite struct { diff --git a/internal/app/machined/pkg/controllers/runtime/common_test.go b/internal/app/machined/pkg/controllers/runtime/common_test.go index 9b896bd7b..508b577d6 100644 --- a/internal/app/machined/pkg/controllers/runtime/common_test.go +++ b/internal/app/machined/pkg/controllers/runtime/common_test.go @@ -19,9 +19,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) const ( diff --git a/internal/app/machined/pkg/controllers/runtime/events_sink.go b/internal/app/machined/pkg/controllers/runtime/events_sink.go index b38cb8115..34ca612a8 100644 --- a/internal/app/machined/pkg/controllers/runtime/events_sink.go +++ b/internal/app/machined/pkg/controllers/runtime/events_sink.go @@ -21,9 +21,9 @@ import ( "google.golang.org/grpc/credentials/insecure" "google.golang.org/protobuf/types/known/anypb" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // EventsSinkController watches events and forwards them to the events sink server diff --git a/internal/app/machined/pkg/controllers/runtime/events_sink_test.go b/internal/app/machined/pkg/controllers/runtime/events_sink_test.go index b10f67277..a239295a8 100644 --- a/internal/app/machined/pkg/controllers/runtime/events_sink_test.go +++ b/internal/app/machined/pkg/controllers/runtime/events_sink_test.go @@ -25,13 +25,14 @@ import ( "golang.org/x/sync/errgroup" "google.golang.org/grpc" - controllerruntime "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/runtime" - talosruntime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + controllerruntime "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/runtime" + talosruntime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type handler struct { @@ -108,7 +109,12 @@ func (suite *EventsSinkSuite) startRuntime() { } func (suite *EventsSinkSuite) startServer(ctx context.Context) { - suite.sink = events.NewSink(suite.handler) + suite.sink = events.NewSink( + suite.handler, + []proto.Message{ + &machine.AddressEvent{}, + &machine.PhaseEvent{}, + }) status := network.NewStatus(network.NamespaceName, network.StatusID) status.TypedSpec().AddressReady = true diff --git a/internal/app/machined/pkg/controllers/runtime/extension_service.go b/internal/app/machined/pkg/controllers/runtime/extension_service.go index 1d8814d44..08a120545 100644 --- a/internal/app/machined/pkg/controllers/runtime/extension_service.go +++ b/internal/app/machined/pkg/controllers/runtime/extension_service.go @@ -14,9 +14,9 @@ import ( "go.uber.org/zap" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/services" - extservices "github.com/talos-systems/talos/pkg/machinery/extensions/services" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/services" + extservices "github.com/siderolabs/talos/pkg/machinery/extensions/services" ) // ServiceManager is the interface to the v1alpha1 services subsystems. diff --git a/internal/app/machined/pkg/controllers/runtime/extension_service_test.go b/internal/app/machined/pkg/controllers/runtime/extension_service_test.go index 417c63024..a33b5d5ef 100644 --- a/internal/app/machined/pkg/controllers/runtime/extension_service_test.go +++ b/internal/app/machined/pkg/controllers/runtime/extension_service_test.go @@ -14,9 +14,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - runtimecontrollers "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/services" + runtimecontrollers "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/services" ) type ExtensionServiceSuite struct { diff --git a/internal/app/machined/pkg/controllers/runtime/extension_status.go b/internal/app/machined/pkg/controllers/runtime/extension_status.go index ac5f52366..4c855c8e1 100644 --- a/internal/app/machined/pkg/controllers/runtime/extension_status.go +++ b/internal/app/machined/pkg/controllers/runtime/extension_status.go @@ -15,9 +15,9 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/extensions" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/extensions" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // ExtensionStatusController loads extensions.yaml and updates ExtensionStatus resources. diff --git a/internal/app/machined/pkg/controllers/runtime/kernel_module_config.go b/internal/app/machined/pkg/controllers/runtime/kernel_module_config.go index 01359912a..eb68186e8 100644 --- a/internal/app/machined/pkg/controllers/runtime/kernel_module_config.go +++ b/internal/app/machined/pkg/controllers/runtime/kernel_module_config.go @@ -14,8 +14,8 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // KernelModuleConfigController watches v1alpha1.Config, creates/updates/deletes kernel module specs. diff --git a/internal/app/machined/pkg/controllers/runtime/kernel_module_config_test.go b/internal/app/machined/pkg/controllers/runtime/kernel_module_config_test.go index d9efaa30c..ba862e45a 100644 --- a/internal/app/machined/pkg/controllers/runtime/kernel_module_config_test.go +++ b/internal/app/machined/pkg/controllers/runtime/kernel_module_config_test.go @@ -13,10 +13,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - runtimecontrollers "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/runtime" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - runtimeresource "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + runtimecontrollers "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/runtime" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + runtimeresource "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) type KernelModuleConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/runtime/kernel_module_spec.go b/internal/app/machined/pkg/controllers/runtime/kernel_module_spec.go index 12b1209ff..c605a6a08 100644 --- a/internal/app/machined/pkg/controllers/runtime/kernel_module_spec.go +++ b/internal/app/machined/pkg/controllers/runtime/kernel_module_spec.go @@ -14,8 +14,8 @@ import ( "github.com/pmorjan/kmod" "go.uber.org/zap" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // KernelModuleSpecController watches KernelModuleSpecs, sets/resets kernel params. diff --git a/internal/app/machined/pkg/controllers/runtime/kernel_param_config.go b/internal/app/machined/pkg/controllers/runtime/kernel_param_config.go index 4cb388ba0..6a8581eaa 100644 --- a/internal/app/machined/pkg/controllers/runtime/kernel_param_config.go +++ b/internal/app/machined/pkg/controllers/runtime/kernel_param_config.go @@ -15,9 +15,9 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/kernel" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/kernel" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // KernelParamConfigController watches v1alpha1.Config, creates/updates/deletes kernel param specs. diff --git a/internal/app/machined/pkg/controllers/runtime/kernel_param_config_test.go b/internal/app/machined/pkg/controllers/runtime/kernel_param_config_test.go index 3a9af7626..d995b7e6c 100644 --- a/internal/app/machined/pkg/controllers/runtime/kernel_param_config_test.go +++ b/internal/app/machined/pkg/controllers/runtime/kernel_param_config_test.go @@ -13,10 +13,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - runtimecontrollers "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/runtime" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - runtimeresource "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + runtimecontrollers "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/runtime" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + runtimeresource "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) type KernelParamConfigSuite struct { diff --git a/internal/app/machined/pkg/controllers/runtime/kernel_param_defaults.go b/internal/app/machined/pkg/controllers/runtime/kernel_param_defaults.go index 7d5179fb7..7a9021f5a 100644 --- a/internal/app/machined/pkg/controllers/runtime/kernel_param_defaults.go +++ b/internal/app/machined/pkg/controllers/runtime/kernel_param_defaults.go @@ -13,10 +13,10 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "go.uber.org/zap" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/kernel/kspp" - "github.com/talos-systems/talos/pkg/machinery/kernel" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/kernel/kspp" + "github.com/siderolabs/talos/pkg/machinery/kernel" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // KernelParamDefaultsController creates default kernel params. diff --git a/internal/app/machined/pkg/controllers/runtime/kernel_param_defaults_test.go b/internal/app/machined/pkg/controllers/runtime/kernel_param_defaults_test.go index a7fa71bec..9e4f52fd6 100644 --- a/internal/app/machined/pkg/controllers/runtime/kernel_param_defaults_test.go +++ b/internal/app/machined/pkg/controllers/runtime/kernel_param_defaults_test.go @@ -12,10 +12,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - runtimecontrollers "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/kernel" - runtimeresource "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + runtimecontrollers "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/kernel" + runtimeresource "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) type KernelParamDefaultsSuite struct { diff --git a/internal/app/machined/pkg/controllers/runtime/kernel_param_spec.go b/internal/app/machined/pkg/controllers/runtime/kernel_param_spec.go index 228121b59..5fdb4e486 100644 --- a/internal/app/machined/pkg/controllers/runtime/kernel_param_spec.go +++ b/internal/app/machined/pkg/controllers/runtime/kernel_param_spec.go @@ -15,10 +15,10 @@ import ( "github.com/hashicorp/go-multierror" "go.uber.org/zap" - krnl "github.com/talos-systems/talos/pkg/kernel" - "github.com/talos-systems/talos/pkg/kernel/kspp" - "github.com/talos-systems/talos/pkg/machinery/kernel" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + krnl "github.com/siderolabs/talos/pkg/kernel" + "github.com/siderolabs/talos/pkg/kernel/kspp" + "github.com/siderolabs/talos/pkg/machinery/kernel" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // KernelParamSpecController watches KernelParamSpecs, sets/resets kernel params. diff --git a/internal/app/machined/pkg/controllers/runtime/kernel_param_spec_test.go b/internal/app/machined/pkg/controllers/runtime/kernel_param_spec_test.go index d95f50232..81346222e 100644 --- a/internal/app/machined/pkg/controllers/runtime/kernel_param_spec_test.go +++ b/internal/app/machined/pkg/controllers/runtime/kernel_param_spec_test.go @@ -15,10 +15,10 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - runtimecontrollers "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/runtime" - krnl "github.com/talos-systems/talos/pkg/kernel" - "github.com/talos-systems/talos/pkg/machinery/kernel" - runtimeresource "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + runtimecontrollers "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/runtime" + krnl "github.com/siderolabs/talos/pkg/kernel" + "github.com/siderolabs/talos/pkg/machinery/kernel" + runtimeresource "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) type KernelParamSpecSuite struct { diff --git a/internal/app/machined/pkg/controllers/runtime/kmsg_log.go b/internal/app/machined/pkg/controllers/runtime/kmsg_log.go index fbd986dc9..29f6f832e 100644 --- a/internal/app/machined/pkg/controllers/runtime/kmsg_log.go +++ b/internal/app/machined/pkg/controllers/runtime/kmsg_log.go @@ -19,10 +19,10 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zapcore" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/logging" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/logging" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) const drainTimeout = 100 * time.Millisecond diff --git a/internal/app/machined/pkg/controllers/runtime/kmsg_log_test.go b/internal/app/machined/pkg/controllers/runtime/kmsg_log_test.go index de48381ce..977757fa6 100644 --- a/internal/app/machined/pkg/controllers/runtime/kmsg_log_test.go +++ b/internal/app/machined/pkg/controllers/runtime/kmsg_log_test.go @@ -23,11 +23,11 @@ import ( "github.com/siderolabs/siderolink/pkg/logreceiver" "github.com/stretchr/testify/suite" - controllerruntime "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/runtime" - talosruntime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + controllerruntime "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/runtime" + talosruntime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) type logHandler struct { diff --git a/internal/app/machined/pkg/controllers/runtime/machine_status.go b/internal/app/machined/pkg/controllers/runtime/machine_status.go index 2e61e228b..84b01a10a 100644 --- a/internal/app/machined/pkg/controllers/runtime/machine_status.go +++ b/internal/app/machined/pkg/controllers/runtime/machine_status.go @@ -18,16 +18,16 @@ import ( "go.uber.org/zap" v1 "k8s.io/api/core/v1" - k8sadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/k8s" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/time" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + k8sadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/k8s" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // MachineStatusController watches MachineStatuss, sets/resets kernel params. diff --git a/internal/app/machined/pkg/controllers/runtime/machine_status_publisher.go b/internal/app/machined/pkg/controllers/runtime/machine_status_publisher.go index 6c99985c3..2135792ec 100644 --- a/internal/app/machined/pkg/controllers/runtime/machine_status_publisher.go +++ b/internal/app/machined/pkg/controllers/runtime/machine_status_publisher.go @@ -15,9 +15,9 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // MachineStatusPublisherController watches MachineStatusPublishers, sets/resets kernel params. diff --git a/internal/app/machined/pkg/controllers/runtime/machine_status_test.go b/internal/app/machined/pkg/controllers/runtime/machine_status_test.go index 55966e6ab..939eca939 100644 --- a/internal/app/machined/pkg/controllers/runtime/machine_status_test.go +++ b/internal/app/machined/pkg/controllers/runtime/machine_status_test.go @@ -14,16 +14,16 @@ import ( "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - runtimectrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/runtime" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - timeres "github.com/talos-systems/talos/pkg/machinery/resources/time" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + runtimectrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/runtime" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + timeres "github.com/siderolabs/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) func TestMachineStatusSuite(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/secrets/api.go b/internal/app/machined/pkg/controllers/secrets/api.go index 4fa2ccfb0..ef8f18ae5 100644 --- a/internal/app/machined/pkg/controllers/secrets/api.go +++ b/internal/app/machined/pkg/controllers/secrets/api.go @@ -17,15 +17,15 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/grpc/gen" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - timeresource "github.com/talos-systems/talos/pkg/machinery/resources/time" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/grpc/gen" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + timeresource "github.com/siderolabs/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/role" ) // APIController manages secrets.API based on configuration to provide apid certificate. diff --git a/internal/app/machined/pkg/controllers/secrets/api_cert_sans.go b/internal/app/machined/pkg/controllers/secrets/api_cert_sans.go index aef01fd7d..f3872fe8a 100644 --- a/internal/app/machined/pkg/controllers/secrets/api_cert_sans.go +++ b/internal/app/machined/pkg/controllers/secrets/api_cert_sans.go @@ -14,9 +14,9 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // APICertSANsController manages secrets.APICertSANs based on configuration. diff --git a/internal/app/machined/pkg/controllers/secrets/api_cert_sans_test.go b/internal/app/machined/pkg/controllers/secrets/api_cert_sans_test.go index 17fc193bb..200e839be 100644 --- a/internal/app/machined/pkg/controllers/secrets/api_cert_sans_test.go +++ b/internal/app/machined/pkg/controllers/secrets/api_cert_sans_test.go @@ -17,11 +17,11 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - secretsctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/secrets" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + secretsctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) func TestAPICertSANsSuite(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/secrets/api_test.go b/internal/app/machined/pkg/controllers/secrets/api_test.go index df738fded..064ab711e 100644 --- a/internal/app/machined/pkg/controllers/secrets/api_test.go +++ b/internal/app/machined/pkg/controllers/secrets/api_test.go @@ -18,13 +18,13 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - secretsctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/secrets" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + secretsctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/secrets" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/role" ) func TestAPISuite(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/secrets/etcd.go b/internal/app/machined/pkg/controllers/secrets/etcd.go index aa11ef428..435cc55d2 100644 --- a/internal/app/machined/pkg/controllers/secrets/etcd.go +++ b/internal/app/machined/pkg/controllers/secrets/etcd.go @@ -15,12 +15,12 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/internal/pkg/etcd" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - "github.com/talos-systems/talos/pkg/machinery/resources/time" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/internal/pkg/etcd" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // EtcdController manages secrets.Etcd based on configuration. diff --git a/internal/app/machined/pkg/controllers/secrets/etcd_test.go b/internal/app/machined/pkg/controllers/secrets/etcd_test.go index d46f4cc94..bdf86e38b 100644 --- a/internal/app/machined/pkg/controllers/secrets/etcd_test.go +++ b/internal/app/machined/pkg/controllers/secrets/etcd_test.go @@ -18,12 +18,12 @@ import ( "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - secretsctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/secrets" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - timeres "github.com/talos-systems/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + secretsctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + timeres "github.com/siderolabs/talos/pkg/machinery/resources/time" ) func TestEtcdSuite(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/secrets/kubelet.go b/internal/app/machined/pkg/controllers/secrets/kubelet.go index 01a1e9bd5..962e1f7ee 100644 --- a/internal/app/machined/pkg/controllers/secrets/kubelet.go +++ b/internal/app/machined/pkg/controllers/secrets/kubelet.go @@ -14,9 +14,9 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // KubeletController manages secrets.Kubelet based on configuration. diff --git a/internal/app/machined/pkg/controllers/secrets/kubelet_test.go b/internal/app/machined/pkg/controllers/secrets/kubelet_test.go index d56bb5de2..bdb46dafc 100644 --- a/internal/app/machined/pkg/controllers/secrets/kubelet_test.go +++ b/internal/app/machined/pkg/controllers/secrets/kubelet_test.go @@ -16,11 +16,11 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - secretsctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/secrets" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + secretsctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/secrets" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) func TestKubeletSuite(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/secrets/kubernetes.go b/internal/app/machined/pkg/controllers/secrets/kubernetes.go index 6478eef0a..ca508d639 100644 --- a/internal/app/machined/pkg/controllers/secrets/kubernetes.go +++ b/internal/app/machined/pkg/controllers/secrets/kubernetes.go @@ -19,13 +19,13 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/kubeconfig" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - timeresource "github.com/talos-systems/talos/pkg/machinery/resources/time" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/pkg/kubeconfig" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + timeresource "github.com/siderolabs/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // KubernetesCertificateValidityDuration is the validity duration for the certificates created with this controller. diff --git a/internal/app/machined/pkg/controllers/secrets/kubernetes_cert_sans.go b/internal/app/machined/pkg/controllers/secrets/kubernetes_cert_sans.go index 5741704a2..7d50e883e 100644 --- a/internal/app/machined/pkg/controllers/secrets/kubernetes_cert_sans.go +++ b/internal/app/machined/pkg/controllers/secrets/kubernetes_cert_sans.go @@ -14,9 +14,9 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // KubernetesCertSANsController manages secrets.KubernetesCertSANs based on configuration. diff --git a/internal/app/machined/pkg/controllers/secrets/kubernetes_cert_sans_test.go b/internal/app/machined/pkg/controllers/secrets/kubernetes_cert_sans_test.go index cbb5cd2f7..6474eb58b 100644 --- a/internal/app/machined/pkg/controllers/secrets/kubernetes_cert_sans_test.go +++ b/internal/app/machined/pkg/controllers/secrets/kubernetes_cert_sans_test.go @@ -18,11 +18,11 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - secretsctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/secrets" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + secretsctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) type KubernetesCertSANsSuite struct { diff --git a/internal/app/machined/pkg/controllers/secrets/kubernetes_test.go b/internal/app/machined/pkg/controllers/secrets/kubernetes_test.go index 44ee19f3d..c6cc4b776 100644 --- a/internal/app/machined/pkg/controllers/secrets/kubernetes_test.go +++ b/internal/app/machined/pkg/controllers/secrets/kubernetes_test.go @@ -20,14 +20,14 @@ import ( "github.com/stretchr/testify/suite" "k8s.io/client-go/tools/clientcmd" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - secretsctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/secrets" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - timeresource "github.com/talos-systems/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + secretsctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/secrets" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + timeresource "github.com/siderolabs/talos/pkg/machinery/resources/time" ) func TestKubernetesSuite(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/secrets/root.go b/internal/app/machined/pkg/controllers/secrets/root.go index adf534784..308bffd4f 100644 --- a/internal/app/machined/pkg/controllers/secrets/root.go +++ b/internal/app/machined/pkg/controllers/secrets/root.go @@ -16,11 +16,11 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // RootController manages secrets.Root based on configuration. diff --git a/internal/app/machined/pkg/controllers/secrets/trustd.go b/internal/app/machined/pkg/controllers/secrets/trustd.go index bf82d8179..19a3e8534 100644 --- a/internal/app/machined/pkg/controllers/secrets/trustd.go +++ b/internal/app/machined/pkg/controllers/secrets/trustd.go @@ -18,11 +18,11 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - timeresource "github.com/talos-systems/talos/pkg/machinery/resources/time" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + timeresource "github.com/siderolabs/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // TrustdController manages secrets.API based on configuration to provide apid certificate. diff --git a/internal/app/machined/pkg/controllers/secrets/trustd_test.go b/internal/app/machined/pkg/controllers/secrets/trustd_test.go index 683b9cd31..f4a908ae5 100644 --- a/internal/app/machined/pkg/controllers/secrets/trustd_test.go +++ b/internal/app/machined/pkg/controllers/secrets/trustd_test.go @@ -18,12 +18,12 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - secretsctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/secrets" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + secretsctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/secrets" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) func TestTrustdSuite(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/secrets/utils_test.go b/internal/app/machined/pkg/controllers/secrets/utils_test.go index cb84b2138..97ecb1a42 100644 --- a/internal/app/machined/pkg/controllers/secrets/utils_test.go +++ b/internal/app/machined/pkg/controllers/secrets/utils_test.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/controller" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/secrets" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/secrets" ) func TestRateLimitEvents(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/siderolink/manager.go b/internal/app/machined/pkg/controllers/siderolink/manager.go index 16a2f4b40..777751fe8 100644 --- a/internal/app/machined/pkg/controllers/siderolink/manager.go +++ b/internal/app/machined/pkg/controllers/siderolink/manager.go @@ -25,10 +25,10 @@ import ( "google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials/insecure" - "github.com/talos-systems/talos/internal/pkg/smbios" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/pkg/smbios" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // ManagerController interacts with SideroLink API and brings up the SideroLink Wireguard interface. diff --git a/internal/app/machined/pkg/controllers/siderolink/manager_test.go b/internal/app/machined/pkg/controllers/siderolink/manager_test.go index 8c8a5baa5..7a7f0c0c2 100644 --- a/internal/app/machined/pkg/controllers/siderolink/manager_test.go +++ b/internal/app/machined/pkg/controllers/siderolink/manager_test.go @@ -22,11 +22,11 @@ import ( "github.com/stretchr/testify/suite" "google.golang.org/grpc" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/ctest" - siderolinkctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/siderolink" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/ctest" + siderolinkctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/siderolink" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestManagerSuite(t *testing.T) { diff --git a/internal/app/machined/pkg/controllers/time/sync.go b/internal/app/machined/pkg/controllers/time/sync.go index ee5783caf..5b4c5d7a8 100644 --- a/internal/app/machined/pkg/controllers/time/sync.go +++ b/internal/app/machined/pkg/controllers/time/sync.go @@ -16,11 +16,11 @@ import ( "github.com/siderolabs/go-pointer" "go.uber.org/zap" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/pkg/ntp" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/time" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/pkg/ntp" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/time" ) // SyncController manages v1alpha1.TimeSync based on configuration and NTP sync process. diff --git a/internal/app/machined/pkg/controllers/time/sync_test.go b/internal/app/machined/pkg/controllers/time/sync_test.go index a8467792b..42a683751 100644 --- a/internal/app/machined/pkg/controllers/time/sync_test.go +++ b/internal/app/machined/pkg/controllers/time/sync_test.go @@ -23,15 +23,15 @@ import ( "github.com/stretchr/testify/suite" "go.uber.org/zap" - timectrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/time" - v1alpha1runtime "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - timeresource "github.com/talos-systems/talos/pkg/machinery/resources/time" - v1alpha1resource "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + timectrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/time" + v1alpha1runtime "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + timeresource "github.com/siderolabs/talos/pkg/machinery/resources/time" + v1alpha1resource "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) type SyncSuite struct { diff --git a/internal/app/machined/pkg/controllers/v1alpha1/service.go b/internal/app/machined/pkg/controllers/v1alpha1/service.go index 4a37e3e81..761766565 100644 --- a/internal/app/machined/pkg/controllers/v1alpha1/service.go +++ b/internal/app/machined/pkg/controllers/v1alpha1/service.go @@ -13,9 +13,9 @@ import ( "github.com/cosi-project/runtime/pkg/state" "go.uber.org/zap" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // ServiceController manages v1alpha1.Service based on services subsystem state. diff --git a/internal/app/machined/pkg/runtime/drainer_test.go b/internal/app/machined/pkg/runtime/drainer_test.go index eceea0262..c1b5f2b25 100644 --- a/internal/app/machined/pkg/runtime/drainer_test.go +++ b/internal/app/machined/pkg/runtime/drainer_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" ) //nolint:gocyclo diff --git a/internal/app/machined/pkg/runtime/events.go b/internal/app/machined/pkg/runtime/events.go index 8e3d9cd45..2c737de62 100644 --- a/internal/app/machined/pkg/runtime/events.go +++ b/internal/app/machined/pkg/runtime/events.go @@ -12,8 +12,8 @@ import ( "github.com/rs/xid" "google.golang.org/protobuf/types/known/anypb" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // ActorIDCtxKey is the context key used for event actor id. diff --git a/internal/app/machined/pkg/runtime/logging/circular.go b/internal/app/machined/pkg/runtime/logging/circular.go index 1e4174d35..21741b4cc 100644 --- a/internal/app/machined/pkg/runtime/logging/circular.go +++ b/internal/app/machined/pkg/runtime/logging/circular.go @@ -19,7 +19,7 @@ import ( "github.com/siderolabs/go-debug" "github.com/siderolabs/go-tail" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" ) // These constants should some day move to config. diff --git a/internal/app/machined/pkg/runtime/logging/extract.go b/internal/app/machined/pkg/runtime/logging/extract.go index df65f6821..cfd4d1102 100644 --- a/internal/app/machined/pkg/runtime/logging/extract.go +++ b/internal/app/machined/pkg/runtime/logging/extract.go @@ -14,7 +14,7 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zapcore" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" ) var maxEpochTS = float64(time.Date(3000, 1, 1, 0, 0, 0, 0, time.UTC).Unix()) diff --git a/internal/app/machined/pkg/runtime/logging/extract_test.go b/internal/app/machined/pkg/runtime/logging/extract_test.go index 1e8d139f4..acef58077 100644 --- a/internal/app/machined/pkg/runtime/logging/extract_test.go +++ b/internal/app/machined/pkg/runtime/logging/extract_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/assert" "go.uber.org/zap/zapcore" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" ) func TestParseLogLine(t *testing.T) { diff --git a/internal/app/machined/pkg/runtime/logging/file.go b/internal/app/machined/pkg/runtime/logging/file.go index 58166c456..8f12bd1c4 100644 --- a/internal/app/machined/pkg/runtime/logging/file.go +++ b/internal/app/machined/pkg/runtime/logging/file.go @@ -14,8 +14,8 @@ import ( "github.com/siderolabs/go-tail" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/follow" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/follow" ) // FileLoggingManager implements simple logging to files. diff --git a/internal/app/machined/pkg/runtime/logging/null.go b/internal/app/machined/pkg/runtime/logging/null.go index 2ac47d35a..d6cc42295 100644 --- a/internal/app/machined/pkg/runtime/logging/null.go +++ b/internal/app/machined/pkg/runtime/logging/null.go @@ -8,7 +8,7 @@ import ( "io" "os" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" ) // NullLoggingManager sends all the logs to /dev/null. diff --git a/internal/app/machined/pkg/runtime/logging/sender_jsonlines.go b/internal/app/machined/pkg/runtime/logging/sender_jsonlines.go index 0301b4cca..7878f50a0 100644 --- a/internal/app/machined/pkg/runtime/logging/sender_jsonlines.go +++ b/internal/app/machined/pkg/runtime/logging/sender_jsonlines.go @@ -12,7 +12,7 @@ import ( "net/url" "time" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" ) type jsonLinesSender struct { diff --git a/internal/app/machined/pkg/runtime/mode_test.go b/internal/app/machined/pkg/runtime/mode_test.go index 8930ca5c4..c207996a9 100644 --- a/internal/app/machined/pkg/runtime/mode_test.go +++ b/internal/app/machined/pkg/runtime/mode_test.go @@ -9,7 +9,7 @@ import ( "reflect" "testing" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" ) func TestMode_String(t *testing.T) { diff --git a/internal/app/machined/pkg/runtime/platform.go b/internal/app/machined/pkg/runtime/platform.go index 6aeb72511..4665651f3 100644 --- a/internal/app/machined/pkg/runtime/platform.go +++ b/internal/app/machined/pkg/runtime/platform.go @@ -11,8 +11,8 @@ import ( "github.com/cosi-project/runtime/pkg/state" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // Platform defines the requirements for a platform. diff --git a/internal/app/machined/pkg/runtime/runtime.go b/internal/app/machined/pkg/runtime/runtime.go index 40a5fb340..8daaeb0e4 100644 --- a/internal/app/machined/pkg/runtime/runtime.go +++ b/internal/app/machined/pkg/runtime/runtime.go @@ -7,7 +7,7 @@ package runtime import ( "time" - "github.com/talos-systems/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config" ) // Runtime defines the runtime parameters. diff --git a/internal/app/machined/pkg/runtime/sequencer.go b/internal/app/machined/pkg/runtime/sequencer.go index b7c3ccdbd..8f5ae49a4 100644 --- a/internal/app/machined/pkg/runtime/sequencer.go +++ b/internal/app/machined/pkg/runtime/sequencer.go @@ -7,7 +7,7 @@ package runtime import ( "fmt" - "github.com/talos-systems/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/api/machine" ) // Sequence represents a sequence type. diff --git a/internal/app/machined/pkg/runtime/sequencer_test.go b/internal/app/machined/pkg/runtime/sequencer_test.go index c2c71fa6d..b20a2393d 100644 --- a/internal/app/machined/pkg/runtime/sequencer_test.go +++ b/internal/app/machined/pkg/runtime/sequencer_test.go @@ -8,7 +8,7 @@ package runtime_test import ( "testing" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" ) func TestSequence_String(t *testing.T) { diff --git a/internal/app/machined/pkg/runtime/state.go b/internal/app/machined/pkg/runtime/state.go index 227dd4678..a5fae2483 100644 --- a/internal/app/machined/pkg/runtime/state.go +++ b/internal/app/machined/pkg/runtime/state.go @@ -11,8 +11,8 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/siderolabs/go-blockdevice/blockdevice/probe" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/disk" - "github.com/talos-systems/talos/pkg/machinery/config" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/disk" + "github.com/siderolabs/talos/pkg/machinery/config" ) // State defines the state. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/board/bananapi_m64/bananapi_m64.go b/internal/app/machined/pkg/runtime/v1alpha1/board/bananapi_m64/bananapi_m64.go index cc89e250c..2cb21c3b3 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/board/bananapi_m64/bananapi_m64.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/board/bananapi_m64/bananapi_m64.go @@ -14,9 +14,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/copy" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/copy" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/board/board.go b/internal/app/machined/pkg/runtime/v1alpha1/board/board.go index 45d1cced5..a9ba5efe9 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/board/board.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/board/board.go @@ -12,18 +12,18 @@ import ( "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - bananapim64 "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/board/bananapi_m64" - jetsonnano "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/board/jetson_nano" - libretechallh3cch5 "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/board/libretech_all_h3_cc_h5" - nanopir4s "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/board/nanopi_r4s" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/board/pine64" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/board/rock64" - rockpi4 "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/board/rockpi4" - rockpi4c "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/board/rockpi4c" - rpi4 "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/board/rpi_4" - rpigeneric "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/board/rpi_generic" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + bananapim64 "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/board/bananapi_m64" + jetsonnano "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/board/jetson_nano" + libretechallh3cch5 "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/board/libretech_all_h3_cc_h5" + nanopir4s "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/board/nanopi_r4s" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/board/pine64" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/board/rock64" + rockpi4 "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/board/rockpi4" + rockpi4c "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/board/rockpi4c" + rpi4 "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/board/rpi_4" + rpigeneric "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/board/rpi_generic" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // CurrentBoard is a helper func for discovering the current board. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/board/jetson_nano/jetson_nano.go b/internal/app/machined/pkg/runtime/v1alpha1/board/jetson_nano/jetson_nano.go index af9530f33..326fadb5f 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/board/jetson_nano/jetson_nano.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/board/jetson_nano/jetson_nano.go @@ -12,9 +12,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/copy" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/copy" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // References diff --git a/internal/app/machined/pkg/runtime/v1alpha1/board/libretech_all_h3_cc_h5/libretech_all_h3_cc_h5.go b/internal/app/machined/pkg/runtime/v1alpha1/board/libretech_all_h3_cc_h5/libretech_all_h3_cc_h5.go index d284fd4eb..e4df77893 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/board/libretech_all_h3_cc_h5/libretech_all_h3_cc_h5.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/board/libretech_all_h3_cc_h5/libretech_all_h3_cc_h5.go @@ -14,9 +14,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/copy" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/copy" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/board/nanopi_r4s/nanopi_r4s.go b/internal/app/machined/pkg/runtime/v1alpha1/board/nanopi_r4s/nanopi_r4s.go index d751c805f..de2fb3a19 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/board/nanopi_r4s/nanopi_r4s.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/board/nanopi_r4s/nanopi_r4s.go @@ -14,9 +14,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/copy" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/copy" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/board/pine64/pine64.go b/internal/app/machined/pkg/runtime/v1alpha1/board/pine64/pine64.go index 560aca594..fe9f2cfda 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/board/pine64/pine64.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/board/pine64/pine64.go @@ -14,9 +14,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/copy" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/copy" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/board/rock64/rock64.go b/internal/app/machined/pkg/runtime/v1alpha1/board/rock64/rock64.go index 90002142a..5c6c159a9 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/board/rock64/rock64.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/board/rock64/rock64.go @@ -14,9 +14,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/copy" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/copy" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/board/rockpi4/rockpi4.go b/internal/app/machined/pkg/runtime/v1alpha1/board/rockpi4/rockpi4.go index 51dc9e6d7..9deb45abb 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/board/rockpi4/rockpi4.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/board/rockpi4/rockpi4.go @@ -14,9 +14,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/copy" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/copy" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/board/rockpi4c/rockpi4c.go b/internal/app/machined/pkg/runtime/v1alpha1/board/rockpi4c/rockpi4c.go index 363ad2fb9..8b00f76f4 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/board/rockpi4c/rockpi4c.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/board/rockpi4c/rockpi4c.go @@ -14,9 +14,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/copy" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/copy" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/board/rpi_4/rpi_4.go b/internal/app/machined/pkg/runtime/v1alpha1/board/rpi_4/rpi_4.go index 415d73b4a..65cc7ed82 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/board/rpi_4/rpi_4.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/board/rpi_4/rpi_4.go @@ -11,9 +11,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/copy" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/copy" + "github.com/siderolabs/talos/pkg/machinery/constants" ) //go:embed config.txt diff --git a/internal/app/machined/pkg/runtime/v1alpha1/board/rpi_generic/rpi_generic.go b/internal/app/machined/pkg/runtime/v1alpha1/board/rpi_generic/rpi_generic.go index b0887c61b..cd791d54e 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/board/rpi_generic/rpi_generic.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/board/rpi_generic/rpi_generic.go @@ -11,9 +11,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/copy" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/copy" + "github.com/siderolabs/talos/pkg/machinery/constants" ) //go:embed config.txt diff --git a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/syslinux/syslinux.go b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/syslinux/syslinux.go index 7f7ac8fce..d5ec89cdf 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/syslinux/syslinux.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/syslinux/syslinux.go @@ -9,7 +9,7 @@ import ( "encoding/binary" "io" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" ) const ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/syslinux/syslinux_test.go b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/syslinux/syslinux_test.go index 2554800ac..d2616f4f0 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/syslinux/syslinux_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/syslinux/syslinux_test.go @@ -12,7 +12,7 @@ import ( "reflect" "testing" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" ) func TestNewADV(t *testing.T) { diff --git a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/talos/talos.go b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/talos/talos.go index 03c922366..613c85a94 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/talos/talos.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/talos/talos.go @@ -12,7 +12,7 @@ import ( "fmt" "io" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" ) // Basic constants configuring the ADV. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/talos/talos_test.go b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/talos/talos_test.go index 2ea82dcfc..fe1667290 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/talos/talos_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/talos/talos_test.go @@ -11,8 +11,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/talos" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/talos" ) func TestMarshalUnmarshal(t *testing.T) { diff --git a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/constants.go b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/constants.go index 7d1c165b6..14925dbcf 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/constants.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/constants.go @@ -4,7 +4,7 @@ package grub -import "github.com/talos-systems/talos/pkg/machinery/constants" +import "github.com/siderolabs/talos/pkg/machinery/constants" const ( // BootA is a bootloader label. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/grub.go b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/grub.go index 4a9ebc3d3..9b03d1221 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/grub.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/grub.go @@ -9,8 +9,8 @@ import ( "fmt" "path/filepath" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/version" ) // Config represents a grub configuration file (grub.cfg). diff --git a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/grub_test.go b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/grub_test.go index 08aab55c7..7b5ad179d 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/grub_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/grub_test.go @@ -18,8 +18,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub" + "github.com/siderolabs/talos/pkg/version" ) var ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/install.go b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/install.go index 74ad09080..1318e1676 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/install.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub/install.go @@ -14,7 +14,7 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) const ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/meta.go b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/meta.go index 7de733fee..45a230a88 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/bootloader/meta.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/bootloader/meta.go @@ -11,11 +11,11 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice/probe" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/syslinux" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/talos" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/syslinux" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv/talos" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Meta represents the meta reader. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/aws/aws.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/aws/aws.go index b55695774..6ea942505 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/aws/aws.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/aws/aws.go @@ -21,10 +21,10 @@ import ( "github.com/cosi-project/runtime/pkg/state" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // AWS is the concrete type that implements the runtime.Platform interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/aws/aws_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/aws/aws_test.go index c3d065f7b..086028627 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/aws/aws_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/aws/aws_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/aws" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/aws" ) //go:embed testdata/metadata.json diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/azure.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/azure.go index 27f18cc72..7dc2316ad 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/azure.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/azure.go @@ -23,11 +23,11 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // NetworkConfig holds network interface meta config. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/azure_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/azure_test.go index a77b7c3ed..6eab9ee66 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/azure_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/azure_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/azure" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/azure" ) //go:embed testdata/interfaces.json diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/metadata.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/metadata.go index ab081f2fb..94877f0f5 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/metadata.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/metadata.go @@ -10,8 +10,8 @@ import ( stderrors "errors" "fmt" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" ) const ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/register.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/register.go index 7c776f45e..83602cb00 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/register.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/azure/register.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/talos-systems/talos/pkg/download" + "github.com/siderolabs/talos/pkg/download" ) // This should provide the bare minimum to trigger a node in ready condition to allow diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/container/container.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/container/container.go index bfb3a1480..6fe7f82ec 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/container/container.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/container/container.go @@ -15,10 +15,10 @@ import ( "github.com/cosi-project/runtime/pkg/state" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // Container is a platform for installing Talos via an Container image. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean/digitalocean.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean/digitalocean.go index 95fe41c26..2dc85b92c 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean/digitalocean.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean/digitalocean.go @@ -15,13 +15,13 @@ import ( "github.com/cosi-project/runtime/pkg/state" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/utils" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/utils" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // DigitalOcean is the concrete type that implements the platform.Platform interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean/digitalocean_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean/digitalocean_test.go index 02b951fa7..568265369 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean/digitalocean_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean/digitalocean_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean" ) //go:embed testdata/metadata.json diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean/metadata.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean/metadata.go index 886697094..6c82b6137 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean/metadata.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean/metadata.go @@ -9,8 +9,8 @@ import ( "encoding/json" stderrors "errors" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" ) const ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/equinixmetal/equinix.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/equinixmetal/equinix.go index 3c7953adf..cad101432 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/equinixmetal/equinix.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/equinixmetal/equinix.go @@ -22,15 +22,15 @@ import ( "github.com/siderolabs/go-procfs/procfs" "github.com/siderolabs/go-retry/retry" - networkadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/network" - networkctrl "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + networkadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/network" + networkctrl "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // Event holds data to pass to the Equinix Metal event URL. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/equinixmetal/equinix_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/equinixmetal/equinix_test.go index a0b46d555..aee9dbcba 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/equinixmetal/equinix_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/equinixmetal/equinix_test.go @@ -17,9 +17,9 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/equinixmetal" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/equinixmetal" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) //go:embed testdata/metadata.json diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale/exoscale.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale/exoscale.go index c0ba366b2..9a943058e 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale/exoscale.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale/exoscale.go @@ -15,11 +15,11 @@ import ( "github.com/cosi-project/runtime/pkg/state" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // Exoscale is the concrete type that implements the runtime.Platform interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale/exoscale_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale/exoscale_test.go index 0c2bd7949..ed026d69c 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale/exoscale_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale/exoscale_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale" ) //go:embed testdata/metadata.json diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale/metadata.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale/metadata.go index 943fd2002..51522f6b3 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale/metadata.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale/metadata.go @@ -9,8 +9,8 @@ import ( stderrors "errors" "fmt" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" ) const ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/gcp/gcp.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/gcp/gcp.go index ebdac2b8c..6b48b82ae 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/gcp/gcp.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/gcp/gcp.go @@ -16,10 +16,10 @@ import ( "github.com/cosi-project/runtime/pkg/state" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // GCP is the concrete type that implements the platform.Platform interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/gcp/gcp_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/gcp/gcp_test.go index b7d47138a..472b867af 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/gcp/gcp_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/gcp/gcp_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/gcp" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/gcp" ) //go:embed testdata/metadata.json diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud/hcloud.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud/hcloud.go index 3b59d7226..fbde91bcd 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud/hcloud.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud/hcloud.go @@ -15,12 +15,12 @@ import ( "github.com/siderolabs/go-procfs/procfs" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // Hcloud is the concrete type that implements the runtime.Platform interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud/hcloud_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud/hcloud_test.go index 741f8f135..e0c8baeff 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud/hcloud_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud/hcloud_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud" ) //go:embed testdata/metadata.yaml diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud/metadata.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud/metadata.go index fe8d3ce79..ce2c19789 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud/metadata.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud/metadata.go @@ -9,8 +9,8 @@ import ( stderrors "errors" "log" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" ) const ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/metal.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/metal.go index 888e085ef..0955e64cb 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/metal.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/metal.go @@ -18,11 +18,11 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/constants" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/constants" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) const ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/metal_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/metal_test.go index 48cd29f11..0b3e386a8 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/metal_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/metal_test.go @@ -15,9 +15,9 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/metal" - "github.com/talos-systems/talos/pkg/machinery/resources/hardware" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/metal" + "github.com/siderolabs/talos/pkg/machinery/resources/hardware" ) func TestNetworkConfig(t *testing.T) { diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/url.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/url.go index 4dec9578c..6fea9351b 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/url.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/url.go @@ -15,9 +15,9 @@ import ( "github.com/cosi-project/runtime/pkg/safe" "github.com/cosi-project/runtime/pkg/state" - "github.com/talos-systems/talos/pkg/machinery/constants" - hardwareResource "github.com/talos-systems/talos/pkg/machinery/resources/hardware" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/constants" + hardwareResource "github.com/siderolabs/talos/pkg/machinery/resources/hardware" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // PopulateURLParameters fills in empty parameters in the download URL. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/url_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/url_test.go index cb0fa7830..1bc3b2596 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/url_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/metal/url_test.go @@ -21,11 +21,11 @@ import ( "github.com/siderolabs/go-procfs/procfs" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/metal" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/hardware" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/metal" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/hardware" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func createOrUpdate(ctx context.Context, st state.State, r resource.Resource) error { diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud/metadata.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud/metadata.go index e96fa7bf1..74442c19c 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud/metadata.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud/metadata.go @@ -21,12 +21,12 @@ import ( "golang.org/x/sys/unix" yaml "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/internal/pkg/smbios" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/internal/pkg/smbios" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) const ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud/nocloud.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud/nocloud.go index 5ab411366..2b00f0c54 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud/nocloud.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud/nocloud.go @@ -14,10 +14,10 @@ import ( "github.com/siderolabs/go-procfs/procfs" yaml "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // Nocloud is the concrete type that implements the runtime.Platform interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud/nocloud_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud/nocloud_test.go index 9858b99fa..5895488f8 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud/nocloud_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud/nocloud_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud" ) //go:embed testdata/metadata-v1.yaml diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack/metadata.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack/metadata.go index cf4a17848..a5783d9ec 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack/metadata.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack/metadata.go @@ -16,8 +16,8 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice/probe" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" ) const ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack/openstack.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack/openstack.go index 837b565fb..35ef9abeb 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack/openstack.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack/openstack.go @@ -20,13 +20,13 @@ import ( "github.com/cosi-project/runtime/pkg/state" "github.com/siderolabs/go-procfs/procfs" - networkadapter "github.com/talos-systems/talos/internal/app/machined/pkg/adapters/network" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/utils" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + networkadapter "github.com/siderolabs/talos/internal/app/machined/pkg/adapters/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/utils" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // Openstack is the concrete type that implements the runtime.Platform interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack/openstack_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack/openstack_test.go index 1f1cdf5e1..1d2878c66 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack/openstack_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack/openstack_test.go @@ -18,9 +18,9 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) //go:embed testdata/metadata.json diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle/metadata.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle/metadata.go index 1f2c42f44..299345d47 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle/metadata.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle/metadata.go @@ -9,8 +9,8 @@ import ( "encoding/json" "fmt" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" ) // Ref: https://docs.oracle.com/en-us/iaas/Content/Compute/Tasks/gettingmetadata.htm diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle/oracle.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle/oracle.go index 43d12b7af..e10dc3dc8 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle/oracle.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle/oracle.go @@ -16,11 +16,11 @@ import ( "github.com/cosi-project/runtime/pkg/state" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // NetworkConfig holds network interface meta config. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle/oracle_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle/oracle_test.go index bc73ef77a..7e7b0ac61 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle/oracle_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle/oracle_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle" ) //go:embed testdata/metadata.json diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/platform.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/platform.go index dac2ad052..895e60298 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/platform.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/platform.go @@ -14,24 +14,24 @@ import ( "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/aws" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/azure" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/container" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/equinixmetal" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/gcp" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/metal" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/vmware" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/aws" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/azure" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/container" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/digitalocean" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/equinixmetal" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/exoscale" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/gcp" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/hcloud" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/metal" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/nocloud" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/openstack" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/oracle" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/vmware" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Event is a struct used below in FireEvent diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway/metadata.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway/metadata.go index c3bd132f8..a135f7a2e 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway/metadata.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway/metadata.go @@ -11,7 +11,7 @@ import ( "github.com/scaleway/scaleway-sdk-go/api/instance/v1" - "github.com/talos-systems/talos/pkg/download" + "github.com/siderolabs/talos/pkg/download" ) const ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway/scaleway.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway/scaleway.go index 05c372648..dcc1e26f8 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway/scaleway.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway/scaleway.go @@ -17,12 +17,12 @@ import ( "github.com/scaleway/scaleway-sdk-go/api/instance/v1" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // Scaleway is the concrete type that implements the runtime.Platform interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway/scaleway_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway/scaleway_test.go index f3e799acf..e3ef3e723 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway/scaleway_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway/scaleway_test.go @@ -14,7 +14,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/scaleway" ) //go:embed testdata/metadata.json diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud/metadata.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud/metadata.go index 790b27862..c9c135835 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud/metadata.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud/metadata.go @@ -9,7 +9,7 @@ import ( "encoding/json" "fmt" - "github.com/talos-systems/talos/pkg/download" + "github.com/siderolabs/talos/pkg/download" ) const ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud/upcloud.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud/upcloud.go index 00cbdbb26..5719b1150 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud/upcloud.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud/upcloud.go @@ -14,12 +14,12 @@ import ( "github.com/cosi-project/runtime/pkg/state" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // UpCloud is the concrete type that implements the runtime.Platform interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud/upcloud_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud/upcloud_test.go index 27ea58c9c..a5c3a5906 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud/upcloud_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud/upcloud_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/upcloud" ) //go:embed testdata/metadata.json diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/vmware/vmware_amd64.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/vmware/vmware_amd64.go index b71c8e619..6f3b63935 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/vmware/vmware_amd64.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/vmware/vmware_amd64.go @@ -21,10 +21,10 @@ import ( "github.com/vmware/vmw-guestinfo/rpcvmx" "github.com/vmware/vmw-guestinfo/vmcheck" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - platformerrors "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/machinery/constants" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + platformerrors "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/machinery/constants" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // VMware is the concrete type that implements the platform.Platform interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/vmware/vmware_other.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/vmware/vmware_other.go index b245e03a9..7ccb7086c 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/vmware/vmware_other.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/vmware/vmware_other.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/state" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" ) // VMware is the concrete type that implements the platform.Platform interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr/metadata.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr/metadata.go index 4f56dbbc4..f685ea6b9 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr/metadata.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr/metadata.go @@ -11,7 +11,7 @@ import ( "github.com/vultr/metadata" - "github.com/talos-systems/talos/pkg/download" + "github.com/siderolabs/talos/pkg/download" ) const ( diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr/vultr.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr/vultr.go index 46ef0460d..c92e55d22 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr/vultr.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr/vultr.go @@ -17,12 +17,12 @@ import ( "github.com/siderolabs/go-procfs/procfs" "github.com/vultr/metadata" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/pkg/download" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/pkg/download" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // Vultr is the concrete type that implements the runtime.Platform interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr/vultr_test.go b/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr/vultr_test.go index 26137ba90..39c421813 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr/vultr_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr/vultr_test.go @@ -14,7 +14,7 @@ import ( "github.com/vultr/metadata" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/vultr" ) //go:embed testdata/metadata.json diff --git a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_controller.go b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_controller.go index 623d5314b..63c3ff92f 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_controller.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_controller.go @@ -18,12 +18,12 @@ import ( "golang.org/x/sync/errgroup" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/logging" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/acpi" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha2" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/logging" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/acpi" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha2" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/api/machine" ) // Controller represents the controller responsible for managing the execution diff --git a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_controller_test.go b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_controller_test.go index bc7c89b2f..5dd3ab2fd 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_controller_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_controller_test.go @@ -18,10 +18,10 @@ import ( "github.com/stretchr/testify/require" "golang.org/x/sync/errgroup" - v1alpha1server "github.com/talos-systems/talos/internal/app/machined/internal/server/v1alpha1" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/logging" - "github.com/talos-systems/talos/pkg/machinery/api/machine" + v1alpha1server "github.com/siderolabs/talos/internal/app/machined/internal/server/v1alpha1" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/logging" + "github.com/siderolabs/talos/pkg/machinery/api/machine" ) type mockSequencer struct { diff --git a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_dbus.go b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_dbus.go index e424e379f..ad27ab4d8 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_dbus.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_dbus.go @@ -11,8 +11,8 @@ import ( "path/filepath" "time" - "github.com/talos-systems/talos/internal/pkg/logind" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/pkg/logind" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // DBusState implements the logind mock. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_events.go b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_events.go index fa3289dd1..2ad6795a9 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_events.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_events.go @@ -10,8 +10,8 @@ import ( "sync" "time" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // Events represents the runtime event stream. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_events_test.go b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_events_test.go index 8857e4a1f..282852d00 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_events_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_events_test.go @@ -17,8 +17,8 @@ import ( "github.com/stretchr/testify/assert" "golang.org/x/time/rate" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/machinery/api/machine" ) func TestEvents_Publish(t *testing.T) { diff --git a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_priority_lock.go b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_priority_lock.go index b496b1400..3f178cf09 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_priority_lock.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_priority_lock.go @@ -10,7 +10,7 @@ import ( "sync" "time" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" ) // Priority describes the running priority of a process. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_priority_lock_test.go b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_priority_lock_test.go index 19362454a..0a3a69232 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_priority_lock_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_priority_lock_test.go @@ -13,8 +13,8 @@ import ( "github.com/stretchr/testify/require" "golang.org/x/sync/errgroup" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1" ) type testSequenceNumber int diff --git a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_runtime.go b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_runtime.go index 22417a51d..326842545 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_runtime.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_runtime.go @@ -15,13 +15,13 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "github.com/google/go-cmp/cmp" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/services" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/services" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // Runtime implements the Runtime interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_sequencer.go b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_sequencer.go index 941ec5da1..0f87dd71f 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_sequencer.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_sequencer.go @@ -7,10 +7,10 @@ package v1alpha1 import ( "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Sequencer implements the sequencer interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_sequencer_tasks.go b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_sequencer_tasks.go index 2e6d5485e..35f7c1f68 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_sequencer_tasks.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_sequencer_tasks.go @@ -42,37 +42,37 @@ import ( runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2" "kernel.org/pub/linux/libs/security/libcap/cap" - installer "github.com/talos-systems/talos/cmd/installer/pkg/install" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform" - perrors "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/services" - "github.com/talos-systems/talos/internal/app/maintenance" - "github.com/talos-systems/talos/internal/pkg/cri" - "github.com/talos-systems/talos/internal/pkg/etcd" - "github.com/talos-systems/talos/internal/pkg/install" - "github.com/talos-systems/talos/internal/pkg/mount" - "github.com/talos-systems/talos/internal/pkg/partition" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/images" - krnl "github.com/talos-systems/talos/pkg/kernel" - "github.com/talos-systems/talos/pkg/kernel/kspp" - "github.com/talos-systems/talos/pkg/kubernetes" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/kernel" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - resourceruntime "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/version" + installer "github.com/siderolabs/talos/cmd/installer/pkg/install" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/grub" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform" + perrors "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/services" + "github.com/siderolabs/talos/internal/app/maintenance" + "github.com/siderolabs/talos/internal/pkg/cri" + "github.com/siderolabs/talos/internal/pkg/etcd" + "github.com/siderolabs/talos/internal/pkg/install" + "github.com/siderolabs/talos/internal/pkg/mount" + "github.com/siderolabs/talos/internal/pkg/partition" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/images" + krnl "github.com/siderolabs/talos/pkg/kernel" + "github.com/siderolabs/talos/pkg/kernel/kspp" + "github.com/siderolabs/talos/pkg/kubernetes" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/kernel" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + resourceruntime "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/version" ) // SetupLogger represents the SetupLogger task. @@ -380,7 +380,7 @@ ID={{ .ID }} VERSION_ID={{ .Version }} PRETTY_NAME="{{ .Name }} ({{ .Version }})" HOME_URL="https://www.talos.dev/" -BUG_REPORT_URL="https://github.com/talos-systems/talos/issues" +BUG_REPORT_URL="https://github.com/siderolabs/talos/issues" ` // OSRelease renders a valid /etc/os-release file and writes it to disk. The diff --git a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_sequencer_test.go b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_sequencer_test.go index 2ea3b1602..02ce6bacd 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_sequencer_test.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_sequencer_test.go @@ -9,7 +9,7 @@ import ( "reflect" "testing" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" ) func TestNewSequencer(t *testing.T) { diff --git a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_state.go b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_state.go index 68ac342df..d5ca3d44e 100644 --- a/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_state.go +++ b/internal/app/machined/pkg/runtime/v1alpha1/v1alpha1_state.go @@ -11,13 +11,13 @@ import ( multierror "github.com/hashicorp/go-multierror" "github.com/siderolabs/go-blockdevice/blockdevice/probe" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/disk" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/platform" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha2" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/disk" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha2" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // State implements the state interface. diff --git a/internal/app/machined/pkg/runtime/v1alpha2/v1alpha2_controller.go b/internal/app/machined/pkg/runtime/v1alpha2/v1alpha2_controller.go index 154a298aa..67cbed7e6 100644 --- a/internal/app/machined/pkg/runtime/v1alpha2/v1alpha2_controller.go +++ b/internal/app/machined/pkg/runtime/v1alpha2/v1alpha2_controller.go @@ -20,29 +20,29 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zapcore" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/cluster" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/config" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/cri" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/etcd" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/files" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/hardware" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/k8s" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/kubeaccess" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/kubespan" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/network" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/perf" - runtimecontrollers "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/secrets" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/siderolink" - timecontrollers "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/time" - "github.com/talos-systems/talos/internal/app/machined/pkg/controllers/v1alpha1" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - runtimelogging "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/logging" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/pkg/logging" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" - configresource "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/cluster" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/config" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/cri" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/etcd" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/files" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/hardware" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/k8s" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/kubeaccess" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/kubespan" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/perf" + runtimecontrollers "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/secrets" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/siderolink" + timecontrollers "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/time" + "github.com/siderolabs/talos/internal/app/machined/pkg/controllers/v1alpha1" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + runtimelogging "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/logging" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/pkg/logging" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" + configresource "github.com/siderolabs/talos/pkg/machinery/resources/config" ) // Controller implements runtime.V1alpha2Controller. diff --git a/internal/app/machined/pkg/runtime/v1alpha2/v1alpha2_state.go b/internal/app/machined/pkg/runtime/v1alpha2/v1alpha2_state.go index 0168fd965..3fa76b4a0 100644 --- a/internal/app/machined/pkg/runtime/v1alpha2/v1alpha2_state.go +++ b/internal/app/machined/pkg/runtime/v1alpha2/v1alpha2_state.go @@ -13,22 +13,22 @@ import ( "github.com/cosi-project/runtime/pkg/state/impl/namespaced" "github.com/cosi-project/runtime/pkg/state/registry" - talosconfig "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/config" - "github.com/talos-systems/talos/pkg/machinery/resources/cri" - "github.com/talos-systems/talos/pkg/machinery/resources/etcd" - "github.com/talos-systems/talos/pkg/machinery/resources/files" - "github.com/talos-systems/talos/pkg/machinery/resources/hardware" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/kubeaccess" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/perf" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - "github.com/talos-systems/talos/pkg/machinery/resources/time" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + talosconfig "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/cri" + "github.com/siderolabs/talos/pkg/machinery/resources/etcd" + "github.com/siderolabs/talos/pkg/machinery/resources/files" + "github.com/siderolabs/talos/pkg/machinery/resources/hardware" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/kubeaccess" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/perf" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // State implements runtime.V1alpha2State interface. diff --git a/internal/app/machined/pkg/system/events/events.go b/internal/app/machined/pkg/system/events/events.go index 9c11a4c17..5c3b1b800 100644 --- a/internal/app/machined/pkg/system/events/events.go +++ b/internal/app/machined/pkg/system/events/events.go @@ -10,8 +10,8 @@ import ( "github.com/siderolabs/gen/slices" "google.golang.org/protobuf/types/known/timestamppb" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" ) // MaxEventsToKeep is maximum number of events to keep per service before dropping old entries. diff --git a/internal/app/machined/pkg/system/events/events_test.go b/internal/app/machined/pkg/system/events/events_test.go index f49d76ce5..c38559170 100644 --- a/internal/app/machined/pkg/system/events/events_test.go +++ b/internal/app/machined/pkg/system/events/events_test.go @@ -11,7 +11,7 @@ import ( "github.com/siderolabs/gen/slices" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" ) type EventsSuite struct { diff --git a/internal/app/machined/pkg/system/health/health_test.go b/internal/app/machined/pkg/system/health/health_test.go index 9adfb7ba0..fb625471d 100644 --- a/internal/app/machined/pkg/system/health/health_test.go +++ b/internal/app/machined/pkg/system/health/health_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" ) type CheckSuite struct { diff --git a/internal/app/machined/pkg/system/health/status.go b/internal/app/machined/pkg/system/health/status.go index 6212e3ec7..3c11da444 100644 --- a/internal/app/machined/pkg/system/health/status.go +++ b/internal/app/machined/pkg/system/health/status.go @@ -10,7 +10,7 @@ import ( "google.golang.org/protobuf/types/known/timestamppb" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" ) // Status of the healthcheck. diff --git a/internal/app/machined/pkg/system/mocks_test.go b/internal/app/machined/pkg/system/mocks_test.go index 2489a8612..4795a67ab 100644 --- a/internal/app/machined/pkg/system/mocks_test.go +++ b/internal/app/machined/pkg/system/mocks_test.go @@ -10,11 +10,11 @@ import ( "sync/atomic" "time" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/pkg/conditions" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/pkg/conditions" ) type MockService struct { diff --git a/internal/app/machined/pkg/system/runner/containerd/containerd.go b/internal/app/machined/pkg/system/runner/containerd/containerd.go index bb33c7d15..8a6ee0b03 100644 --- a/internal/app/machined/pkg/system/runner/containerd/containerd.go +++ b/internal/app/machined/pkg/system/runner/containerd/containerd.go @@ -20,8 +20,8 @@ import ( "github.com/containerd/containerd/namespaces" "github.com/containerd/containerd/oci" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" ) // containerdRunner is a runner.Runner that runs container in containerd. diff --git a/internal/app/machined/pkg/system/runner/containerd/containerd_test.go b/internal/app/machined/pkg/system/runner/containerd/containerd_test.go index 48b205be4..55181c296 100644 --- a/internal/app/machined/pkg/system/runner/containerd/containerd_test.go +++ b/internal/app/machined/pkg/system/runner/containerd/containerd_test.go @@ -26,14 +26,14 @@ import ( specs "github.com/opencontainers/runtime-spec/specs-go" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/logging" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - containerdrunner "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/containerd" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/process" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/restart" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/logging" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + containerdrunner "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/containerd" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/process" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/restart" + "github.com/siderolabs/talos/pkg/machinery/constants" ) const ( diff --git a/internal/app/machined/pkg/system/runner/containerd/import.go b/internal/app/machined/pkg/system/runner/containerd/import.go index 7b3c556c9..f438d7d6a 100644 --- a/internal/app/machined/pkg/system/runner/containerd/import.go +++ b/internal/app/machined/pkg/system/runner/containerd/import.go @@ -14,8 +14,8 @@ import ( "github.com/containerd/containerd/namespaces" multierror "github.com/hashicorp/go-multierror" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // ImportRequest represents an image import request. diff --git a/internal/app/machined/pkg/system/runner/goroutine/goroutine.go b/internal/app/machined/pkg/system/runner/goroutine/goroutine.go index 7b1ab5732..5c5ddc591 100644 --- a/internal/app/machined/pkg/system/runner/goroutine/goroutine.go +++ b/internal/app/machined/pkg/system/runner/goroutine/goroutine.go @@ -12,9 +12,9 @@ import ( stdlibruntime "runtime" "sync" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" ) // goroutineRunner is a runner.Runner that runs a service in a goroutine. diff --git a/internal/app/machined/pkg/system/runner/goroutine/goroutine_test.go b/internal/app/machined/pkg/system/runner/goroutine/goroutine_test.go index 49b08e0b3..900cbc0d4 100644 --- a/internal/app/machined/pkg/system/runner/goroutine/goroutine_test.go +++ b/internal/app/machined/pkg/system/runner/goroutine/goroutine_test.go @@ -17,13 +17,13 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/logging" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/goroutine" - v1alpha1cfg "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/logging" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/goroutine" + v1alpha1cfg "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) func MockEventSink(state events.ServiceState, message string, args ...interface{}) { diff --git a/internal/app/machined/pkg/system/runner/process/process.go b/internal/app/machined/pkg/system/runner/process/process.go index 2ff06ac14..484560eba 100644 --- a/internal/app/machined/pkg/system/runner/process/process.go +++ b/internal/app/machined/pkg/system/runner/process/process.go @@ -18,9 +18,9 @@ import ( "github.com/containerd/containerd/sys" "github.com/siderolabs/go-cmd/pkg/cmd/proc/reaper" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // processRunner is a runner.Runner that runs a process on the host. diff --git a/internal/app/machined/pkg/system/runner/process/process_test.go b/internal/app/machined/pkg/system/runner/process/process_test.go index 65190a8cf..b2255c766 100644 --- a/internal/app/machined/pkg/system/runner/process/process_test.go +++ b/internal/app/machined/pkg/system/runner/process/process_test.go @@ -17,12 +17,12 @@ import ( "github.com/siderolabs/go-cmd/pkg/cmd/proc/reaper" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/logging" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/process" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/restart" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/logging" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/process" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/restart" ) func MockEventSink(state events.ServiceState, message string, args ...interface{}) { diff --git a/internal/app/machined/pkg/system/runner/restart/restart.go b/internal/app/machined/pkg/system/runner/restart/restart.go index 2d888a689..a3b993c11 100644 --- a/internal/app/machined/pkg/system/runner/restart/restart.go +++ b/internal/app/machined/pkg/system/runner/restart/restart.go @@ -8,8 +8,8 @@ import ( "fmt" "time" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" ) type restarter struct { diff --git a/internal/app/machined/pkg/system/runner/restart/restart_test.go b/internal/app/machined/pkg/system/runner/restart/restart_test.go index 0d1d87abc..047714b77 100644 --- a/internal/app/machined/pkg/system/runner/restart/restart_test.go +++ b/internal/app/machined/pkg/system/runner/restart/restart_test.go @@ -13,8 +13,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/restart" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/restart" ) type RestartSuite struct { diff --git a/internal/app/machined/pkg/system/runner/runner.go b/internal/app/machined/pkg/system/runner/runner.go index 4c47d1256..877591a08 100644 --- a/internal/app/machined/pkg/system/runner/runner.go +++ b/internal/app/machined/pkg/system/runner/runner.go @@ -14,10 +14,10 @@ import ( "github.com/containerd/containerd/oci" "github.com/opencontainers/runtime-spec/specs-go" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/logging" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/logging" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Runner describes the requirements for running a process. diff --git a/internal/app/machined/pkg/system/service.go b/internal/app/machined/pkg/system/service.go index f1fe2c5f7..428762be0 100644 --- a/internal/app/machined/pkg/system/service.go +++ b/internal/app/machined/pkg/system/service.go @@ -7,11 +7,11 @@ package system import ( "context" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/pkg/conditions" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/pkg/conditions" ) // Service is an interface describing a system service. diff --git a/internal/app/machined/pkg/system/service_events.go b/internal/app/machined/pkg/system/service_events.go index 4b046cd05..bdf3c422d 100644 --- a/internal/app/machined/pkg/system/service_events.go +++ b/internal/app/machined/pkg/system/service_events.go @@ -10,7 +10,7 @@ import ( "sync" "time" - "github.com/talos-systems/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/conditions" ) // StateEvent is a service event (e.g. 'up', 'down'). diff --git a/internal/app/machined/pkg/system/service_runner.go b/internal/app/machined/pkg/system/service_runner.go index 969fabd4b..8028860b3 100644 --- a/internal/app/machined/pkg/system/service_runner.go +++ b/internal/app/machined/pkg/system/service_runner.go @@ -13,12 +13,12 @@ import ( "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/pkg/conditions" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/pkg/conditions" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" ) // WaitConditionCheckInterval is time between checking for wait condition diff --git a/internal/app/machined/pkg/system/service_runner_test.go b/internal/app/machined/pkg/system/service_runner_test.go index ae1a60e97..a98887dc5 100644 --- a/internal/app/machined/pkg/system/service_runner_test.go +++ b/internal/app/machined/pkg/system/service_runner_test.go @@ -12,9 +12,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/pkg/conditions" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/pkg/conditions" ) type ServiceRunnerSuite struct { diff --git a/internal/app/machined/pkg/system/services/apid.go b/internal/app/machined/pkg/system/services/apid.go index 1b01c219a..82ebcbb01 100644 --- a/internal/app/machined/pkg/system/services/apid.go +++ b/internal/app/machined/pkg/system/services/apid.go @@ -22,17 +22,17 @@ import ( "github.com/siderolabs/go-debug" "google.golang.org/grpc" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/containerd" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/restart" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/containerd" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/restart" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) var _ system.HealthcheckedService = (*APID)(nil) diff --git a/internal/app/machined/pkg/system/services/containerd.go b/internal/app/machined/pkg/system/services/containerd.go index b2c01a124..1d1d9f494 100644 --- a/internal/app/machined/pkg/system/services/containerd.go +++ b/internal/app/machined/pkg/system/services/containerd.go @@ -12,15 +12,15 @@ import ( "github.com/containerd/containerd" "google.golang.org/grpc/health/grpc_health_v1" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/process" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/restart" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/process" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/restart" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var _ system.HealthcheckedService = (*Containerd)(nil) diff --git a/internal/app/machined/pkg/system/services/cri.go b/internal/app/machined/pkg/system/services/cri.go index 7075879e0..d45d861cd 100644 --- a/internal/app/machined/pkg/system/services/cri.go +++ b/internal/app/machined/pkg/system/services/cri.go @@ -13,16 +13,16 @@ import ( "github.com/containerd/containerd/defaults" "google.golang.org/grpc/health/grpc_health_v1" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/process" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/restart" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/process" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/restart" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) var _ system.HealthcheckedService = (*CRI)(nil) diff --git a/internal/app/machined/pkg/system/services/etcd.go b/internal/app/machined/pkg/system/services/etcd.go index a878215d1..eed25aee0 100644 --- a/internal/app/machined/pkg/system/services/etcd.go +++ b/internal/app/machined/pkg/system/services/etcd.go @@ -29,29 +29,29 @@ import ( clientv3 "go.etcd.io/etcd/client/v3" snapshot "go.etcd.io/etcd/etcdutl/v3/snapshot" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/containerd" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/restart" - "github.com/talos-systems/talos/internal/pkg/containers/image" - "github.com/talos-systems/talos/internal/pkg/etcd" - "github.com/talos-systems/talos/pkg/argsbuilder" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/filetree" - "github.com/talos-systems/talos/pkg/logging" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - etcdresource "github.com/talos-systems/talos/pkg/machinery/resources/etcd" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - timeresource "github.com/talos-systems/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/bootloader/adv" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/containerd" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/restart" + "github.com/siderolabs/talos/internal/pkg/containers/image" + "github.com/siderolabs/talos/internal/pkg/etcd" + "github.com/siderolabs/talos/pkg/argsbuilder" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/filetree" + "github.com/siderolabs/talos/pkg/logging" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + etcdresource "github.com/siderolabs/talos/pkg/machinery/resources/etcd" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + timeresource "github.com/siderolabs/talos/pkg/machinery/resources/time" ) var _ system.HealthcheckedService = (*Etcd)(nil) diff --git a/internal/app/machined/pkg/system/services/extension.go b/internal/app/machined/pkg/system/services/extension.go index df77f4b76..158f6a0dd 100644 --- a/internal/app/machined/pkg/system/services/extension.go +++ b/internal/app/machined/pkg/system/services/extension.go @@ -14,18 +14,18 @@ import ( "github.com/containerd/containerd/oci" specs "github.com/opencontainers/runtime-spec/specs-go" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/containerd" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/restart" - "github.com/talos-systems/talos/internal/pkg/capability" - "github.com/talos-systems/talos/internal/pkg/mount" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/machinery/constants" - extservices "github.com/talos-systems/talos/pkg/machinery/extensions/services" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/containerd" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/restart" + "github.com/siderolabs/talos/internal/pkg/capability" + "github.com/siderolabs/talos/internal/pkg/mount" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/machinery/constants" + extservices "github.com/siderolabs/talos/pkg/machinery/extensions/services" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/time" ) // Extension service is a generic wrapper around extension services spec. diff --git a/internal/app/machined/pkg/system/services/extension_test.go b/internal/app/machined/pkg/system/services/extension_test.go index 3af29a44f..8dc39e38d 100644 --- a/internal/app/machined/pkg/system/services/extension_test.go +++ b/internal/app/machined/pkg/system/services/extension_test.go @@ -15,9 +15,9 @@ import ( "github.com/golang/mock/gomock" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/services" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/services/mocks" - extservices "github.com/talos-systems/talos/pkg/machinery/extensions/services" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/services" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/services/mocks" + extservices "github.com/siderolabs/talos/pkg/machinery/extensions/services" ) type MockClient struct { diff --git a/internal/app/machined/pkg/system/services/kubelet.go b/internal/app/machined/pkg/system/services/kubelet.go index c2f9fe36d..54c42f645 100644 --- a/internal/app/machined/pkg/system/services/kubelet.go +++ b/internal/app/machined/pkg/system/services/kubelet.go @@ -18,21 +18,21 @@ import ( "github.com/cosi-project/runtime/pkg/state" specs "github.com/opencontainers/runtime-spec/specs-go" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/containerd" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/restart" - "github.com/talos-systems/talos/internal/pkg/capability" - "github.com/talos-systems/talos/internal/pkg/containers/image" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - timeresource "github.com/talos-systems/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/containerd" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/restart" + "github.com/siderolabs/talos/internal/pkg/capability" + "github.com/siderolabs/talos/internal/pkg/containers/image" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + timeresource "github.com/siderolabs/talos/pkg/machinery/resources/time" ) var _ system.HealthcheckedService = (*Kubelet)(nil) diff --git a/internal/app/machined/pkg/system/services/machined.go b/internal/app/machined/pkg/system/services/machined.go index 662694a30..7764a47ba 100644 --- a/internal/app/machined/pkg/system/services/machined.go +++ b/internal/app/machined/pkg/system/services/machined.go @@ -13,18 +13,18 @@ import ( "path/filepath" "time" - v1alpha1server "github.com/talos-systems/talos/internal/app/machined/internal/server/v1alpha1" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/goroutine" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/grpc/factory" - "github.com/talos-systems/talos/pkg/grpc/middleware/authz" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/role" + v1alpha1server "github.com/siderolabs/talos/internal/app/machined/internal/server/v1alpha1" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/goroutine" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/grpc/factory" + "github.com/siderolabs/talos/pkg/grpc/middleware/authz" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/role" ) var rules = map[string]role.Set{ diff --git a/internal/app/machined/pkg/system/services/machined_test.go b/internal/app/machined/pkg/system/services/machined_test.go index 57e19921a..aed2a291c 100644 --- a/internal/app/machined/pkg/system/services/machined_test.go +++ b/internal/app/machined/pkg/system/services/machined_test.go @@ -13,12 +13,12 @@ import ( "github.com/stretchr/testify/require" "google.golang.org/grpc" - "github.com/talos-systems/talos/pkg/machinery/api/cluster" - "github.com/talos-systems/talos/pkg/machinery/api/inspect" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/api/resource" - "github.com/talos-systems/talos/pkg/machinery/api/storage" - "github.com/talos-systems/talos/pkg/machinery/api/time" + "github.com/siderolabs/talos/pkg/machinery/api/cluster" + "github.com/siderolabs/talos/pkg/machinery/api/inspect" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/api/resource" + "github.com/siderolabs/talos/pkg/machinery/api/storage" + "github.com/siderolabs/talos/pkg/machinery/api/time" ) func collectMethods(t *testing.T) map[string]struct{} { diff --git a/internal/app/machined/pkg/system/services/trustd.go b/internal/app/machined/pkg/system/services/trustd.go index 394520da3..97c5d83c0 100644 --- a/internal/app/machined/pkg/system/services/trustd.go +++ b/internal/app/machined/pkg/system/services/trustd.go @@ -21,18 +21,18 @@ import ( "github.com/siderolabs/go-debug" "google.golang.org/grpc" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/containerd" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/restart" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - timeresource "github.com/talos-systems/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/containerd" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/restart" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + timeresource "github.com/siderolabs/talos/pkg/machinery/resources/time" ) var _ system.HealthcheckedService = (*Trustd)(nil) diff --git a/internal/app/machined/pkg/system/services/udevd.go b/internal/app/machined/pkg/system/services/udevd.go index a2db91c7f..147b5f563 100644 --- a/internal/app/machined/pkg/system/services/udevd.go +++ b/internal/app/machined/pkg/system/services/udevd.go @@ -11,15 +11,15 @@ import ( "github.com/siderolabs/go-cmd/pkg/cmd" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/health" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/process" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/restart" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/health" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/process" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/restart" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var _ system.HealthcheckedService = (*Udevd)(nil) diff --git a/internal/app/machined/pkg/system/services/utils.go b/internal/app/machined/pkg/system/services/utils.go index 8d71c3c42..307b76532 100644 --- a/internal/app/machined/pkg/system/services/utils.go +++ b/internal/app/machined/pkg/system/services/utils.go @@ -11,7 +11,7 @@ import ( "golang.org/x/sys/unix" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // prepareRootfs creates /system/libexec/ rootfs and bind-mounts /sbin/init there. diff --git a/internal/app/machined/pkg/system/system.go b/internal/app/machined/pkg/system/system.go index a228cc6ee..3733707d8 100644 --- a/internal/app/machined/pkg/system/system.go +++ b/internal/app/machined/pkg/system/system.go @@ -16,8 +16,8 @@ import ( "github.com/siderolabs/gen/maps" "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/conditions" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/conditions" ) // singleton the system services API interface. diff --git a/internal/app/machined/pkg/system/system_test.go b/internal/app/machined/pkg/system/system_test.go index 61e66e108..21371ad12 100644 --- a/internal/app/machined/pkg/system/system_test.go +++ b/internal/app/machined/pkg/system/system_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" ) type SystemServicesSuite struct { diff --git a/internal/app/maintenance/main.go b/internal/app/maintenance/main.go index f2e0215e9..e12e524d1 100644 --- a/internal/app/maintenance/main.go +++ b/internal/app/maintenance/main.go @@ -23,13 +23,13 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/credentials" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/maintenance/server" - "github.com/talos-systems/talos/pkg/grpc/factory" - "github.com/talos-systems/talos/pkg/grpc/gen" - "github.com/talos-systems/talos/pkg/grpc/middleware/authz" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/maintenance/server" + "github.com/siderolabs/talos/pkg/grpc/factory" + "github.com/siderolabs/talos/pkg/grpc/gen" + "github.com/siderolabs/talos/pkg/grpc/middleware/authz" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) var ctrl runtime.Controller diff --git a/internal/app/maintenance/server/peer.go b/internal/app/maintenance/server/peer.go index f294d97fe..7659ec6f3 100644 --- a/internal/app/maintenance/server/peer.go +++ b/internal/app/maintenance/server/peer.go @@ -13,7 +13,7 @@ import ( "google.golang.org/grpc/peer" "google.golang.org/grpc/status" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func verifyPeer(ctx context.Context, condition func(netip.Addr) bool) bool { diff --git a/internal/app/maintenance/server/server.go b/internal/app/maintenance/server/server.go index 32868cbdc..6fea5d8db 100644 --- a/internal/app/maintenance/server/server.go +++ b/internal/app/maintenance/server/server.go @@ -19,16 +19,16 @@ import ( "google.golang.org/grpc/status" "google.golang.org/protobuf/types/known/emptypb" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/resources" - storaged "github.com/talos-systems/talos/internal/app/storaged" - "github.com/talos-systems/talos/internal/pkg/configuration" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/api/resource" - "github.com/talos-systems/talos/pkg/machinery/api/storage" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - v1alpha1machine "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/resources" + storaged "github.com/siderolabs/talos/internal/app/storaged" + "github.com/siderolabs/talos/internal/pkg/configuration" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/api/resource" + "github.com/siderolabs/talos/pkg/machinery/api/storage" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + v1alpha1machine "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/version" ) // Server implements machine.MachineService, network.NetworkService, and storage.StorageService. diff --git a/internal/app/poweroff/main.go b/internal/app/poweroff/main.go index 24ea3ea01..6aa3a4660 100644 --- a/internal/app/poweroff/main.go +++ b/internal/app/poweroff/main.go @@ -13,10 +13,10 @@ import ( "google.golang.org/grpc/credentials/insecure" "google.golang.org/grpc/metadata" - "github.com/talos-systems/talos/pkg/grpc/middleware/authz" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/grpc/middleware/authz" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/role" ) // Main is the entrypoint into /sbin/poweroff. diff --git a/internal/app/resources/access.go b/internal/app/resources/access.go index caa0ad826..9ad24d87b 100644 --- a/internal/app/resources/access.go +++ b/internal/app/resources/access.go @@ -16,8 +16,8 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/talos-systems/talos/pkg/grpc/middleware/authz" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/grpc/middleware/authz" + "github.com/siderolabs/talos/pkg/machinery/role" ) // AccessPolicy defines the access policy for resources accessed via the API. diff --git a/internal/app/resources/server.go b/internal/app/resources/server.go index af33feb30..e5faf805a 100644 --- a/internal/app/resources/server.go +++ b/internal/app/resources/server.go @@ -19,7 +19,7 @@ import ( timestamppb "google.golang.org/protobuf/types/known/timestamppb" yaml "gopkg.in/yaml.v3" - resourceapi "github.com/talos-systems/talos/pkg/machinery/api/resource" + resourceapi "github.com/siderolabs/talos/pkg/machinery/api/resource" ) // Server implements ResourceService API. diff --git a/internal/app/storaged/server.go b/internal/app/storaged/server.go index e63a4290a..289f68996 100644 --- a/internal/app/storaged/server.go +++ b/internal/app/storaged/server.go @@ -12,7 +12,7 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice/util/disk" "google.golang.org/protobuf/types/known/emptypb" - "github.com/talos-systems/talos/pkg/machinery/api/storage" + "github.com/siderolabs/talos/pkg/machinery/api/storage" ) // Server implements storage.StorageService. diff --git a/internal/app/trustd/internal/provider/provider.go b/internal/app/trustd/internal/provider/provider.go index 18d745e68..34465ecc0 100644 --- a/internal/app/trustd/internal/provider/provider.go +++ b/internal/app/trustd/internal/provider/provider.go @@ -16,7 +16,7 @@ import ( "github.com/cosi-project/runtime/pkg/state" "github.com/siderolabs/crypto/tls" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // TLSConfig provides client & server TLS configs for trustd. diff --git a/internal/app/trustd/internal/reg/reg.go b/internal/app/trustd/internal/reg/reg.go index 7b47de91f..b09aaddf1 100644 --- a/internal/app/trustd/internal/reg/reg.go +++ b/internal/app/trustd/internal/reg/reg.go @@ -20,8 +20,8 @@ import ( "google.golang.org/grpc/peer" "google.golang.org/grpc/status" - securityapi "github.com/talos-systems/talos/pkg/machinery/api/security" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + securityapi "github.com/siderolabs/talos/pkg/machinery/api/security" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) // Registrator is the concrete type that implements the factory.Registrator and diff --git a/internal/app/trustd/internal/reg/reg_test.go b/internal/app/trustd/internal/reg/reg_test.go index 7d81647b4..5b077085a 100644 --- a/internal/app/trustd/internal/reg/reg_test.go +++ b/internal/app/trustd/internal/reg/reg_test.go @@ -20,11 +20,11 @@ import ( "github.com/stretchr/testify/require" "google.golang.org/grpc/peer" - "github.com/talos-systems/talos/internal/app/trustd/internal/reg" - "github.com/talos-systems/talos/pkg/machinery/api/security" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/internal/app/trustd/internal/reg" + "github.com/siderolabs/talos/pkg/machinery/api/security" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/role" ) func TestCertificate(t *testing.T) { diff --git a/internal/app/trustd/main.go b/internal/app/trustd/main.go index b31f767e2..9d5844efa 100644 --- a/internal/app/trustd/main.go +++ b/internal/app/trustd/main.go @@ -24,13 +24,13 @@ import ( "google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials/insecure" - "github.com/talos-systems/talos/internal/app/trustd/internal/provider" - "github.com/talos-systems/talos/internal/app/trustd/internal/reg" - "github.com/talos-systems/talos/pkg/grpc/factory" - "github.com/talos-systems/talos/pkg/grpc/middleware/auth/basic" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" - "github.com/talos-systems/talos/pkg/startup" + "github.com/siderolabs/talos/internal/app/trustd/internal/provider" + "github.com/siderolabs/talos/internal/app/trustd/internal/reg" + "github.com/siderolabs/talos/pkg/grpc/factory" + "github.com/siderolabs/talos/pkg/grpc/middleware/auth/basic" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/startup" ) func runDebugServer(ctx context.Context) { diff --git a/internal/integration/api/apid.go b/internal/integration/api/apid.go index c40d24b38..ffc568047 100644 --- a/internal/integration/api/apid.go +++ b/internal/integration/api/apid.go @@ -12,9 +12,9 @@ import ( "google.golang.org/grpc/codes" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // ApidSuite verifies Discovery API. diff --git a/internal/integration/api/apply-config.go b/internal/integration/api/apply-config.go index c1b02c9eb..135dcf68b 100644 --- a/internal/integration/api/apply-config.go +++ b/internal/integration/api/apply-config.go @@ -22,14 +22,14 @@ import ( "google.golang.org/grpc/status" "google.golang.org/protobuf/types/known/durationpb" - "github.com/talos-systems/talos/internal/integration/base" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - mc "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/internal/integration/base" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + mc "github.com/siderolabs/talos/pkg/machinery/resources/config" ) // Sysctl to use for testing config changes. diff --git a/internal/integration/api/discovery.go b/internal/integration/api/discovery.go index 994eabe52..3deed7492 100644 --- a/internal/integration/api/discovery.go +++ b/internal/integration/api/discovery.go @@ -19,10 +19,10 @@ import ( "github.com/siderolabs/gen/slices" "github.com/siderolabs/gen/value" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" ) // DiscoverySuite verifies Discovery API. diff --git a/internal/integration/api/diskusage.go b/internal/integration/api/diskusage.go index 798a78b47..7ca917d82 100644 --- a/internal/integration/api/diskusage.go +++ b/internal/integration/api/diskusage.go @@ -13,9 +13,9 @@ import ( "google.golang.org/grpc/codes" - "github.com/talos-systems/talos/internal/integration/base" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/internal/integration/base" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) // DiskUsageSuite verifies Logs API. diff --git a/internal/integration/api/dmesg.go b/internal/integration/api/dmesg.go index d8fa17fbf..39a08af75 100644 --- a/internal/integration/api/dmesg.go +++ b/internal/integration/api/dmesg.go @@ -11,9 +11,9 @@ import ( "io" "time" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/client" ) // DmesgSuite verifies Dmesg API. diff --git a/internal/integration/api/etcd-recover.go b/internal/integration/api/etcd-recover.go index 689282b57..03c012fef 100644 --- a/internal/integration/api/etcd-recover.go +++ b/internal/integration/api/etcd-recover.go @@ -18,11 +18,11 @@ import ( "github.com/siderolabs/go-retry/retry" "google.golang.org/grpc/codes" - "github.com/talos-systems/talos/internal/integration/base" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/integration/base" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // EtcdRecoverSuite ... diff --git a/internal/integration/api/etcd.go b/internal/integration/api/etcd.go index c4d86bdc2..f8c29a408 100644 --- a/internal/integration/api/etcd.go +++ b/internal/integration/api/etcd.go @@ -14,11 +14,11 @@ import ( "google.golang.org/grpc/codes" - "github.com/talos-systems/talos/internal/integration/base" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/integration/base" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // EtcdSuite ... diff --git a/internal/integration/api/events.go b/internal/integration/api/events.go index b34b3176a..529ab8f95 100644 --- a/internal/integration/api/events.go +++ b/internal/integration/api/events.go @@ -10,9 +10,9 @@ import ( "context" "time" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/client" - machinetype "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/client" + machinetype "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // EventsSuite verifies Events API. diff --git a/internal/integration/api/generate-config.go b/internal/integration/api/generate-config.go index f19befe44..3651c9a8f 100644 --- a/internal/integration/api/generate-config.go +++ b/internal/integration/api/generate-config.go @@ -11,14 +11,14 @@ import ( "fmt" "time" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/images" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/images" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // GenerateConfigSuite ... diff --git a/internal/integration/api/logs.go b/internal/integration/api/logs.go index 457a303ca..40920eaf2 100644 --- a/internal/integration/api/logs.go +++ b/internal/integration/api/logs.go @@ -13,10 +13,10 @@ import ( "io" "time" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // LogsSuite verifies Logs API. diff --git a/internal/integration/api/machine-status.go b/internal/integration/api/machine-status.go index ca8dd6f1b..4b8c15fba 100644 --- a/internal/integration/api/machine-status.go +++ b/internal/integration/api/machine-status.go @@ -14,9 +14,9 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "github.com/cosi-project/runtime/pkg/safe" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) // MachineStatusSuite ... diff --git a/internal/integration/api/reboot.go b/internal/integration/api/reboot.go index b78d0e8f5..e32e9d029 100644 --- a/internal/integration/api/reboot.go +++ b/internal/integration/api/reboot.go @@ -15,9 +15,9 @@ import ( "github.com/siderolabs/go-retry/retry" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // RebootSuite ... diff --git a/internal/integration/api/reset.go b/internal/integration/api/reset.go index 8963cb13c..ffe32083e 100644 --- a/internal/integration/api/reset.go +++ b/internal/integration/api/reset.go @@ -14,11 +14,11 @@ import ( "github.com/siderolabs/go-retry/retry" - "github.com/talos-systems/talos/internal/integration/base" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/integration/base" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // ResetSuite ... diff --git a/internal/integration/api/resources.go b/internal/integration/api/resources.go index a9cb2ebe8..3d8d5a136 100644 --- a/internal/integration/api/resources.go +++ b/internal/integration/api/resources.go @@ -17,10 +17,10 @@ import ( "github.com/cosi-project/runtime/pkg/state" "golang.org/x/sync/errgroup" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // ResourcesSuite ... diff --git a/internal/integration/api/serviceaccount.go b/internal/integration/api/serviceaccount.go index 842129c40..59c4c192b 100644 --- a/internal/integration/api/serviceaccount.go +++ b/internal/integration/api/serviceaccount.go @@ -20,13 +20,13 @@ import ( "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime/schema" - "github.com/talos-systems/talos/internal/integration/base" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/integration/base" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var ( diff --git a/internal/integration/api/update-endpoint.go b/internal/integration/api/update-endpoint.go index 5d5ae1d58..0588e1a8a 100644 --- a/internal/integration/api/update-endpoint.go +++ b/internal/integration/api/update-endpoint.go @@ -14,11 +14,11 @@ import ( corev1 "k8s.io/api/core/v1" - "github.com/talos-systems/talos/internal/integration/base" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // UpdateEndpointSuite verifies UpdateEndpoint API. diff --git a/internal/integration/api/update-hostname.go b/internal/integration/api/update-hostname.go index ae8d6fe0b..a74449ea0 100644 --- a/internal/integration/api/update-hostname.go +++ b/internal/integration/api/update-hostname.go @@ -16,11 +16,11 @@ import ( corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/talos-systems/talos/internal/integration/base" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // UpdateHostnameSuite verifies UpdateHostname API. diff --git a/internal/integration/api/version.go b/internal/integration/api/version.go index f0dd81b73..a99c5fcba 100644 --- a/internal/integration/api/version.go +++ b/internal/integration/api/version.go @@ -12,9 +12,9 @@ import ( "github.com/siderolabs/go-retry/retry" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) // VersionSuite verifies version API. diff --git a/internal/integration/base/api.go b/internal/integration/base/api.go index 4cbe769b9..3bffb1082 100644 --- a/internal/integration/base/api.go +++ b/internal/integration/base/api.go @@ -22,18 +22,18 @@ import ( "github.com/stretchr/testify/suite" "google.golang.org/grpc/backoff" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/cluster/check" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/access" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/cluster/check" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/access" ) // APISuite is a base suite for API tests. diff --git a/internal/integration/base/base.go b/internal/integration/base/base.go index 3b0d0c272..1970b944f 100644 --- a/internal/integration/base/base.go +++ b/internal/integration/base/base.go @@ -10,9 +10,9 @@ package base import ( "context" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/access" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/access" ) // TalosSuite defines most common settings for integration test suites. diff --git a/internal/integration/base/cli.go b/internal/integration/base/cli.go index 8cbfad3f9..7dfd58c94 100644 --- a/internal/integration/base/cli.go +++ b/internal/integration/base/cli.go @@ -20,9 +20,9 @@ import ( "github.com/siderolabs/go-retry/retry" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // CLISuite is a base suite for CLI tests. diff --git a/internal/integration/base/cluster.go b/internal/integration/base/cluster.go index ba0715d3f..0b986a3b5 100644 --- a/internal/integration/base/cluster.go +++ b/internal/integration/base/cluster.go @@ -7,8 +7,8 @@ package base import ( - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) type infoWrapper struct { diff --git a/internal/integration/base/discovery_k8s.go b/internal/integration/base/discovery_k8s.go index f46c5cb74..b5cac5a8a 100644 --- a/internal/integration/base/discovery_k8s.go +++ b/internal/integration/base/discovery_k8s.go @@ -16,9 +16,9 @@ import ( "k8s.io/client-go/tools/clientcmd" clientcmdapi "k8s.io/client-go/tools/clientcmd/api" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" ) //nolint:gocyclo diff --git a/internal/integration/base/discovery_nok8s.go b/internal/integration/base/discovery_nok8s.go index 22ca88ec0..bb552dc68 100644 --- a/internal/integration/base/discovery_nok8s.go +++ b/internal/integration/base/discovery_nok8s.go @@ -9,8 +9,8 @@ package base import ( "context" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/machinery/client" ) func discoverNodesK8s(ctx context.Context, client *client.Client, suite *TalosSuite) (cluster.Info, error) { diff --git a/internal/integration/base/k8s.go b/internal/integration/base/k8s.go index 8e04ca1f1..e919532af 100644 --- a/internal/integration/base/k8s.go +++ b/internal/integration/base/k8s.go @@ -24,7 +24,7 @@ import ( "k8s.io/client-go/tools/clientcmd" clientcmdapi "k8s.io/client-go/tools/clientcmd/api" - taloskubernetes "github.com/talos-systems/talos/pkg/kubernetes" + taloskubernetes "github.com/siderolabs/talos/pkg/kubernetes" ) // K8sSuite is a base suite for K8s tests. diff --git a/internal/integration/cli/apply-config.go b/internal/integration/cli/apply-config.go index 74cd7cc70..28cfb655e 100644 --- a/internal/integration/cli/apply-config.go +++ b/internal/integration/cli/apply-config.go @@ -15,7 +15,7 @@ import ( "github.com/siderolabs/go-retry/retry" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // ApplyConfigSuite verifies dmesg command. diff --git a/internal/integration/cli/completion.go b/internal/integration/cli/completion.go index d90ea6780..975054925 100644 --- a/internal/integration/cli/completion.go +++ b/internal/integration/cli/completion.go @@ -7,7 +7,7 @@ package cli import ( - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // CompletionSuite verifies dmesg command. diff --git a/internal/integration/cli/config.go b/internal/integration/cli/config.go index 2db69f891..6df5a26f7 100644 --- a/internal/integration/cli/config.go +++ b/internal/integration/cli/config.go @@ -13,10 +13,10 @@ import ( "google.golang.org/protobuf/encoding/protojson" - "github.com/talos-systems/talos/internal/integration/base" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // TalosconfigSuite checks `talosctl config`. diff --git a/internal/integration/cli/containers.go b/internal/integration/cli/containers.go index 386311a7f..d429cba6c 100644 --- a/internal/integration/cli/containers.go +++ b/internal/integration/cli/containers.go @@ -9,8 +9,8 @@ package cli import ( "regexp" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // ContainersSuite verifies dmesg command. diff --git a/internal/integration/cli/copy.go b/internal/integration/cli/copy.go index 54b3d5f75..f8c3d870a 100644 --- a/internal/integration/cli/copy.go +++ b/internal/integration/cli/copy.go @@ -11,7 +11,7 @@ import ( "path/filepath" "regexp" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // CopySuite verifies dmesg command. diff --git a/internal/integration/cli/disk.go b/internal/integration/cli/disk.go index b9b4a8395..72b3f2778 100644 --- a/internal/integration/cli/disk.go +++ b/internal/integration/cli/disk.go @@ -7,7 +7,7 @@ package cli import ( - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // DisksSuite verifies dmesg command. diff --git a/internal/integration/cli/diskusage.go b/internal/integration/cli/diskusage.go index 9f5f71656..134521921 100644 --- a/internal/integration/cli/diskusage.go +++ b/internal/integration/cli/diskusage.go @@ -11,7 +11,7 @@ import ( "strconv" "strings" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // DiskUsageSuite verifies dmesg command. diff --git a/internal/integration/cli/dmesg.go b/internal/integration/cli/dmesg.go index 175feb336..8c8843d6c 100644 --- a/internal/integration/cli/dmesg.go +++ b/internal/integration/cli/dmesg.go @@ -14,7 +14,7 @@ import ( "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // DmesgSuite verifies dmesg command. diff --git a/internal/integration/cli/etcd.go b/internal/integration/cli/etcd.go index cca3e6b94..2a9501241 100644 --- a/internal/integration/cli/etcd.go +++ b/internal/integration/cli/etcd.go @@ -11,8 +11,8 @@ import ( "path/filepath" "regexp" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // EtcdSuite verifies etcd command. diff --git a/internal/integration/cli/gen.go b/internal/integration/cli/gen.go index 2c0045c6c..ae95cff02 100644 --- a/internal/integration/cli/gen.go +++ b/internal/integration/cli/gen.go @@ -13,9 +13,9 @@ import ( "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" ) // GenSuite verifies dmesg command. diff --git a/internal/integration/cli/health.go b/internal/integration/cli/health.go index 64a94cf14..892b4d5d6 100644 --- a/internal/integration/cli/health.go +++ b/internal/integration/cli/health.go @@ -14,9 +14,9 @@ import ( "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) // HealthSuite verifies health command. diff --git a/internal/integration/cli/images.go b/internal/integration/cli/images.go index fcd68e497..7dc39815b 100644 --- a/internal/integration/cli/images.go +++ b/internal/integration/cli/images.go @@ -7,7 +7,7 @@ package cli import ( - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // ImagesSuite verifies the images command. diff --git a/internal/integration/cli/inject.go b/internal/integration/cli/inject.go index 2b6b5a125..12bd26189 100644 --- a/internal/integration/cli/inject.go +++ b/internal/integration/cli/inject.go @@ -16,7 +16,7 @@ import ( "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) var ( diff --git a/internal/integration/cli/jsonpath.go b/internal/integration/cli/jsonpath.go index aa4de3890..d364506d7 100644 --- a/internal/integration/cli/jsonpath.go +++ b/internal/integration/cli/jsonpath.go @@ -12,8 +12,8 @@ import ( "github.com/siderolabs/go-retry/retry" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // JSONPathSuite verifies dmesg command. diff --git a/internal/integration/cli/kubeconfig.go b/internal/integration/cli/kubeconfig.go index 3b65b02b3..9305592af 100644 --- a/internal/integration/cli/kubeconfig.go +++ b/internal/integration/cli/kubeconfig.go @@ -13,8 +13,8 @@ import ( "k8s.io/client-go/tools/clientcmd" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // KubeconfigSuite verifies dmesg command. diff --git a/internal/integration/cli/list.go b/internal/integration/cli/list.go index 1575ad881..6aa13178c 100644 --- a/internal/integration/cli/list.go +++ b/internal/integration/cli/list.go @@ -15,8 +15,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // ListSuite verifies dmesg command. diff --git a/internal/integration/cli/logs.go b/internal/integration/cli/logs.go index 59c570a28..8eb82689d 100644 --- a/internal/integration/cli/logs.go +++ b/internal/integration/cli/logs.go @@ -11,7 +11,7 @@ import ( "regexp" "strings" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // LogsSuite verifies logs command. diff --git a/internal/integration/cli/memory.go b/internal/integration/cli/memory.go index 915b01588..78bdc1854 100644 --- a/internal/integration/cli/memory.go +++ b/internal/integration/cli/memory.go @@ -9,7 +9,7 @@ package cli import ( "regexp" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // MemorySuite verifies dmesg command. diff --git a/internal/integration/cli/mounts.go b/internal/integration/cli/mounts.go index ba3b3b239..8ecd75a47 100644 --- a/internal/integration/cli/mounts.go +++ b/internal/integration/cli/mounts.go @@ -11,7 +11,7 @@ import ( "regexp" "strings" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // MountsSuite verifies dmesg command. diff --git a/internal/integration/cli/patch.go b/internal/integration/cli/patch.go index 4dec6c6cf..6346f17de 100644 --- a/internal/integration/cli/patch.go +++ b/internal/integration/cli/patch.go @@ -10,9 +10,9 @@ import ( "encoding/json" "fmt" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // PatchSuite verifies dmesg command. diff --git a/internal/integration/cli/pcap.go b/internal/integration/cli/pcap.go index 88892d392..95f62d051 100644 --- a/internal/integration/cli/pcap.go +++ b/internal/integration/cli/pcap.go @@ -7,8 +7,8 @@ package cli import ( - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // PcapSuite verifies etcd command. diff --git a/internal/integration/cli/processes.go b/internal/integration/cli/processes.go index 4e9ca969b..209cb943f 100644 --- a/internal/integration/cli/processes.go +++ b/internal/integration/cli/processes.go @@ -9,7 +9,7 @@ package cli import ( "regexp" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // ProcessesSuite verifies dmesg command. diff --git a/internal/integration/cli/read.go b/internal/integration/cli/read.go index e08974a5e..add45e322 100644 --- a/internal/integration/cli/read.go +++ b/internal/integration/cli/read.go @@ -9,7 +9,7 @@ package cli import ( "regexp" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // ReadSuite verifies dmesg command. diff --git a/internal/integration/cli/reboot.go b/internal/integration/cli/reboot.go index 2416ce342..7ea7ee6ce 100644 --- a/internal/integration/cli/reboot.go +++ b/internal/integration/cli/reboot.go @@ -14,8 +14,8 @@ import ( "github.com/hashicorp/go-multierror" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // RebootSuite tests reboot command. diff --git a/internal/integration/cli/restart.go b/internal/integration/cli/restart.go index 5a56ed27b..f5f1c69b4 100644 --- a/internal/integration/cli/restart.go +++ b/internal/integration/cli/restart.go @@ -11,8 +11,8 @@ import ( "testing" "time" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // RestartSuite verifies dmesg command. diff --git a/internal/integration/cli/services.go b/internal/integration/cli/services.go index 7902d3526..c1a61d98d 100644 --- a/internal/integration/cli/services.go +++ b/internal/integration/cli/services.go @@ -10,7 +10,7 @@ import ( "regexp" "time" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // ServicesSuite verifies dmesg command. diff --git a/internal/integration/cli/stats.go b/internal/integration/cli/stats.go index fc356f211..1d5d00512 100644 --- a/internal/integration/cli/stats.go +++ b/internal/integration/cli/stats.go @@ -9,8 +9,8 @@ package cli import ( "regexp" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // StatsSuite verifies dmesg command. diff --git a/internal/integration/cli/support.go b/internal/integration/cli/support.go index 2881bda2c..172fbacf4 100644 --- a/internal/integration/cli/support.go +++ b/internal/integration/cli/support.go @@ -12,8 +12,8 @@ import ( "path/filepath" "strings" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // SupportSuite verifies support command. diff --git a/internal/integration/cli/time.go b/internal/integration/cli/time.go index 41dbc535a..e27640bbf 100644 --- a/internal/integration/cli/time.go +++ b/internal/integration/cli/time.go @@ -12,7 +12,7 @@ import ( "github.com/siderolabs/go-retry/retry" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // TimeSuite verifies dmesg command. diff --git a/internal/integration/cli/validate.go b/internal/integration/cli/validate.go index 102961663..b1285b826 100644 --- a/internal/integration/cli/validate.go +++ b/internal/integration/cli/validate.go @@ -10,7 +10,7 @@ import ( "fmt" "os" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // ValidateSuite verifies dmesg command. diff --git a/internal/integration/cli/version.go b/internal/integration/cli/version.go index 97223ea57..b91bb3132 100644 --- a/internal/integration/cli/version.go +++ b/internal/integration/cli/version.go @@ -9,7 +9,7 @@ package cli import ( "regexp" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // VersionSuite verifies version command. diff --git a/internal/integration/integration_test.go b/internal/integration/integration_test.go index 4a58ccfd4..9591a3f25 100644 --- a/internal/integration/integration_test.go +++ b/internal/integration/integration_test.go @@ -17,16 +17,16 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/integration/api" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/internal/integration/cli" - "github.com/talos-systems/talos/internal/integration/k8s" - provision_test "github.com/talos-systems/talos/internal/integration/provision" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/providers" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/internal/integration/api" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/cli" + "github.com/siderolabs/talos/internal/integration/k8s" + provision_test "github.com/siderolabs/talos/internal/integration/provision" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/providers" + "github.com/siderolabs/talos/pkg/version" ) // Accumulated list of all the suites to run. diff --git a/internal/integration/k8s/version.go b/internal/integration/k8s/version.go index 9d14c76d3..7179204bf 100644 --- a/internal/integration/k8s/version.go +++ b/internal/integration/k8s/version.go @@ -12,8 +12,8 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // VersionSuite verifies Talos version. diff --git a/internal/integration/provision/provision.go b/internal/integration/provision/provision.go index 41f76fe96..da16c26b5 100644 --- a/internal/integration/provision/provision.go +++ b/internal/integration/provision/provision.go @@ -13,9 +13,9 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/version" ) var allSuites []suite.TestingSuite @@ -64,7 +64,7 @@ var DefaultSettings = Settings{ MasterNodes: 3, WorkerNodes: 1, TargetInstallImageRegistry: "ghcr.io", - CNIBundleURL: fmt.Sprintf("https://github.com/talos-systems/talos/releases/download/%s/talosctl-cni-bundle-%s.tar.gz", trimVersion(version.Tag), constants.ArchVariable), + CNIBundleURL: fmt.Sprintf("https://github.com/siderolabs/talos/releases/download/%s/talosctl-cni-bundle-%s.tar.gz", trimVersion(version.Tag), constants.ArchVariable), } func trimVersion(version string) string { diff --git a/internal/integration/provision/upgrade.go b/internal/integration/provision/upgrade.go index 56d27e6dc..3c6cf5601 100644 --- a/internal/integration/provision/upgrade.go +++ b/internal/integration/provision/upgrade.go @@ -26,25 +26,25 @@ import ( "k8s.io/apimachinery/pkg/types" "k8s.io/apimachinery/pkg/util/strategicpatch" - "github.com/talos-systems/talos/cmd/talosctl/pkg/mgmt/helpers" - "github.com/talos-systems/talos/internal/integration/base" - "github.com/talos-systems/talos/pkg/cluster/check" - "github.com/talos-systems/talos/pkg/cluster/kubernetes" - "github.com/talos-systems/talos/pkg/cluster/sonobuoy" - "github.com/talos-systems/talos/pkg/images" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - talosclient "github.com/talos-systems/talos/pkg/machinery/client" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/bundle" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/access" - "github.com/talos-systems/talos/pkg/provision/providers/qemu" + "github.com/siderolabs/talos/cmd/talosctl/pkg/mgmt/helpers" + "github.com/siderolabs/talos/internal/integration/base" + "github.com/siderolabs/talos/pkg/cluster/check" + "github.com/siderolabs/talos/pkg/cluster/kubernetes" + "github.com/siderolabs/talos/pkg/cluster/sonobuoy" + "github.com/siderolabs/talos/pkg/images" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + talosclient "github.com/siderolabs/talos/pkg/machinery/client" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/bundle" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/access" + "github.com/siderolabs/talos/pkg/provision/providers/qemu" ) //nolint:maligned diff --git a/internal/integration/version_test.go b/internal/integration/version_test.go index f448912f9..7fb0e8640 100644 --- a/internal/integration/version_test.go +++ b/internal/integration/version_test.go @@ -10,7 +10,7 @@ package integration_test import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/integration/base" + "github.com/siderolabs/talos/internal/integration/base" ) // VersionSuite. diff --git a/internal/pkg/configuration/configuration.go b/internal/pkg/configuration/configuration.go index c6caa758e..fe52c09d8 100644 --- a/internal/pkg/configuration/configuration.go +++ b/internal/pkg/configuration/configuration.go @@ -14,13 +14,13 @@ import ( "github.com/siderolabs/gen/slices" "github.com/siderolabs/go-pointer" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" - v1alpha1machine "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" + v1alpha1machine "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Generate config for GenerateConfiguration grpc. diff --git a/internal/pkg/containers/container.go b/internal/pkg/containers/container.go index 77c88facd..62f69537c 100644 --- a/internal/pkg/containers/container.go +++ b/internal/pkg/containers/container.go @@ -16,9 +16,9 @@ import ( "github.com/siderolabs/go-tail" - "github.com/talos-systems/talos/pkg/chunker" - "github.com/talos-systems/talos/pkg/chunker/file" - "github.com/talos-systems/talos/pkg/chunker/stream" + "github.com/siderolabs/talos/pkg/chunker" + "github.com/siderolabs/talos/pkg/chunker/file" + "github.com/siderolabs/talos/pkg/chunker/stream" ) // Container presents information about a container. diff --git a/internal/pkg/containers/containerd/containerd.go b/internal/pkg/containers/containerd/containerd.go index 62fd80167..dc27c3b48 100644 --- a/internal/pkg/containers/containerd/containerd.go +++ b/internal/pkg/containers/containerd/containerd.go @@ -23,8 +23,8 @@ import ( "github.com/containerd/typeurl" "github.com/hashicorp/go-multierror" - ctrs "github.com/talos-systems/talos/internal/pkg/containers" - "github.com/talos-systems/talos/pkg/machinery/constants" + ctrs "github.com/siderolabs/talos/internal/pkg/containers" + "github.com/siderolabs/talos/pkg/machinery/constants" ) type inspector struct { diff --git a/internal/pkg/containers/containerd/containerd_test.go b/internal/pkg/containers/containerd/containerd_test.go index b16182d62..b07d1b6d0 100644 --- a/internal/pkg/containers/containerd/containerd_test.go +++ b/internal/pkg/containers/containerd/containerd_test.go @@ -21,14 +21,14 @@ import ( "github.com/opencontainers/runtime-spec/specs-go" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/logging" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - containerdrunner "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/containerd" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/process" - ctrd "github.com/talos-systems/talos/internal/pkg/containers/containerd" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/logging" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + containerdrunner "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/containerd" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/process" + ctrd "github.com/siderolabs/talos/internal/pkg/containers/containerd" + "github.com/siderolabs/talos/pkg/machinery/constants" ) const ( diff --git a/internal/pkg/containers/cri/containerd/config_test.go b/internal/pkg/containers/cri/containerd/config_test.go index b98ecd8bd..06cc05247 100644 --- a/internal/pkg/containers/cri/containerd/config_test.go +++ b/internal/pkg/containers/cri/containerd/config_test.go @@ -12,9 +12,9 @@ import ( "github.com/siderolabs/go-pointer" "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/pkg/containers/cri/containerd" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/internal/pkg/containers/cri/containerd" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) //go:embed testdata/cri.toml diff --git a/internal/pkg/containers/cri/containerd/containerd.go b/internal/pkg/containers/cri/containerd/containerd.go index 0d433447a..9004a0e87 100644 --- a/internal/pkg/containers/cri/containerd/containerd.go +++ b/internal/pkg/containers/cri/containerd/containerd.go @@ -11,8 +11,8 @@ import ( "github.com/BurntSushi/toml" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // GenerateCRIConfig returns a part of CRI config for registry auth. diff --git a/internal/pkg/containers/cri/containerd/hosts.go b/internal/pkg/containers/cri/containerd/hosts.go index 0609afc78..6c4529677 100644 --- a/internal/pkg/containers/cri/containerd/hosts.go +++ b/internal/pkg/containers/cri/containerd/hosts.go @@ -15,7 +15,7 @@ import ( "github.com/containerd/containerd/remotes/docker" "github.com/pelletier/go-toml" - "github.com/talos-systems/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config" ) // HostsConfig describes layout of registry configuration in "hosts" format. diff --git a/internal/pkg/containers/cri/containerd/hosts_test.go b/internal/pkg/containers/cri/containerd/hosts_test.go index ffd631e2f..21c0c27d8 100644 --- a/internal/pkg/containers/cri/containerd/hosts_test.go +++ b/internal/pkg/containers/cri/containerd/hosts_test.go @@ -13,8 +13,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/internal/pkg/containers/cri/containerd" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/internal/pkg/containers/cri/containerd" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) func TestGenerateHosts(t *testing.T) { diff --git a/internal/pkg/containers/cri/cri.go b/internal/pkg/containers/cri/cri.go index a6033da98..78b71f2dd 100644 --- a/internal/pkg/containers/cri/cri.go +++ b/internal/pkg/containers/cri/cri.go @@ -14,9 +14,9 @@ import ( runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2" - ctrs "github.com/talos-systems/talos/internal/pkg/containers" - criclient "github.com/talos-systems/talos/internal/pkg/cri" - "github.com/talos-systems/talos/pkg/machinery/constants" + ctrs "github.com/siderolabs/talos/internal/pkg/containers" + criclient "github.com/siderolabs/talos/internal/pkg/cri" + "github.com/siderolabs/talos/pkg/machinery/constants" ) type inspector struct { diff --git a/internal/pkg/containers/cri/cri_test.go b/internal/pkg/containers/cri/cri_test.go index a19d0b3f5..6482a3795 100644 --- a/internal/pkg/containers/cri/cri_test.go +++ b/internal/pkg/containers/cri/cri_test.go @@ -19,14 +19,14 @@ import ( "github.com/stretchr/testify/suite" runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/logging" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/process" - ctrs "github.com/talos-systems/talos/internal/pkg/containers" - "github.com/talos-systems/talos/internal/pkg/containers/cri" - criclient "github.com/talos-systems/talos/internal/pkg/cri" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/logging" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/process" + ctrs "github.com/siderolabs/talos/internal/pkg/containers" + "github.com/siderolabs/talos/internal/pkg/containers/cri" + criclient "github.com/siderolabs/talos/internal/pkg/cri" + "github.com/siderolabs/talos/pkg/machinery/constants" ) const ( diff --git a/internal/pkg/containers/image/image.go b/internal/pkg/containers/image/image.go index c63265395..630ab3dc1 100644 --- a/internal/pkg/containers/image/image.go +++ b/internal/pkg/containers/image/image.go @@ -16,9 +16,9 @@ import ( "github.com/containerd/containerd/pkg/kmutex" "github.com/siderolabs/go-retry/retry" - containerdrunner "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/containerd" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" + containerdrunner "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/containerd" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Image pull retry settings. diff --git a/internal/pkg/containers/image/resolver.go b/internal/pkg/containers/image/resolver.go index e90c6753a..7e5c5e4e3 100644 --- a/internal/pkg/containers/image/resolver.go +++ b/internal/pkg/containers/image/resolver.go @@ -15,8 +15,8 @@ import ( "github.com/containerd/containerd/remotes/docker" "github.com/hashicorp/go-cleanhttp" - "github.com/talos-systems/talos/pkg/httpdefaults" - "github.com/talos-systems/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/httpdefaults" + "github.com/siderolabs/talos/pkg/machinery/config" ) // NewResolver builds registry resolver based on Talos configuration. diff --git a/internal/pkg/containers/image/resolver_test.go b/internal/pkg/containers/image/resolver_test.go index 8fb8f16a9..7d2c374ff 100644 --- a/internal/pkg/containers/image/resolver_test.go +++ b/internal/pkg/containers/image/resolver_test.go @@ -12,9 +12,9 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/internal/pkg/containers/image" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/internal/pkg/containers/image" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) type mockConfig struct { diff --git a/internal/pkg/cri/client.go b/internal/pkg/cri/client.go index f4dfece39..f100719ae 100644 --- a/internal/pkg/cri/client.go +++ b/internal/pkg/cri/client.go @@ -13,7 +13,7 @@ import ( "google.golang.org/grpc/credentials/insecure" runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2" - "github.com/talos-systems/talos/pkg/grpc/dialer" + "github.com/siderolabs/talos/pkg/grpc/dialer" ) // Client is a lightweight implementation of CRI client. diff --git a/internal/pkg/cri/cri_test.go b/internal/pkg/cri/cri_test.go index 6c8b96675..2eb3bb6c1 100644 --- a/internal/pkg/cri/cri_test.go +++ b/internal/pkg/cri/cri_test.go @@ -18,12 +18,12 @@ import ( "github.com/stretchr/testify/suite" runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/logging" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/events" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner" - "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/process" - "github.com/talos-systems/talos/internal/pkg/cri" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/logging" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/events" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner" + "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/process" + "github.com/siderolabs/talos/internal/pkg/cri" + "github.com/siderolabs/talos/pkg/machinery/constants" ) const ( diff --git a/internal/pkg/cri/pods.go b/internal/pkg/cri/pods.go index bb2d82e3b..06741f943 100644 --- a/internal/pkg/cri/pods.go +++ b/internal/pkg/cri/pods.go @@ -14,7 +14,7 @@ import ( grpcstatus "google.golang.org/grpc/status" runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // RunPodSandbox creates and starts a pod-level sandbox. Runtimes should ensure diff --git a/internal/pkg/discovery/registry/kubernetes.go b/internal/pkg/discovery/registry/kubernetes.go index 9c59b2631..1d1497f90 100644 --- a/internal/pkg/discovery/registry/kubernetes.go +++ b/internal/pkg/discovery/registry/kubernetes.go @@ -25,10 +25,10 @@ import ( informersv1 "k8s.io/client-go/informers/core/v1" "k8s.io/client-go/tools/cache" - "github.com/talos-systems/talos/pkg/kubernetes" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/kubernetes" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) // Kubernetes defines a Kubernetes-based node discoverer. diff --git a/internal/pkg/discovery/registry/kubernetes_test.go b/internal/pkg/discovery/registry/kubernetes_test.go index 8bf50b947..ae1b8a881 100644 --- a/internal/pkg/discovery/registry/kubernetes_test.go +++ b/internal/pkg/discovery/registry/kubernetes_test.go @@ -12,10 +12,10 @@ import ( v1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/talos-systems/talos/internal/pkg/discovery/registry" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/internal/pkg/discovery/registry" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) func TestAnnotationsFromAffiliate(t *testing.T) { diff --git a/internal/pkg/encryption/encryption.go b/internal/pkg/encryption/encryption.go index b0e2972fe..f6033e10a 100644 --- a/internal/pkg/encryption/encryption.go +++ b/internal/pkg/encryption/encryption.go @@ -16,8 +16,8 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice/encryption/luks" "github.com/siderolabs/go-blockdevice/blockdevice/partition/gpt" - "github.com/talos-systems/talos/internal/pkg/encryption/keys" - "github.com/talos-systems/talos/pkg/machinery/config" + "github.com/siderolabs/talos/internal/pkg/encryption/keys" + "github.com/siderolabs/talos/pkg/machinery/config" ) // NewHandler creates new Handler. diff --git a/internal/pkg/encryption/keys/keys.go b/internal/pkg/encryption/keys/keys.go index e44a2c8de..c0f8f212c 100644 --- a/internal/pkg/encryption/keys/keys.go +++ b/internal/pkg/encryption/keys/keys.go @@ -8,7 +8,7 @@ package keys import ( "fmt" - "github.com/talos-systems/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config" ) // NewHandler creates a new key handler depending on key handler kind. diff --git a/internal/pkg/encryption/keys/nodeid.go b/internal/pkg/encryption/keys/nodeid.go index 9ebfc1d72..b99c98070 100644 --- a/internal/pkg/encryption/keys/nodeid.go +++ b/internal/pkg/encryption/keys/nodeid.go @@ -7,7 +7,7 @@ package keys import ( "fmt" - "github.com/talos-systems/talos/internal/pkg/smbios" + "github.com/siderolabs/talos/internal/pkg/smbios" ) // NodeIDKeyHandler generates the key based on current node information diff --git a/internal/pkg/etcd/certs.go b/internal/pkg/etcd/certs.go index e9559facb..23241bbb7 100644 --- a/internal/pkg/etcd/certs.go +++ b/internal/pkg/etcd/certs.go @@ -14,7 +14,7 @@ import ( "github.com/siderolabs/crypto/x509" "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // CertificateGenerator contains etcd certificate options. diff --git a/internal/pkg/etcd/endpoints.go b/internal/pkg/etcd/endpoints.go index 5b4da8e9b..fbb1b571b 100644 --- a/internal/pkg/etcd/endpoints.go +++ b/internal/pkg/etcd/endpoints.go @@ -12,9 +12,9 @@ import ( "github.com/cosi-project/runtime/pkg/safe" "github.com/cosi-project/runtime/pkg/state" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // GetEndpoints returns expected endpoints of etcd cluster members. diff --git a/internal/pkg/etcd/etcd.go b/internal/pkg/etcd/etcd.go index 25a796973..829689623 100644 --- a/internal/pkg/etcd/etcd.go +++ b/internal/pkg/etcd/etcd.go @@ -21,11 +21,11 @@ import ( "go.uber.org/zap" "google.golang.org/grpc" - "github.com/talos-systems/talos/internal/app/machined/pkg/system" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/internal/app/machined/pkg/system" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" ) // QuorumCheckTimeout is the amount of time to allow for KV operations before quorum is declared invalid. diff --git a/internal/pkg/extensions/compress.go b/internal/pkg/extensions/compress.go index a2f5852e9..6c0d699b9 100644 --- a/internal/pkg/extensions/compress.go +++ b/internal/pkg/extensions/compress.go @@ -12,7 +12,7 @@ import ( "os/exec" "path/filepath" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // List of paths to be moved to the future initramfs. diff --git a/internal/pkg/extensions/extensions.go b/internal/pkg/extensions/extensions.go index 4a2bc1276..9b46ff2e6 100644 --- a/internal/pkg/extensions/extensions.go +++ b/internal/pkg/extensions/extensions.go @@ -6,7 +6,7 @@ package extensions import ( - "github.com/talos-systems/talos/pkg/machinery/extensions" + "github.com/siderolabs/talos/pkg/machinery/extensions" ) // Extension represents unpacked extension in the filesystem. diff --git a/internal/pkg/extensions/extensions_test.go b/internal/pkg/extensions/extensions_test.go index 722a368a0..435d396ed 100644 --- a/internal/pkg/extensions/extensions_test.go +++ b/internal/pkg/extensions/extensions_test.go @@ -12,8 +12,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/internal/pkg/extensions" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/internal/pkg/extensions" + "github.com/siderolabs/talos/pkg/version" ) func TestLoadValidate(t *testing.T) { diff --git a/internal/pkg/extensions/list_test.go b/internal/pkg/extensions/list_test.go index 5dcc935d2..0c7891fd1 100644 --- a/internal/pkg/extensions/list_test.go +++ b/internal/pkg/extensions/list_test.go @@ -10,7 +10,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/internal/pkg/extensions" + "github.com/siderolabs/talos/internal/pkg/extensions" ) func TestList(t *testing.T) { diff --git a/internal/pkg/extensions/load.go b/internal/pkg/extensions/load.go index bde1141a8..6dd251542 100644 --- a/internal/pkg/extensions/load.go +++ b/internal/pkg/extensions/load.go @@ -11,7 +11,7 @@ import ( "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/extensions" + "github.com/siderolabs/talos/pkg/machinery/extensions" ) // Load extension from the filesystem. diff --git a/internal/pkg/extensions/pull.go b/internal/pkg/extensions/pull.go index a853fc2fb..fba4061bb 100644 --- a/internal/pkg/extensions/pull.go +++ b/internal/pkg/extensions/pull.go @@ -16,9 +16,9 @@ import ( "github.com/containerd/containerd/mount" "github.com/opencontainers/image-spec/identity" - "github.com/talos-systems/talos/internal/pkg/containers/image" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/pkg/containers/image" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Puller pulls, unpacks and mounts extensions images. diff --git a/internal/pkg/extensions/validate.go b/internal/pkg/extensions/validate.go index 763614242..5acaff7bf 100644 --- a/internal/pkg/extensions/validate.go +++ b/internal/pkg/extensions/validate.go @@ -13,8 +13,8 @@ import ( hashiversion "github.com/hashicorp/go-version" - "github.com/talos-systems/talos/pkg/machinery/extensions" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/pkg/machinery/extensions" + "github.com/siderolabs/talos/pkg/version" ) // Validate the extension: compatibility, contents, etc. diff --git a/internal/pkg/install/install.go b/internal/pkg/install/install.go index cd1112599..ba08f38c5 100644 --- a/internal/pkg/install/install.go +++ b/internal/pkg/install/install.go @@ -23,15 +23,15 @@ import ( "github.com/siderolabs/go-procfs/procfs" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - containerdrunner "github.com/talos-systems/talos/internal/app/machined/pkg/system/runner/containerd" - "github.com/talos-systems/talos/internal/pkg/capability" - "github.com/talos-systems/talos/internal/pkg/containers/image" - "github.com/talos-systems/talos/internal/pkg/extensions" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + containerdrunner "github.com/siderolabs/talos/internal/app/machined/pkg/system/runner/containerd" + "github.com/siderolabs/talos/internal/pkg/capability" + "github.com/siderolabs/talos/internal/pkg/containers/image" + "github.com/siderolabs/talos/internal/pkg/extensions" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // RunInstallerContainer performs an installation via the installer container. diff --git a/internal/pkg/install/pull.go b/internal/pkg/install/pull.go index 802eb973f..f9030a3ef 100644 --- a/internal/pkg/install/pull.go +++ b/internal/pkg/install/pull.go @@ -14,9 +14,9 @@ import ( "github.com/containerd/containerd/namespaces" "github.com/containerd/containerd/oci" - "github.com/talos-systems/talos/internal/pkg/containers/image" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/pkg/containers/image" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // PullAndValidateInstallerImage pulls down the installer and validates that it can run. diff --git a/internal/pkg/logind/logind.go b/internal/pkg/logind/logind.go index e307e04bd..814244ce3 100644 --- a/internal/pkg/logind/logind.go +++ b/internal/pkg/logind/logind.go @@ -13,7 +13,7 @@ import ( "github.com/godbus/dbus/v5" "github.com/godbus/dbus/v5/prop" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) const ( diff --git a/internal/pkg/logind/logind_test.go b/internal/pkg/logind/logind_test.go index 20b5fa209..a268e1c53 100644 --- a/internal/pkg/logind/logind_test.go +++ b/internal/pkg/logind/logind_test.go @@ -12,8 +12,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/internal/pkg/logind" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/pkg/logind" + "github.com/siderolabs/talos/pkg/machinery/constants" ) func TestIntegration(t *testing.T) { diff --git a/internal/pkg/miniprocfs/processes.go b/internal/pkg/miniprocfs/processes.go index a0612961a..5df4dd484 100644 --- a/internal/pkg/miniprocfs/processes.go +++ b/internal/pkg/miniprocfs/processes.go @@ -11,7 +11,7 @@ import ( "os" "strconv" - "github.com/talos-systems/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/api/machine" ) const ( diff --git a/internal/pkg/miniprocfs/processes_test.go b/internal/pkg/miniprocfs/processes_test.go index 7bfc3a4d8..ca07c874c 100644 --- a/internal/pkg/miniprocfs/processes_test.go +++ b/internal/pkg/miniprocfs/processes_test.go @@ -12,8 +12,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/internal/pkg/miniprocfs" - "github.com/talos-systems/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/internal/pkg/miniprocfs" + "github.com/siderolabs/talos/pkg/machinery/api/machine" ) func TestLive(t *testing.T) { diff --git a/internal/pkg/mount/cgroups.go b/internal/pkg/mount/cgroups.go index f645d12a9..908855456 100644 --- a/internal/pkg/mount/cgroups.go +++ b/internal/pkg/mount/cgroups.go @@ -7,7 +7,7 @@ package mount import ( "golang.org/x/sys/unix" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // CGroupMountPoints returns the cgroup mount points. diff --git a/internal/pkg/mount/mount.go b/internal/pkg/mount/mount.go index 60799d9bf..9a9cee397 100644 --- a/internal/pkg/mount/mount.go +++ b/internal/pkg/mount/mount.go @@ -18,8 +18,8 @@ import ( "github.com/siderolabs/go-retry/retry" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/makefs" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/makefs" ) // RetryFunc defines the requirements for retrying a mount point operation. diff --git a/internal/pkg/mount/mount_test.go b/internal/pkg/mount/mount_test.go index 8620211bc..a0b1c5780 100644 --- a/internal/pkg/mount/mount_test.go +++ b/internal/pkg/mount/mount_test.go @@ -15,14 +15,14 @@ import ( "github.com/stretchr/testify/suite" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/pkg/mount" - "github.com/talos-systems/talos/pkg/makefs" + "github.com/siderolabs/talos/internal/pkg/mount" + "github.com/siderolabs/talos/pkg/makefs" ) // Some tests in this package cannot be run under buildkit, as buildkit doesn't propagate partition devices // like /dev/loopXpY into the sandbox. To run the tests on your local computer, do the following: // -// go test -exec sudo -v --count 1 github.com/talos-systems/talos/internal/pkg/mount +// go test -exec sudo -v --count 1 github.com/siderolabs/talos/internal/pkg/mount type manifestSuite struct { suite.Suite diff --git a/internal/pkg/mount/options.go b/internal/pkg/mount/options.go index 9bdc5452b..1d869d7aa 100644 --- a/internal/pkg/mount/options.go +++ b/internal/pkg/mount/options.go @@ -7,7 +7,7 @@ package mount import ( "log" - "github.com/talos-systems/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config" ) const ( diff --git a/internal/pkg/mount/overlay.go b/internal/pkg/mount/overlay.go index 4052afb1c..19c8dd986 100644 --- a/internal/pkg/mount/overlay.go +++ b/internal/pkg/mount/overlay.go @@ -7,7 +7,7 @@ package mount import ( "golang.org/x/sys/unix" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // OverlayMountPoints returns the mountpoints required to boot the system. diff --git a/internal/pkg/mount/squashfs.go b/internal/pkg/mount/squashfs.go index 60ca5d64a..8b71d3884 100644 --- a/internal/pkg/mount/squashfs.go +++ b/internal/pkg/mount/squashfs.go @@ -8,7 +8,7 @@ import ( "golang.org/x/sys/unix" "gopkg.in/freddierice/go-losetup.v1" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // SquashfsMountPoints returns the mountpoints required to boot the system. diff --git a/internal/pkg/mount/switchroot/switchroot.go b/internal/pkg/mount/switchroot/switchroot.go index 28bf8aa82..d3b66685f 100644 --- a/internal/pkg/mount/switchroot/switchroot.go +++ b/internal/pkg/mount/switchroot/switchroot.go @@ -13,8 +13,8 @@ import ( "github.com/siderolabs/go-debug" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/pkg/mount" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/pkg/mount" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Paths preserved in the initramfs. diff --git a/internal/pkg/mount/system.go b/internal/pkg/mount/system.go index 72fa298f0..7297a9acd 100644 --- a/internal/pkg/mount/system.go +++ b/internal/pkg/mount/system.go @@ -17,14 +17,14 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice/filesystem" "golang.org/x/sys/unix" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime" - "github.com/talos-systems/talos/internal/app/machined/pkg/runtime/disk" - "github.com/talos-systems/talos/internal/pkg/encryption" - "github.com/talos-systems/talos/internal/pkg/partition" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" - runtimeres "github.com/talos-systems/talos/pkg/machinery/resources/runtime" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime" + "github.com/siderolabs/talos/internal/app/machined/pkg/runtime/disk" + "github.com/siderolabs/talos/internal/pkg/encryption" + "github.com/siderolabs/talos/internal/pkg/partition" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" + runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) var ( diff --git a/internal/pkg/ntp/interfaces.go b/internal/pkg/ntp/interfaces.go index c9ff0ec37..db7e658da 100644 --- a/internal/pkg/ntp/interfaces.go +++ b/internal/pkg/ntp/interfaces.go @@ -10,7 +10,7 @@ import ( "github.com/beevik/ntp" - "github.com/talos-systems/talos/internal/pkg/timex" + "github.com/siderolabs/talos/internal/pkg/timex" ) // CurrentTimeFunc provides a function which returns current time. diff --git a/internal/pkg/ntp/ntp.go b/internal/pkg/ntp/ntp.go index 04072b274..c88ac3519 100644 --- a/internal/pkg/ntp/ntp.go +++ b/internal/pkg/ntp/ntp.go @@ -22,7 +22,7 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zapcore" - "github.com/talos-systems/talos/internal/pkg/timex" + "github.com/siderolabs/talos/internal/pkg/timex" ) // Syncer performs time sync via NTP on schedule. diff --git a/internal/pkg/ntp/ntp_test.go b/internal/pkg/ntp/ntp_test.go index 646a573f2..e45495ad4 100644 --- a/internal/pkg/ntp/ntp_test.go +++ b/internal/pkg/ntp/ntp_test.go @@ -18,10 +18,10 @@ import ( "github.com/stretchr/testify/suite" "go.uber.org/zap" - "github.com/talos-systems/talos/internal/pkg/ntp" - "github.com/talos-systems/talos/internal/pkg/timex" - "github.com/talos-systems/talos/pkg/logging" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/internal/pkg/ntp" + "github.com/siderolabs/talos/internal/pkg/timex" + "github.com/siderolabs/talos/pkg/logging" + "github.com/siderolabs/talos/pkg/machinery/constants" ) type NTPSuite struct { diff --git a/internal/pkg/partition/format.go b/internal/pkg/partition/format.go index 5b13941c6..c43eacfa7 100644 --- a/internal/pkg/partition/format.go +++ b/internal/pkg/partition/format.go @@ -13,8 +13,8 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/makefs" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/makefs" ) // FormatOptions contains format parameters. diff --git a/internal/pkg/tui/installer/connection.go b/internal/pkg/tui/installer/connection.go index 9bc86b317..52c3bacc6 100644 --- a/internal/pkg/tui/installer/connection.go +++ b/internal/pkg/tui/installer/connection.go @@ -13,11 +13,11 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/metadata" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/api/storage" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/api/storage" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) // Connection unifies clients for bootstrap node and the node which is being configured. diff --git a/internal/pkg/tui/installer/installer.go b/internal/pkg/tui/installer/installer.go index 6b9a776ac..383b171f6 100644 --- a/internal/pkg/tui/installer/installer.go +++ b/internal/pkg/tui/installer/installer.go @@ -14,10 +14,10 @@ import ( "github.com/gdamore/tcell/v2" "github.com/rivo/tview" - "github.com/talos-systems/talos/internal/pkg/tui/components" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/internal/pkg/tui/components" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/version" ) // NewPage creates a new installer page. diff --git a/internal/pkg/tui/installer/state.go b/internal/pkg/tui/installer/state.go index 822f2892b..0f949f9cb 100644 --- a/internal/pkg/tui/installer/state.go +++ b/internal/pkg/tui/installer/state.go @@ -14,13 +14,13 @@ import ( "github.com/rivo/tview" "google.golang.org/protobuf/types/known/timestamppb" - "github.com/talos-systems/talos/internal/pkg/tui/components" - "github.com/talos-systems/talos/pkg/images" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/internal/pkg/tui/components" + "github.com/siderolabs/talos/pkg/images" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" ) const canalCustomCNI = "canal" diff --git a/pkg/.importvet.yaml b/pkg/.importvet.yaml index cc5b3e24f..2e20a3f9e 100644 --- a/pkg/.importvet.yaml +++ b/pkg/.importvet.yaml @@ -1,8 +1,8 @@ --- rules: - - regexp: ^github.com/talos-systems/talos/ + - regexp: ^github.com/siderolabs/talos/ action: deny - - regexp: ^github.com/talos-systems/talos/pkg + - regexp: ^github.com/siderolabs/talos/pkg action: allow - - regexp: ^github.com/talos-systems/talos/pkg/machinery/api + - regexp: ^github.com/siderolabs/talos/pkg/machinery/api action: allow diff --git a/pkg/archiver/tar_test.go b/pkg/archiver/tar_test.go index 2e5efecc9..b5beedeb0 100644 --- a/pkg/archiver/tar_test.go +++ b/pkg/archiver/tar_test.go @@ -15,7 +15,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/archiver" + "github.com/siderolabs/talos/pkg/archiver" ) type TarSuite struct { diff --git a/pkg/archiver/untar.go b/pkg/archiver/untar.go index 564a21228..74ad8c051 100644 --- a/pkg/archiver/untar.go +++ b/pkg/archiver/untar.go @@ -12,7 +12,7 @@ import ( "os" "path/filepath" - "github.com/talos-systems/talos/pkg/safepath" + "github.com/siderolabs/talos/pkg/safepath" ) // Untar extracts .tar archive from r into filesystem under rootPath. diff --git a/pkg/archiver/walker_test.go b/pkg/archiver/walker_test.go index 6b63d85f7..caf49860a 100644 --- a/pkg/archiver/walker_test.go +++ b/pkg/archiver/walker_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/archiver" + "github.com/siderolabs/talos/pkg/archiver" ) type WalkerSuite struct { diff --git a/pkg/argsbuilder/argsbuilder_test.go b/pkg/argsbuilder/argsbuilder_test.go index 2a02d91a8..3974cb7ce 100644 --- a/pkg/argsbuilder/argsbuilder_test.go +++ b/pkg/argsbuilder/argsbuilder_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/argsbuilder" + "github.com/siderolabs/talos/pkg/argsbuilder" ) type ArgsbuilderSuite struct { diff --git a/pkg/chunker/file/file.go b/pkg/chunker/file/file.go index 21bc9c315..920a54ae3 100644 --- a/pkg/chunker/file/file.go +++ b/pkg/chunker/file/file.go @@ -9,9 +9,9 @@ import ( "io" "os" - "github.com/talos-systems/talos/pkg/chunker" - "github.com/talos-systems/talos/pkg/chunker/stream" - "github.com/talos-systems/talos/pkg/follow" + "github.com/siderolabs/talos/pkg/chunker" + "github.com/siderolabs/talos/pkg/chunker/stream" + "github.com/siderolabs/talos/pkg/follow" ) // Options is the functional options struct. diff --git a/pkg/chunker/file/file_test.go b/pkg/chunker/file/file_test.go index 61c7ffc33..2de35445f 100644 --- a/pkg/chunker/file/file_test.go +++ b/pkg/chunker/file/file_test.go @@ -14,7 +14,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/chunker/file" + "github.com/siderolabs/talos/pkg/chunker/file" ) type FileChunkerSuite struct { diff --git a/pkg/chunker/stream/stream.go b/pkg/chunker/stream/stream.go index 9b95d54df..72a23116e 100644 --- a/pkg/chunker/stream/stream.go +++ b/pkg/chunker/stream/stream.go @@ -11,7 +11,7 @@ import ( "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/chunker" + "github.com/siderolabs/talos/pkg/chunker" ) // Options is the functional options struct. diff --git a/pkg/chunker/stream/stream_test.go b/pkg/chunker/stream/stream_test.go index 56e0f1275..6a4b20fb9 100644 --- a/pkg/chunker/stream/stream_test.go +++ b/pkg/chunker/stream/stream_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/chunker/stream" + "github.com/siderolabs/talos/pkg/chunker/stream" ) type StreamChunkerSuite struct { diff --git a/pkg/cli/formatters.go b/pkg/cli/formatters.go index 97ae7650d..6c76f69d6 100644 --- a/pkg/cli/formatters.go +++ b/pkg/cli/formatters.go @@ -18,9 +18,9 @@ import ( "google.golang.org/grpc/metadata" "google.golang.org/grpc/peer" - "github.com/talos-systems/talos/pkg/machinery/api/inspect" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/api/inspect" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) // RenderMounts renders mounts output. diff --git a/pkg/cluster/apply-config.go b/pkg/cluster/apply-config.go index 87e5ce8dc..990a9172b 100644 --- a/pkg/cluster/apply-config.go +++ b/pkg/cluster/apply-config.go @@ -12,9 +12,9 @@ import ( "github.com/siderolabs/go-retry/retry" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/provision" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/provision" ) // ApplyConfigClient client to apply config. diff --git a/pkg/cluster/bootstrap.go b/pkg/cluster/bootstrap.go index 6a74988dc..8bb97bab5 100644 --- a/pkg/cluster/bootstrap.go +++ b/pkg/cluster/bootstrap.go @@ -17,9 +17,9 @@ import ( "google.golang.org/grpc/backoff" "google.golang.org/grpc/codes" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // APIBootstrapper bootstraps cluster via Talos API. diff --git a/pkg/cluster/check/apid.go b/pkg/cluster/check/apid.go index 54d3bba4f..1e4fce16a 100644 --- a/pkg/cluster/check/apid.go +++ b/pkg/cluster/check/apid.go @@ -8,7 +8,7 @@ package check import ( "context" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/client" ) // ApidReadyAssertion checks whether apid is responsive on all the nodes. diff --git a/pkg/cluster/check/check.go b/pkg/cluster/check/check.go index 163d1bba6..8b83f1929 100644 --- a/pkg/cluster/check/check.go +++ b/pkg/cluster/check/check.go @@ -12,8 +12,8 @@ import ( "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/conditions" ) const updateInterval = 100 * time.Millisecond diff --git a/pkg/cluster/check/default.go b/pkg/cluster/check/default.go index ca9685014..405b7b402 100644 --- a/pkg/cluster/check/default.go +++ b/pkg/cluster/check/default.go @@ -8,8 +8,8 @@ import ( "context" "time" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // DefaultClusterChecks returns a set of default Talos cluster readiness checks. diff --git a/pkg/cluster/check/discovery.go b/pkg/cluster/check/discovery.go index fb5052706..869c79961 100644 --- a/pkg/cluster/check/discovery.go +++ b/pkg/cluster/check/discovery.go @@ -11,9 +11,9 @@ import ( "github.com/siderolabs/gen/maps" "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - clussterres "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + clussterres "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) // DiscoveredClusterInfo represents a cluster.Info populated using the discovery service. diff --git a/pkg/cluster/check/etcd.go b/pkg/cluster/check/etcd.go index ce40b08ab..d9d7ebc20 100644 --- a/pkg/cluster/check/etcd.go +++ b/pkg/cluster/check/etcd.go @@ -14,10 +14,10 @@ import ( "github.com/siderolabs/gen/maps" "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/cluster" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/cluster" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // EtcdConsistentAssertion checks that etcd membership is consistent across nodes. diff --git a/pkg/cluster/check/events.go b/pkg/cluster/check/events.go index 80846fa44..4951f4496 100644 --- a/pkg/cluster/check/events.go +++ b/pkg/cluster/check/events.go @@ -13,8 +13,8 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" ) // AllNodesBootedAssertion checks whether nodes reached end of 'Boot' sequence. diff --git a/pkg/cluster/check/kubernetes.go b/pkg/cluster/check/kubernetes.go index d05489560..f860fb1b5 100644 --- a/pkg/cluster/check/kubernetes.go +++ b/pkg/cluster/check/kubernetes.go @@ -18,11 +18,11 @@ import ( v1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // K8sAllNodesReportedAssertion checks whether all the nodes show up in node list. diff --git a/pkg/cluster/check/options.go b/pkg/cluster/check/options.go index 190ef3d89..3d51f4f3c 100644 --- a/pkg/cluster/check/options.go +++ b/pkg/cluster/check/options.go @@ -4,7 +4,7 @@ package check -import "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" +import "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" // Option represents functional option. type Option func(o *Options) error diff --git a/pkg/cluster/check/reporter.go b/pkg/cluster/check/reporter.go index 273fc93d1..b922cadc6 100644 --- a/pkg/cluster/check/reporter.go +++ b/pkg/cluster/check/reporter.go @@ -8,8 +8,8 @@ import ( "fmt" "strings" - "github.com/talos-systems/talos/pkg/conditions" - "github.com/talos-systems/talos/pkg/reporter" + "github.com/siderolabs/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/reporter" ) // ConditionReporter is a reporter that reports conditions to a reporter.Reporter. diff --git a/pkg/cluster/check/service.go b/pkg/cluster/check/service.go index a35c14dd4..395ea73df 100644 --- a/pkg/cluster/check/service.go +++ b/pkg/cluster/check/service.go @@ -12,9 +12,9 @@ import ( "github.com/hashicorp/go-multierror" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // ErrServiceNotFound is an error that indicates that a service was not found. diff --git a/pkg/cluster/cluster.go b/pkg/cluster/cluster.go index 341313dfb..df01c96fe 100644 --- a/pkg/cluster/cluster.go +++ b/pkg/cluster/cluster.go @@ -17,9 +17,9 @@ import ( "k8s.io/client-go/kubernetes" "k8s.io/client-go/rest" - k8s "github.com/talos-systems/talos/pkg/kubernetes" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + k8s "github.com/siderolabs/talos/pkg/kubernetes" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // ClientProvider builds Talos client by endpoint. diff --git a/pkg/cluster/cluster_test.go b/pkg/cluster/cluster_test.go index 950acad4c..e583f2328 100644 --- a/pkg/cluster/cluster_test.go +++ b/pkg/cluster/cluster_test.go @@ -10,7 +10,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/cluster" ) func TestAssertNodes(t *testing.T) { diff --git a/pkg/cluster/config.go b/pkg/cluster/config.go index dcfcea0fa..d1e48c87f 100644 --- a/pkg/cluster/config.go +++ b/pkg/cluster/config.go @@ -8,8 +8,8 @@ import ( "context" "strings" - "github.com/talos-systems/talos/pkg/machinery/client" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/client" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) // ConfigClientProvider builds Talos client from client config. diff --git a/pkg/cluster/crashdump.go b/pkg/cluster/crashdump.go index 488376ad9..b11eda7b1 100644 --- a/pkg/cluster/crashdump.go +++ b/pkg/cluster/crashdump.go @@ -11,9 +11,9 @@ import ( "strings" "time" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // APICrashDumper collects crash dump via Talos API. diff --git a/pkg/cluster/kubelet.go b/pkg/cluster/kubelet.go index 17349c393..36d3ebe78 100644 --- a/pkg/cluster/kubelet.go +++ b/pkg/cluster/kubelet.go @@ -9,7 +9,7 @@ import ( k8s "k8s.io/client-go/kubernetes" - "github.com/talos-systems/talos/pkg/kubernetes" + "github.com/siderolabs/talos/pkg/kubernetes" ) // KubernetesFromKubeletClient provides Kubernetes client built from local kubelet config. diff --git a/pkg/cluster/kubernetes.go b/pkg/cluster/kubernetes.go index af9828825..92bc6a291 100644 --- a/pkg/cluster/kubernetes.go +++ b/pkg/cluster/kubernetes.go @@ -14,8 +14,8 @@ import ( "k8s.io/client-go/tools/clientcmd" clientcmdapi "k8s.io/client-go/tools/clientcmd/api" - k8s "github.com/talos-systems/talos/pkg/kubernetes" - "github.com/talos-systems/talos/pkg/machinery/constants" + k8s "github.com/siderolabs/talos/pkg/kubernetes" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // KubernetesClient provides Kubernetes client built via Talos API Kubeconfig. diff --git a/pkg/cluster/kubernetes/daemonset.go b/pkg/cluster/kubernetes/daemonset.go index c86b52adc..e3b4ac0ec 100644 --- a/pkg/cluster/kubernetes/daemonset.go +++ b/pkg/cluster/kubernetes/daemonset.go @@ -17,8 +17,8 @@ import ( "k8s.io/apimachinery/pkg/util/strategicpatch" "k8s.io/client-go/kubernetes" - k8s "github.com/talos-systems/talos/pkg/kubernetes" - "github.com/talos-systems/talos/pkg/machinery/constants" + k8s "github.com/siderolabs/talos/pkg/kubernetes" + "github.com/siderolabs/talos/pkg/machinery/constants" ) //nolint:gocyclo diff --git a/pkg/cluster/kubernetes/kubelet.go b/pkg/cluster/kubernetes/kubelet.go index 51b9bf25d..c47b0844b 100644 --- a/pkg/cluster/kubernetes/kubelet.go +++ b/pkg/cluster/kubernetes/kubelet.go @@ -18,12 +18,12 @@ import ( v1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/talos-systems/talos/pkg/kubernetes" - "github.com/talos-systems/talos/pkg/machinery/client" - v1alpha1config "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/pkg/kubernetes" + "github.com/siderolabs/talos/pkg/machinery/client" + v1alpha1config "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) const kubelet = "kubelet" diff --git a/pkg/cluster/kubernetes/patch.go b/pkg/cluster/kubernetes/patch.go index 81e602e2f..61a826ef7 100644 --- a/pkg/cluster/kubernetes/patch.go +++ b/pkg/cluster/kubernetes/patch.go @@ -11,10 +11,10 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "github.com/cosi-project/runtime/pkg/safe" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - v1alpha1config "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + v1alpha1config "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) // patchNodeConfig updates node configuration by means of patch function. diff --git a/pkg/cluster/kubernetes/talos_managed.go b/pkg/cluster/kubernetes/talos_managed.go index ae89b417c..187ec2818 100644 --- a/pkg/cluster/kubernetes/talos_managed.go +++ b/pkg/cluster/kubernetes/talos_managed.go @@ -34,13 +34,13 @@ import ( "k8s.io/client-go/restmapper" k8syaml "sigs.k8s.io/yaml" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/kubernetes" - "github.com/talos-systems/talos/pkg/machinery/client" - v1alpha1config "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - machinetype "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/kubernetes" + "github.com/siderolabs/talos/pkg/machinery/client" + v1alpha1config "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + machinetype "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) // UpgradeProvider are the cluster interfaces required by upgrade process. diff --git a/pkg/cluster/kubernetes/upgrade_test.go b/pkg/cluster/kubernetes/upgrade_test.go index 8948455a3..5f0b748c1 100644 --- a/pkg/cluster/kubernetes/upgrade_test.go +++ b/pkg/cluster/kubernetes/upgrade_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/cluster/kubernetes" + "github.com/siderolabs/talos/pkg/cluster/kubernetes" ) func TestPath(t *testing.T) { diff --git a/pkg/cluster/local.go b/pkg/cluster/local.go index fd50da969..ddfa86cda 100644 --- a/pkg/cluster/local.go +++ b/pkg/cluster/local.go @@ -11,8 +11,8 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/credentials/insecure" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // LocalClientProvider builds Talos client to connect to same-node apid instance over file socket. diff --git a/pkg/cluster/provision.go b/pkg/cluster/provision.go index 811943a64..bc4502279 100644 --- a/pkg/cluster/provision.go +++ b/pkg/cluster/provision.go @@ -7,8 +7,8 @@ package cluster import ( "net/netip" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/provision" ) // MapProvisionNodeInfosToClusterNodeInfos maps provision.NodeInfos to cluster.NodeInfos. diff --git a/pkg/cluster/sonobuoy/product.go b/pkg/cluster/sonobuoy/product.go index e27481e71..00f7576c0 100644 --- a/pkg/cluster/sonobuoy/product.go +++ b/pkg/cluster/sonobuoy/product.go @@ -4,7 +4,7 @@ package sonobuoy -import "github.com/talos-systems/talos/pkg/version" +import "github.com/siderolabs/talos/pkg/version" type product struct { Vendor string `yaml:"vendor"` diff --git a/pkg/cluster/sonobuoy/sonobuoy.go b/pkg/cluster/sonobuoy/sonobuoy.go index 5b2ca6364..f27fdeb98 100644 --- a/pkg/cluster/sonobuoy/sonobuoy.go +++ b/pkg/cluster/sonobuoy/sonobuoy.go @@ -23,8 +23,8 @@ import ( sonodynamic "github.com/vmware-tanzu/sonobuoy/pkg/dynamic" yaml "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Options for the tests. diff --git a/pkg/cluster/support.go b/pkg/cluster/support.go index 48fdfce26..ed791c2b8 100644 --- a/pkg/cluster/support.go +++ b/pkg/cluster/support.go @@ -33,12 +33,12 @@ import ( "k8s.io/client-go/kubernetes" "k8s.io/client-go/tools/clientcmd" - "github.com/talos-systems/talos/pkg/cli" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/pkg/cli" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/version" ) // BundleOptions defines GetSupportBundle options. diff --git a/pkg/conditions/all_test.go b/pkg/conditions/all_test.go index 852b655e9..d649ad54b 100644 --- a/pkg/conditions/all_test.go +++ b/pkg/conditions/all_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/conditions" ) type AllSuite struct { diff --git a/pkg/conditions/files_test.go b/pkg/conditions/files_test.go index ec5e7d042..247f50425 100644 --- a/pkg/conditions/files_test.go +++ b/pkg/conditions/files_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/conditions" ) type FilesSuite struct { diff --git a/pkg/conditions/poll_test.go b/pkg/conditions/poll_test.go index 5c687e716..97e88bb39 100644 --- a/pkg/conditions/poll_test.go +++ b/pkg/conditions/poll_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/conditions" + "github.com/siderolabs/talos/pkg/conditions" ) func TestPollingCondition(t *testing.T) { diff --git a/pkg/download/download.go b/pkg/download/download.go index 4dfa71a68..1496b1a47 100644 --- a/pkg/download/download.go +++ b/pkg/download/download.go @@ -20,7 +20,7 @@ import ( "github.com/hashicorp/go-cleanhttp" "github.com/siderolabs/go-retry/retry" - "github.com/talos-systems/talos/pkg/httpdefaults" + "github.com/siderolabs/talos/pkg/httpdefaults" ) const b64 = "base64" diff --git a/pkg/follow/follow_test.go b/pkg/follow/follow_test.go index 2a83e042e..1d5ca021b 100644 --- a/pkg/follow/follow_test.go +++ b/pkg/follow/follow_test.go @@ -16,7 +16,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/follow" + "github.com/siderolabs/talos/pkg/follow" ) type FollowSuite struct { diff --git a/pkg/grpc/codec/codec.go b/pkg/grpc/codec/codec.go index b57ce4ca0..02651ca8f 100644 --- a/pkg/grpc/codec/codec.go +++ b/pkg/grpc/codec/codec.go @@ -13,7 +13,7 @@ import ( "google.golang.org/grpc/encoding" "google.golang.org/grpc/encoding/proto" - talosproto "github.com/talos-systems/talos/pkg/machinery/proto" + talosproto "github.com/siderolabs/talos/pkg/machinery/proto" ) // gogoMessage is the interface for gogoproto additions. diff --git a/pkg/grpc/factory/factory.go b/pkg/grpc/factory/factory.go index b540b986e..94aec48c9 100644 --- a/pkg/grpc/factory/factory.go +++ b/pkg/grpc/factory/factory.go @@ -24,8 +24,8 @@ import ( "google.golang.org/grpc/reflection" "google.golang.org/grpc/status" - _ "github.com/talos-systems/talos/pkg/grpc/codec" // register codec - grpclog "github.com/talos-systems/talos/pkg/grpc/middleware/log" + _ "github.com/siderolabs/talos/pkg/grpc/codec" // register codec + grpclog "github.com/siderolabs/talos/pkg/grpc/middleware/log" ) // Registrator describes the set of methods required in order for a concrete diff --git a/pkg/grpc/gen/remote.go b/pkg/grpc/gen/remote.go index 1db6b7702..26ba4ba42 100644 --- a/pkg/grpc/gen/remote.go +++ b/pkg/grpc/gen/remote.go @@ -14,10 +14,10 @@ import ( "github.com/siderolabs/go-retry/retry" "google.golang.org/grpc" - "github.com/talos-systems/talos/pkg/grpc/middleware/auth/basic" - securityapi "github.com/talos-systems/talos/pkg/machinery/api/security" - "github.com/talos-systems/talos/pkg/machinery/client/resolver" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/grpc/middleware/auth/basic" + securityapi "github.com/siderolabs/talos/pkg/machinery/api/security" + "github.com/siderolabs/talos/pkg/machinery/client/resolver" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // RemoteGenerator represents the OS identity generator. diff --git a/pkg/grpc/middleware/authz/authorizer.go b/pkg/grpc/middleware/authz/authorizer.go index c73e5d831..c69cce361 100644 --- a/pkg/grpc/middleware/authz/authorizer.go +++ b/pkg/grpc/middleware/authz/authorizer.go @@ -11,7 +11,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/machinery/role" ) // ErrNotAuthorized should be returned to the client when they are not authorized. diff --git a/pkg/grpc/middleware/authz/context.go b/pkg/grpc/middleware/authz/context.go index 29b51140f..31cf0b6a2 100644 --- a/pkg/grpc/middleware/authz/context.go +++ b/pkg/grpc/middleware/authz/context.go @@ -7,7 +7,7 @@ package authz import ( "context" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/machinery/role" ) // ctxKey is used to store parsed roles in the context. diff --git a/pkg/grpc/middleware/authz/injector.go b/pkg/grpc/middleware/authz/injector.go index b60452f39..286a16286 100644 --- a/pkg/grpc/middleware/authz/injector.go +++ b/pkg/grpc/middleware/authz/injector.go @@ -13,7 +13,7 @@ import ( "google.golang.org/grpc/credentials" "google.golang.org/grpc/peer" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/machinery/role" ) // InjectorMode specifies how roles are extracted. diff --git a/pkg/grpc/middleware/authz/metadata.go b/pkg/grpc/middleware/authz/metadata.go index 00ec62373..67e907fe0 100644 --- a/pkg/grpc/middleware/authz/metadata.go +++ b/pkg/grpc/middleware/authz/metadata.go @@ -9,8 +9,8 @@ import ( "google.golang.org/grpc/metadata" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/role" ) // mdKey is used to store roles in gRPC metadata. diff --git a/pkg/grpc/middleware/log/log_test.go b/pkg/grpc/middleware/log/log_test.go index 66916dc33..8a7bbd015 100644 --- a/pkg/grpc/middleware/log/log_test.go +++ b/pkg/grpc/middleware/log/log_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/assert" metadata "google.golang.org/grpc/metadata" - "github.com/talos-systems/talos/pkg/grpc/middleware/log" + "github.com/siderolabs/talos/pkg/grpc/middleware/log" ) func TestExtractMetadata(t *testing.T) { diff --git a/pkg/grpc/proxy/backend/local.go b/pkg/grpc/proxy/backend/local.go index 9f55cfed0..0e4fac4f1 100644 --- a/pkg/grpc/proxy/backend/local.go +++ b/pkg/grpc/proxy/backend/local.go @@ -13,7 +13,7 @@ import ( "google.golang.org/grpc/credentials/insecure" "google.golang.org/grpc/metadata" - "github.com/talos-systems/talos/pkg/grpc/middleware/authz" + "github.com/siderolabs/talos/pkg/grpc/middleware/authz" ) var _ proxy.Backend = (*Local)(nil) diff --git a/pkg/grpc/proxy/backend/local_test.go b/pkg/grpc/proxy/backend/local_test.go index 1fd827d3e..b3dc84281 100644 --- a/pkg/grpc/proxy/backend/local_test.go +++ b/pkg/grpc/proxy/backend/local_test.go @@ -11,9 +11,9 @@ import ( "github.com/stretchr/testify/assert" "google.golang.org/grpc/metadata" - "github.com/talos-systems/talos/pkg/grpc/middleware/authz" - "github.com/talos-systems/talos/pkg/grpc/proxy/backend" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/grpc/middleware/authz" + "github.com/siderolabs/talos/pkg/grpc/proxy/backend" + "github.com/siderolabs/talos/pkg/machinery/role" ) func TestLocalGetConnection(t *testing.T) { diff --git a/pkg/httpdefaults/tls.go b/pkg/httpdefaults/tls.go index fdf304492..8ca8c380b 100644 --- a/pkg/httpdefaults/tls.go +++ b/pkg/httpdefaults/tls.go @@ -10,7 +10,7 @@ import ( "os" "sync" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var ( diff --git a/pkg/images/images.go b/pkg/images/images.go index 408ade1e5..9f36ce8fa 100644 --- a/pkg/images/images.go +++ b/pkg/images/images.go @@ -6,8 +6,8 @@ package images import ( - "github.com/talos-systems/talos/pkg/machinery/gendata" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/pkg/machinery/gendata" + "github.com/siderolabs/talos/pkg/version" ) var ( diff --git a/pkg/images/list.go b/pkg/images/list.go index ebf9069e2..47337749b 100644 --- a/pkg/images/list.go +++ b/pkg/images/list.go @@ -9,8 +9,8 @@ import ( criconfig "github.com/containerd/containerd/pkg/cri/config" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/version" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/version" ) // Versions holds all the images (and their versions) that are used in Talos. diff --git a/pkg/kernel/kernel.go b/pkg/kernel/kernel.go index d30947b95..f929d60c0 100644 --- a/pkg/kernel/kernel.go +++ b/pkg/kernel/kernel.go @@ -8,7 +8,7 @@ package kernel import ( "os" - "github.com/talos-systems/talos/pkg/machinery/kernel" + "github.com/siderolabs/talos/pkg/machinery/kernel" ) // WriteParam writes a value to a key under /proc/sys. diff --git a/pkg/kernel/kspp/kspp.go b/pkg/kernel/kspp/kspp.go index 9891271ce..ab39781c7 100644 --- a/pkg/kernel/kspp/kspp.go +++ b/pkg/kernel/kspp/kspp.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/go-multierror" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/pkg/machinery/kernel" + "github.com/siderolabs/talos/pkg/machinery/kernel" ) // RequiredKSPPKernelParameters is the set of kernel parameters required to diff --git a/pkg/kubeconfig/generate.go b/pkg/kubeconfig/generate.go index 7e7eb02cd..d06db1245 100644 --- a/pkg/kubeconfig/generate.go +++ b/pkg/kubeconfig/generate.go @@ -15,8 +15,8 @@ import ( "github.com/siderolabs/crypto/x509" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" ) const kubeConfigTemplate = `apiVersion: v1 diff --git a/pkg/kubeconfig/generate_test.go b/pkg/kubeconfig/generate_test.go index 1cf66d1a6..34394ae6e 100644 --- a/pkg/kubeconfig/generate_test.go +++ b/pkg/kubeconfig/generate_test.go @@ -15,8 +15,8 @@ import ( "github.com/stretchr/testify/suite" "k8s.io/client-go/tools/clientcmd" - "github.com/talos-systems/talos/pkg/kubeconfig" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/kubeconfig" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) type GenerateSuite struct { diff --git a/pkg/kubernetes/inject/serviceaccount.go b/pkg/kubernetes/inject/serviceaccount.go index 945bf8cd7..543ae1c48 100644 --- a/pkg/kubernetes/inject/serviceaccount.go +++ b/pkg/kubernetes/inject/serviceaccount.go @@ -21,7 +21,7 @@ import ( "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/serializer/json" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) const ( diff --git a/pkg/kubernetes/kubelet/kubelet.go b/pkg/kubernetes/kubelet/kubelet.go index 20133d3b4..bfeea155c 100644 --- a/pkg/kubernetes/kubelet/kubelet.go +++ b/pkg/kubernetes/kubelet/kubelet.go @@ -18,7 +18,7 @@ import ( "k8s.io/client-go/kubernetes/scheme" "k8s.io/client-go/rest" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Client is a kubelet API client. diff --git a/pkg/kubernetes/kubernetes.go b/pkg/kubernetes/kubernetes.go index b9232b670..fb3b38100 100644 --- a/pkg/kubernetes/kubernetes.go +++ b/pkg/kubernetes/kubernetes.go @@ -30,8 +30,8 @@ import ( "k8s.io/client-go/tools/clientcmd" "k8s.io/client-go/util/connrotation" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) const ( diff --git a/pkg/machinery/api/cluster/cluster.pb.go b/pkg/machinery/api/cluster/cluster.pb.go index 9154d82e1..954a87ad9 100644 --- a/pkg/machinery/api/cluster/cluster.pb.go +++ b/pkg/machinery/api/cluster/cluster.pb.go @@ -14,7 +14,7 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" durationpb "google.golang.org/protobuf/types/known/durationpb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( @@ -234,11 +234,11 @@ var file_cluster_cluster_proto_rawDesc = []byte{ 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x2e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, - 0x50, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x30, 0x01, 0x42, 0x3a, 0x5a, 0x38, 0x67, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, - 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, - 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, - 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x50, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x30, 0x01, 0x42, 0x37, 0x5a, 0x35, 0x67, 0x69, + 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, + 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, + 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6c, 0x75, 0x73, + 0x74, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/cluster/cluster_vtproto.pb.go b/pkg/machinery/api/cluster/cluster_vtproto.pb.go index 31c61fdf5..65df24790 100644 --- a/pkg/machinery/api/cluster/cluster_vtproto.pb.go +++ b/pkg/machinery/api/cluster/cluster_vtproto.pb.go @@ -13,7 +13,7 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" durationpb "google.golang.org/protobuf/types/known/durationpb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( diff --git a/pkg/machinery/api/common/common.pb.go b/pkg/machinery/api/common/common.pb.go index 64a749afc..d423b3395 100644 --- a/pkg/machinery/api/common/common.pb.go +++ b/pkg/machinery/api/common/common.pb.go @@ -948,11 +948,11 @@ var file_common_common_proto_rawDesc = []byte{ 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xbd, 0xd7, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, - 0x61, 0x74, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x42, 0x39, 0x5a, 0x37, 0x67, - 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, - 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, - 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, - 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x61, 0x74, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x42, 0x36, 0x5a, 0x34, 0x67, + 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, + 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, + 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, + 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/inspect/inspect.pb.go b/pkg/machinery/api/inspect/inspect.pb.go index 25412ccf4..86efdabed 100644 --- a/pkg/machinery/api/inspect/inspect.pb.go +++ b/pkg/machinery/api/inspect/inspect.pb.go @@ -14,7 +14,7 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" emptypb "google.golang.org/protobuf/types/known/emptypb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( @@ -314,12 +314,11 @@ var file_inspect_inspect_proto_rawDesc = []byte{ 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x2e, 0x2e, 0x69, 0x6e, 0x73, 0x70, 0x65, 0x63, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x44, 0x65, 0x70, 0x65, 0x6e, 0x64, - 0x65, 0x6e, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x3a, - 0x5a, 0x38, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, - 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, - 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, - 0x70, 0x69, 0x2f, 0x69, 0x6e, 0x73, 0x70, 0x65, 0x63, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x65, 0x6e, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x37, + 0x5a, 0x35, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, + 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, + 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, + 0x69, 0x6e, 0x73, 0x70, 0x65, 0x63, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/inspect/inspect_vtproto.pb.go b/pkg/machinery/api/inspect/inspect_vtproto.pb.go index 49ac4212f..0557e8a82 100644 --- a/pkg/machinery/api/inspect/inspect_vtproto.pb.go +++ b/pkg/machinery/api/inspect/inspect_vtproto.pb.go @@ -12,7 +12,7 @@ import ( proto "google.golang.org/protobuf/proto" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( diff --git a/pkg/machinery/api/machine/machine.pb.go b/pkg/machinery/api/machine/machine.pb.go index 615f54b55..ad3b53022 100644 --- a/pkg/machinery/api/machine/machine.pb.go +++ b/pkg/machinery/api/machine/machine.pb.go @@ -17,7 +17,7 @@ import ( emptypb "google.golang.org/protobuf/types/known/emptypb" timestamppb "google.golang.org/protobuf/types/known/timestamppb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( @@ -10570,11 +10570,11 @@ var file_machine_machine_proto_rawDesc = []byte{ 0x6b, 0x65, 0x74, 0x43, 0x61, 0x70, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1d, 0x2e, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x2e, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x43, 0x61, 0x70, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0c, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, - 0x6f, 0x6e, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x30, 0x01, 0x42, 0x3a, 0x5a, 0x38, 0x67, 0x69, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, - 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, - 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, - 0x63, 0x68, 0x69, 0x6e, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x6f, 0x6e, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x30, 0x01, 0x42, 0x37, 0x5a, 0x35, 0x67, 0x69, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, + 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, + 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, + 0x6e, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/machine/machine_grpc.pb.go b/pkg/machinery/api/machine/machine_grpc.pb.go index 36a6c2b96..1ae0c6456 100644 --- a/pkg/machinery/api/machine/machine_grpc.pb.go +++ b/pkg/machinery/api/machine/machine_grpc.pb.go @@ -14,7 +14,7 @@ import ( status "google.golang.org/grpc/status" emptypb "google.golang.org/protobuf/types/known/emptypb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) // This is a compile-time assertion to ensure that this generated file diff --git a/pkg/machinery/api/machine/machine_vtproto.pb.go b/pkg/machinery/api/machine/machine_vtproto.pb.go index 1b9daaad2..b861a654b 100644 --- a/pkg/machinery/api/machine/machine_vtproto.pb.go +++ b/pkg/machinery/api/machine/machine_vtproto.pb.go @@ -17,7 +17,7 @@ import ( durationpb "google.golang.org/protobuf/types/known/durationpb" timestamppb "google.golang.org/protobuf/types/known/timestamppb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( diff --git a/pkg/machinery/api/resource/config/config.pb.go b/pkg/machinery/api/resource/config/config.pb.go index bc7511579..8d2119c8a 100644 --- a/pkg/machinery/api/resource/config/config.pb.go +++ b/pkg/machinery/api/resource/config/config.pb.go @@ -192,12 +192,11 @@ var file_resource_config_config_proto_rawDesc = []byte{ 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x49, 0x4e, 0x49, 0x54, 0x10, 0x01, 0x12, 0x11, 0x0a, 0x0d, 0x43, 0x4f, 0x4e, 0x54, 0x52, 0x4f, 0x4c, 0x5f, 0x50, 0x4c, 0x41, 0x4e, 0x45, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x57, 0x4f, - 0x52, 0x4b, 0x45, 0x52, 0x10, 0x03, 0x42, 0x42, 0x5a, 0x40, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, - 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, - 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, - 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x52, 0x4b, 0x45, 0x52, 0x10, 0x03, 0x42, 0x3f, 0x5a, 0x3d, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, + 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, + 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, + 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/cluster/cluster.pb.go b/pkg/machinery/api/resource/definitions/cluster/cluster.pb.go index 30d9c5f70..f69d9861e 100644 --- a/pkg/machinery/api/resource/definitions/cluster/cluster.pb.go +++ b/pkg/machinery/api/resource/definitions/cluster/cluster.pb.go @@ -13,8 +13,8 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - common "github.com/talos-systems/talos/pkg/machinery/api/common" - enums "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/enums" + common "github.com/siderolabs/talos/pkg/machinery/api/common" + enums "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/enums" ) const ( @@ -508,12 +508,12 @@ var file_resource_definitions_cluster_cluster_proto_rawDesc = []byte{ 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, - 0x79, 0x73, 0x74, 0x65, 0x6d, 0x42, 0x4f, 0x5a, 0x4d, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, - 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, - 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, - 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x63, - 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x79, 0x73, 0x74, 0x65, 0x6d, 0x42, 0x4c, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, + 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, + 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, + 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, + 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x63, 0x6c, 0x75, 0x73, + 0x74, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/cluster/cluster_vtproto.pb.go b/pkg/machinery/api/resource/definitions/cluster/cluster_vtproto.pb.go index 8a7566fb0..bc36d73c3 100644 --- a/pkg/machinery/api/resource/definitions/cluster/cluster_vtproto.pb.go +++ b/pkg/machinery/api/resource/definitions/cluster/cluster_vtproto.pb.go @@ -12,8 +12,8 @@ import ( proto "google.golang.org/protobuf/proto" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - common "github.com/talos-systems/talos/pkg/machinery/api/common" - enums "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/enums" + common "github.com/siderolabs/talos/pkg/machinery/api/common" + enums "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/enums" ) const ( diff --git a/pkg/machinery/api/resource/definitions/cri/cri.pb.go b/pkg/machinery/api/resource/definitions/cri/cri.pb.go index a7b5b0ea5..3501563e8 100644 --- a/pkg/machinery/api/resource/definitions/cri/cri.pb.go +++ b/pkg/machinery/api/resource/definitions/cri/cri.pb.go @@ -92,12 +92,12 @@ var file_resource_definitions_cri_cri_proto_rawDesc = []byte{ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, - 0x72, 0x75, 0x63, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x4b, 0x5a, 0x49, 0x67, - 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, - 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, - 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, - 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x63, 0x72, 0x69, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x72, 0x75, 0x63, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x48, 0x5a, 0x46, 0x67, + 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, + 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, + 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, + 0x73, 0x2f, 0x63, 0x72, 0x69, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/enums/enums.pb.go b/pkg/machinery/api/resource/definitions/enums/enums.pb.go index bb529634b..0b87e52d0 100644 --- a/pkg/machinery/api/resource/definitions/enums/enums.pb.go +++ b/pkg/machinery/api/resource/definitions/enums/enums.pb.go @@ -1844,12 +1844,12 @@ var file_resource_definitions_enums_enums_proto_rawDesc = []byte{ 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x47, 0x45, 0x5f, 0x52, 0x45, 0x53, 0x45, 0x54, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x07, 0x12, 0x1b, 0x0a, 0x17, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x47, 0x45, 0x5f, 0x55, 0x50, 0x47, 0x52, 0x41, 0x44, 0x49, 0x4e, - 0x47, 0x10, 0x08, 0x42, 0x4d, 0x5a, 0x4b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, - 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, - 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, - 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, 0x6e, 0x75, - 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x47, 0x10, 0x08, 0x42, 0x4a, 0x5a, 0x48, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, + 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, + 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, + 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, + 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/etcd/etcd.pb.go b/pkg/machinery/api/resource/definitions/etcd/etcd.pb.go index 011807512..98586417b 100644 --- a/pkg/machinery/api/resource/definitions/etcd/etcd.pb.go +++ b/pkg/machinery/api/resource/definitions/etcd/etcd.pb.go @@ -13,7 +13,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( @@ -319,12 +319,12 @@ var file_resource_definitions_etcd_etcd_proto_rawDesc = []byte{ 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, - 0x01, 0x42, 0x4c, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, - 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, - 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, - 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, - 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, 0x74, 0x63, 0x64, 0x62, - 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x01, 0x42, 0x49, 0x5a, 0x47, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, + 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, + 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, + 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, + 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, 0x74, 0x63, 0x64, 0x62, 0x06, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/etcd/etcd_vtproto.pb.go b/pkg/machinery/api/resource/definitions/etcd/etcd_vtproto.pb.go index 049522fa9..7aca27c87 100644 --- a/pkg/machinery/api/resource/definitions/etcd/etcd_vtproto.pb.go +++ b/pkg/machinery/api/resource/definitions/etcd/etcd_vtproto.pb.go @@ -12,7 +12,7 @@ import ( proto "google.golang.org/protobuf/proto" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( diff --git a/pkg/machinery/api/resource/definitions/extensions/extensions.pb.go b/pkg/machinery/api/resource/definitions/extensions/extensions.pb.go index 573e849ed..b0e80c4a0 100644 --- a/pkg/machinery/api/resource/definitions/extensions/extensions.pb.go +++ b/pkg/machinery/api/resource/definitions/extensions/extensions.pb.go @@ -289,13 +289,13 @@ var file_resource_definitions_extensions_extensions_proto_rawDesc = []byte{ 0x75, 0x72, 0x63, 0x65, 0x2e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x52, 0x0d, 0x63, 0x6f, 0x6d, 0x70, 0x61, - 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x52, 0x5a, 0x50, 0x67, 0x69, 0x74, 0x68, - 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, - 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, - 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, + 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x4f, 0x5a, 0x4d, 0x67, 0x69, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, + 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, + 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x65, + 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/files/files.pb.go b/pkg/machinery/api/resource/definitions/files/files.pb.go index 25e575560..e8dca04b5 100644 --- a/pkg/machinery/api/resource/definitions/files/files.pb.go +++ b/pkg/machinery/api/resource/definitions/files/files.pb.go @@ -140,12 +140,12 @@ var file_resource_definitions_files_files_proto_rawDesc = []byte{ 0x11, 0x45, 0x74, 0x63, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x53, 0x70, 0x65, 0x63, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x70, 0x65, 0x63, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x70, 0x65, 0x63, 0x56, 0x65, - 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x4d, 0x5a, 0x4b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, - 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, - 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, - 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x66, - 0x69, 0x6c, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x4a, 0x5a, 0x48, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, + 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, + 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, + 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, + 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x66, 0x69, 0x6c, 0x65, + 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/hardware/hardware.pb.go b/pkg/machinery/api/resource/definitions/hardware/hardware.pb.go index 64084c7ba..fe06ce87e 100644 --- a/pkg/machinery/api/resource/definitions/hardware/hardware.pb.go +++ b/pkg/machinery/api/resource/definitions/hardware/hardware.pb.go @@ -422,13 +422,12 @@ var file_resource_definitions_hardware_hardware_proto_rawDesc = []byte{ 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x77, 0x61, 0x6b, 0x65, 0x55, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x6b, 0x75, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x6b, - 0x75, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x42, 0x50, 0x5a, 0x4e, 0x67, 0x69, 0x74, 0x68, 0x75, - 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, - 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, - 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x2f, 0x68, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x33, + 0x75, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x42, 0x4d, 0x5a, 0x4b, 0x67, 0x69, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, + 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, + 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x68, 0x61, + 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/k8s/k8s.pb.go b/pkg/machinery/api/resource/definitions/k8s/k8s.pb.go index 90d9da1e2..3f620feca 100644 --- a/pkg/machinery/api/resource/definitions/k8s/k8s.pb.go +++ b/pkg/machinery/api/resource/definitions/k8s/k8s.pb.go @@ -14,8 +14,8 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" structpb "google.golang.org/protobuf/types/known/structpb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" - proto "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/proto" + common "github.com/siderolabs/talos/pkg/machinery/api/common" + proto "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/proto" ) const ( @@ -2003,12 +2003,12 @@ var file_resource_definitions_k8s_k8s_proto_rawDesc = []byte{ 0x12, 0x36, 0x0a, 0x0a, 0x70, 0x6f, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x52, 0x09, 0x70, - 0x6f, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x4b, 0x5a, 0x49, 0x67, 0x69, 0x74, 0x68, - 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, - 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, - 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x2f, 0x6b, 0x38, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x6f, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x48, 0x5a, 0x46, 0x67, 0x69, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, + 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, + 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6b, + 0x38, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/k8s/k8s_vtproto.pb.go b/pkg/machinery/api/resource/definitions/k8s/k8s_vtproto.pb.go index cad43219c..e338eeb16 100644 --- a/pkg/machinery/api/resource/definitions/k8s/k8s_vtproto.pb.go +++ b/pkg/machinery/api/resource/definitions/k8s/k8s_vtproto.pb.go @@ -13,8 +13,8 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" structpb "google.golang.org/protobuf/types/known/structpb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" - proto1 "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/proto" + common "github.com/siderolabs/talos/pkg/machinery/api/common" + proto1 "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/proto" ) const ( diff --git a/pkg/machinery/api/resource/definitions/kubeaccess/kubeaccess.pb.go b/pkg/machinery/api/resource/definitions/kubeaccess/kubeaccess.pb.go index b90404d2a..80d6e6df0 100644 --- a/pkg/machinery/api/resource/definitions/kubeaccess/kubeaccess.pb.go +++ b/pkg/machinery/api/resource/definitions/kubeaccess/kubeaccess.pb.go @@ -103,12 +103,12 @@ var file_resource_definitions_kubeaccess_kubeaccess_proto_rawDesc = []byte{ 0x65, 0x74, 0x65, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x1b, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x4b, 0x75, 0x62, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x65, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, - 0x65, 0x73, 0x42, 0x52, 0x5a, 0x50, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, - 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, - 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, - 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, - 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6b, 0x75, 0x62, 0x65, - 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x65, 0x73, 0x42, 0x4f, 0x5a, 0x4d, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, + 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, + 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, + 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, + 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6b, 0x75, 0x62, 0x65, 0x61, 0x63, 0x63, + 0x65, 0x73, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/kubespan/kubespan.pb.go b/pkg/machinery/api/resource/definitions/kubespan/kubespan.pb.go index 028bab3ca..57428b2e6 100644 --- a/pkg/machinery/api/resource/definitions/kubespan/kubespan.pb.go +++ b/pkg/machinery/api/resource/definitions/kubespan/kubespan.pb.go @@ -14,8 +14,8 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" timestamppb "google.golang.org/protobuf/types/known/timestamppb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" - enums "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/enums" + common "github.com/siderolabs/talos/pkg/machinery/api/common" + enums "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/enums" ) const ( @@ -505,13 +505,12 @@ var file_resource_definitions_kubespan_kubespan_proto_rawDesc = []byte{ 0x6e, 0x67, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x12, 0x6c, 0x61, 0x73, 0x74, 0x45, 0x6e, 0x64, 0x70, 0x6f, - 0x69, 0x6e, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x42, 0x50, 0x5a, 0x4e, 0x67, 0x69, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, - 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, - 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, - 0x6e, 0x73, 0x2f, 0x6b, 0x75, 0x62, 0x65, 0x73, 0x70, 0x61, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x33, + 0x69, 0x6e, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x42, 0x4d, 0x5a, 0x4b, 0x67, 0x69, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, + 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, + 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, + 0x6b, 0x75, 0x62, 0x65, 0x73, 0x70, 0x61, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/kubespan/kubespan_vtproto.pb.go b/pkg/machinery/api/resource/definitions/kubespan/kubespan_vtproto.pb.go index 1ba73017e..40f644cbd 100644 --- a/pkg/machinery/api/resource/definitions/kubespan/kubespan_vtproto.pb.go +++ b/pkg/machinery/api/resource/definitions/kubespan/kubespan_vtproto.pb.go @@ -13,8 +13,8 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" timestamppb "google.golang.org/protobuf/types/known/timestamppb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" - enums "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/enums" + common "github.com/siderolabs/talos/pkg/machinery/api/common" + enums "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/enums" ) const ( diff --git a/pkg/machinery/api/resource/definitions/network/network.pb.go b/pkg/machinery/api/resource/definitions/network/network.pb.go index b2e043819..405eda83f 100644 --- a/pkg/machinery/api/resource/definitions/network/network.pb.go +++ b/pkg/machinery/api/resource/definitions/network/network.pb.go @@ -14,8 +14,8 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" durationpb "google.golang.org/protobuf/types/known/durationpb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" - enums "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/enums" + common "github.com/siderolabs/talos/pkg/machinery/api/common" + enums "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/enums" ) const ( @@ -3208,12 +3208,12 @@ var file_resource_definitions_network_network_proto_rawDesc = []byte{ 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2e, 0x57, 0x69, 0x72, 0x65, 0x67, 0x75, 0x61, 0x72, 0x64, 0x50, 0x65, 0x65, 0x72, - 0x52, 0x05, 0x70, 0x65, 0x65, 0x72, 0x73, 0x42, 0x4f, 0x5a, 0x4d, 0x67, 0x69, 0x74, 0x68, 0x75, - 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, - 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, - 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x2f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x52, 0x05, 0x70, 0x65, 0x65, 0x72, 0x73, 0x42, 0x4c, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, + 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, + 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6e, 0x65, + 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/network/network_vtproto.pb.go b/pkg/machinery/api/resource/definitions/network/network_vtproto.pb.go index ee34f8126..03bccf80c 100644 --- a/pkg/machinery/api/resource/definitions/network/network_vtproto.pb.go +++ b/pkg/machinery/api/resource/definitions/network/network_vtproto.pb.go @@ -14,8 +14,8 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" durationpb "google.golang.org/protobuf/types/known/durationpb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" - enums "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/enums" + common "github.com/siderolabs/talos/pkg/machinery/api/common" + enums "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/enums" ) const ( diff --git a/pkg/machinery/api/resource/definitions/perf/perf.pb.go b/pkg/machinery/api/resource/definitions/perf/perf.pb.go index b342cf285..4ccf5264f 100644 --- a/pkg/machinery/api/resource/definitions/perf/perf.pb.go +++ b/pkg/machinery/api/resource/definitions/perf/perf.pb.go @@ -814,12 +814,12 @@ var file_resource_definitions_perf_perf_proto_rawDesc = []byte{ 0x61, 0x70, 0x32, 0x6d, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x4d, 0x61, 0x70, 0x32, 0x6d, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x6d, 0x61, 0x70, 0x31, 0x67, 0x18, 0x30, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x64, - 0x69, 0x72, 0x65, 0x63, 0x74, 0x4d, 0x61, 0x70, 0x31, 0x67, 0x42, 0x4c, 0x5a, 0x4a, 0x67, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, - 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, - 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, - 0x6f, 0x6e, 0x73, 0x2f, 0x70, 0x65, 0x72, 0x66, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x69, 0x72, 0x65, 0x63, 0x74, 0x4d, 0x61, 0x70, 0x31, 0x67, 0x42, 0x49, 0x5a, 0x47, 0x67, 0x69, + 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, + 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, + 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, + 0x2f, 0x70, 0x65, 0x72, 0x66, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/proto/proto.pb.go b/pkg/machinery/api/resource/definitions/proto/proto.pb.go index 51e6e9f48..38ac715c6 100644 --- a/pkg/machinery/api/resource/definitions/proto/proto.pb.go +++ b/pkg/machinery/api/resource/definitions/proto/proto.pb.go @@ -107,13 +107,12 @@ var file_resource_definitions_proto_proto_proto_rawDesc = []byte{ 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03, - 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x4d, 0x5a, 0x4b, 0x67, - 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, - 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, - 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, - 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x4a, 0x5a, 0x48, 0x67, + 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, + 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, + 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, + 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/runtime/runtime.pb.go b/pkg/machinery/api/resource/definitions/runtime/runtime.pb.go index da9f42ca6..be0c7ee61 100644 --- a/pkg/machinery/api/resource/definitions/runtime/runtime.pb.go +++ b/pkg/machinery/api/resource/definitions/runtime/runtime.pb.go @@ -13,7 +13,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - enums "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/enums" + enums "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/enums" ) const ( @@ -609,12 +609,12 @@ var file_resource_definitions_runtime_runtime_proto_rawDesc = []byte{ 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x42, - 0x4f, 0x5a, 0x4d, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, - 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, - 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, - 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, - 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x72, 0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, - 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x4c, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, + 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, + 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, + 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x72, 0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x62, 0x06, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/runtime/runtime_vtproto.pb.go b/pkg/machinery/api/resource/definitions/runtime/runtime_vtproto.pb.go index 2cda5ba49..3e7fc2576 100644 --- a/pkg/machinery/api/resource/definitions/runtime/runtime_vtproto.pb.go +++ b/pkg/machinery/api/resource/definitions/runtime/runtime_vtproto.pb.go @@ -11,7 +11,7 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" - enums "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/enums" + enums "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/enums" ) const ( diff --git a/pkg/machinery/api/resource/definitions/secrets/secrets.pb.go b/pkg/machinery/api/resource/definitions/secrets/secrets.pb.go index 38240dc11..547be8451 100644 --- a/pkg/machinery/api/resource/definitions/secrets/secrets.pb.go +++ b/pkg/machinery/api/resource/definitions/secrets/secrets.pb.go @@ -13,7 +13,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( @@ -865,13 +865,13 @@ var file_resource_definitions_secrets_secrets_proto_rawDesc = []byte{ 0x0a, 0x06, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x45, 0x4d, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, - 0x4b, 0x65, 0x79, 0x52, 0x06, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x42, 0x4f, 0x5a, 0x4d, 0x67, - 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, - 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, - 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, - 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, + 0x4b, 0x65, 0x79, 0x52, 0x06, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x42, 0x4c, 0x5a, 0x4a, 0x67, + 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, + 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, + 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, + 0x73, 0x2f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/secrets/secrets_vtproto.pb.go b/pkg/machinery/api/resource/definitions/secrets/secrets_vtproto.pb.go index 84aff6270..8c8bd0bcc 100644 --- a/pkg/machinery/api/resource/definitions/secrets/secrets_vtproto.pb.go +++ b/pkg/machinery/api/resource/definitions/secrets/secrets_vtproto.pb.go @@ -12,7 +12,7 @@ import ( proto "google.golang.org/protobuf/proto" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( diff --git a/pkg/machinery/api/resource/definitions/time/time.pb.go b/pkg/machinery/api/resource/definitions/time/time.pb.go index 407b1f371..9b600c391 100644 --- a/pkg/machinery/api/resource/definitions/time/time.pb.go +++ b/pkg/machinery/api/resource/definitions/time/time.pb.go @@ -98,12 +98,12 @@ var file_resource_definitions_time_time_proto_rawDesc = []byte{ 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x12, 0x23, 0x0a, 0x0d, 0x73, 0x79, 0x6e, 0x63, 0x5f, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x73, 0x79, 0x6e, 0x63, - 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x42, 0x4c, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, - 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, - 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, - 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x42, 0x49, 0x5a, 0x47, 0x67, 0x69, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, + 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, + 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x74, + 0x69, 0x6d, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/definitions/v1alpha1/v1alpha1.pb.go b/pkg/machinery/api/resource/definitions/v1alpha1/v1alpha1.pb.go index 38eba2873..d74fdec71 100644 --- a/pkg/machinery/api/resource/definitions/v1alpha1/v1alpha1.pb.go +++ b/pkg/machinery/api/resource/definitions/v1alpha1/v1alpha1.pb.go @@ -99,12 +99,12 @@ var file_resource_definitions_v1alpha1_v1alpha1_proto_rawDesc = []byte{ 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, - 0x42, 0x50, 0x5a, 0x4e, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, - 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, - 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, - 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, - 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, - 0x61, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x42, 0x4d, 0x5a, 0x4b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, + 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, + 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, + 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, + 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x62, + 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/network/device_config.pb.go b/pkg/machinery/api/resource/network/device_config.pb.go index 40b586b78..c4c4a249f 100644 --- a/pkg/machinery/api/resource/network/device_config.pb.go +++ b/pkg/machinery/api/resource/network/device_config.pb.go @@ -80,12 +80,12 @@ var file_resource_network_device_config_proto_rawDesc = []byte{ 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x70, 0x65, 0x63, 0x53, 0x70, 0x65, 0x63, 0x12, 0x27, 0x0a, 0x0f, 0x79, 0x61, 0x6d, 0x6c, 0x5f, 0x6d, 0x61, 0x72, 0x73, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, 0x79, 0x61, 0x6d, 0x6c, 0x4d, - 0x61, 0x72, 0x73, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x42, 0x43, 0x5a, 0x41, 0x67, 0x69, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, - 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, - 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x62, 0x06, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x61, 0x72, 0x73, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x42, 0x40, 0x5a, 0x3e, 0x67, 0x69, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, + 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, + 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x2f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/resource.pb.go b/pkg/machinery/api/resource/resource.pb.go index 94662bc17..6be5a65f2 100644 --- a/pkg/machinery/api/resource/resource.pb.go +++ b/pkg/machinery/api/resource/resource.pb.go @@ -14,7 +14,7 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" timestamppb "google.golang.org/protobuf/types/known/timestamppb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( @@ -860,11 +860,11 @@ var file_resource_resource_proto_rawDesc = []byte{ 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x57, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x30, 0x01, 0x1a, 0x0b, 0x88, 0x02, 0x01, 0xea, 0xbb, 0x2d, 0x04, 0x76, - 0x31, 0x2e, 0x35, 0x42, 0x3b, 0x5a, 0x39, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, - 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, - 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, - 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x31, 0x2e, 0x35, 0x42, 0x38, 0x5a, 0x36, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, + 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, + 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, + 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x62, 0x06, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/resource/resource_vtproto.pb.go b/pkg/machinery/api/resource/resource_vtproto.pb.go index 71c887410..8b5d4368b 100644 --- a/pkg/machinery/api/resource/resource_vtproto.pb.go +++ b/pkg/machinery/api/resource/resource_vtproto.pb.go @@ -13,7 +13,7 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" timestamppb "google.golang.org/protobuf/types/known/timestamppb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( diff --git a/pkg/machinery/api/security/security.pb.go b/pkg/machinery/api/security/security.pb.go index 2230a1017..c117fff3c 100644 --- a/pkg/machinery/api/security/security.pb.go +++ b/pkg/machinery/api/security/security.pb.go @@ -145,12 +145,11 @@ var file_security_security_proto_rawDesc = []byte{ 0x72, 0x69, 0x74, 0x79, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x61, 0x70, 0x69, 0x2e, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, - 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x3b, 0x5a, 0x39, - 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, - 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, - 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, - 0x2f, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x33, + 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x38, 0x5a, 0x36, + 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, + 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, + 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x65, + 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/storage/storage.pb.go b/pkg/machinery/api/storage/storage.pb.go index 80a0d05e8..053d3df3c 100644 --- a/pkg/machinery/api/storage/storage.pb.go +++ b/pkg/machinery/api/storage/storage.pb.go @@ -14,7 +14,7 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" emptypb "google.golang.org/protobuf/types/known/emptypb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( @@ -354,12 +354,11 @@ var file_storage_storage_proto_rawDesc = []byte{ 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x37, 0x0a, 0x05, 0x44, 0x69, 0x73, 0x6b, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, - 0x2e, 0x44, 0x69, 0x73, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x3a, - 0x5a, 0x38, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, - 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, - 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, - 0x70, 0x69, 0x2f, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x2e, 0x44, 0x69, 0x73, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x37, + 0x5a, 0x35, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, + 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, + 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, + 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/storage/storage_vtproto.pb.go b/pkg/machinery/api/storage/storage_vtproto.pb.go index 7a6210006..ca3dfd03a 100644 --- a/pkg/machinery/api/storage/storage_vtproto.pb.go +++ b/pkg/machinery/api/storage/storage_vtproto.pb.go @@ -12,7 +12,7 @@ import ( proto "google.golang.org/protobuf/proto" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( diff --git a/pkg/machinery/api/time/time.pb.go b/pkg/machinery/api/time/time.pb.go index 5c75febe0..50c2629df 100644 --- a/pkg/machinery/api/time/time.pb.go +++ b/pkg/machinery/api/time/time.pb.go @@ -15,7 +15,7 @@ import ( emptypb "google.golang.org/protobuf/types/known/emptypb" timestamppb "google.golang.org/protobuf/types/known/timestamppb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( @@ -227,11 +227,11 @@ var file_time_time_proto_rawDesc = []byte{ 0x65, 0x12, 0x32, 0x0a, 0x09, 0x54, 0x69, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x11, 0x2e, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x12, 0x2e, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x37, 0x5a, 0x35, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, - 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2d, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, - 0x73, 0x2f, 0x74, 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, - 0x69, 0x6e, 0x65, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x62, 0x06, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x34, 0x5a, 0x32, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, + 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x69, 0x64, 0x65, 0x72, 0x6f, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x74, + 0x61, 0x6c, 0x6f, 0x73, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, + 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/machinery/api/time/time_vtproto.pb.go b/pkg/machinery/api/time/time_vtproto.pb.go index 458e8a308..1ec52fdb2 100644 --- a/pkg/machinery/api/time/time_vtproto.pb.go +++ b/pkg/machinery/api/time/time_vtproto.pb.go @@ -13,7 +13,7 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" timestamppb "google.golang.org/protobuf/types/known/timestamppb" - common "github.com/talos-systems/talos/pkg/machinery/api/common" + common "github.com/siderolabs/talos/pkg/machinery/api/common" ) const ( diff --git a/pkg/machinery/client/client.go b/pkg/machinery/client/client.go index fc72c95d5..83f262651 100644 --- a/pkg/machinery/client/client.go +++ b/pkg/machinery/client/client.go @@ -24,14 +24,14 @@ import ( "google.golang.org/protobuf/types/known/durationpb" "google.golang.org/protobuf/types/known/emptypb" - clusterapi "github.com/talos-systems/talos/pkg/machinery/api/cluster" - "github.com/talos-systems/talos/pkg/machinery/api/common" - inspectapi "github.com/talos-systems/talos/pkg/machinery/api/inspect" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - resourceapi "github.com/talos-systems/talos/pkg/machinery/api/resource" - storageapi "github.com/talos-systems/talos/pkg/machinery/api/storage" - timeapi "github.com/talos-systems/talos/pkg/machinery/api/time" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + clusterapi "github.com/siderolabs/talos/pkg/machinery/api/cluster" + "github.com/siderolabs/talos/pkg/machinery/api/common" + inspectapi "github.com/siderolabs/talos/pkg/machinery/api/inspect" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + resourceapi "github.com/siderolabs/talos/pkg/machinery/api/resource" + storageapi "github.com/siderolabs/talos/pkg/machinery/api/storage" + timeapi "github.com/siderolabs/talos/pkg/machinery/api/time" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) // Client implements the proto.MachineServiceClient interface. It serves as the diff --git a/pkg/machinery/client/config/config_test.go b/pkg/machinery/client/config/config_test.go index c68f8d98b..0eb1abd6a 100644 --- a/pkg/machinery/client/config/config_test.go +++ b/pkg/machinery/client/config/config_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) func TestConfigMerge(t *testing.T) { diff --git a/pkg/machinery/client/config/path.go b/pkg/machinery/client/config/path.go index e2f558532..516d62da2 100644 --- a/pkg/machinery/client/config/path.go +++ b/pkg/machinery/client/config/path.go @@ -9,7 +9,7 @@ import ( "os" "path/filepath" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Path represents a path to a configuration file. diff --git a/pkg/machinery/client/connection.go b/pkg/machinery/client/connection.go index 6ce5b3e50..4454a45c1 100644 --- a/pkg/machinery/client/connection.go +++ b/pkg/machinery/client/connection.go @@ -18,9 +18,9 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/credentials" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/client/resolver" - "github.com/talos-systems/talos/pkg/machinery/constants" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/client/resolver" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Conn returns underlying client connection. diff --git a/pkg/machinery/client/connection_test.go b/pkg/machinery/client/connection_test.go index 4dffe17b4..b0e842205 100644 --- a/pkg/machinery/client/connection_test.go +++ b/pkg/machinery/client/connection_test.go @@ -12,8 +12,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/client" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/client" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) func TestReduceURLsToAddresses(t *testing.T) { diff --git a/pkg/machinery/client/events.go b/pkg/machinery/client/events.go index fa335a3e1..ebd55e2e9 100644 --- a/pkg/machinery/client/events.go +++ b/pkg/machinery/client/events.go @@ -15,8 +15,8 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/proto" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // ErrEventNotSupported is returned from the event decoder when we encounter an unknown event. diff --git a/pkg/machinery/client/export_test.go b/pkg/machinery/client/export_test.go index 5a907a1a7..c005dfc80 100644 --- a/pkg/machinery/client/export_test.go +++ b/pkg/machinery/client/export_test.go @@ -7,7 +7,7 @@ package client import ( "crypto/tls" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) func ReduceURLsToAddresses(endpoints []string) []string { diff --git a/pkg/machinery/client/insecure_credentials.go b/pkg/machinery/client/insecure_credentials.go index 3f4e54ae5..a2c6f1a69 100644 --- a/pkg/machinery/client/insecure_credentials.go +++ b/pkg/machinery/client/insecure_credentials.go @@ -12,7 +12,7 @@ import ( "google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials/insecure" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) // shouldInsecureConnectionsBeAllowed returns true if one endpoint starts with http:// diff --git a/pkg/machinery/client/inspect.go b/pkg/machinery/client/inspect.go index 0b21b86f5..f32325c77 100644 --- a/pkg/machinery/client/inspect.go +++ b/pkg/machinery/client/inspect.go @@ -10,7 +10,7 @@ import ( "google.golang.org/grpc" "google.golang.org/protobuf/types/known/emptypb" - inspectapi "github.com/talos-systems/talos/pkg/machinery/api/inspect" + inspectapi "github.com/siderolabs/talos/pkg/machinery/api/inspect" ) // InspectClient provides access to inspect API. diff --git a/pkg/machinery/client/options.go b/pkg/machinery/client/options.go index 4461005a9..47c3994b8 100644 --- a/pkg/machinery/client/options.go +++ b/pkg/machinery/client/options.go @@ -10,7 +10,7 @@ import ( "google.golang.org/grpc" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) // Options contains the set of client configuration options. diff --git a/pkg/machinery/client/reply_test.go b/pkg/machinery/client/reply_test.go index 49557d3d1..7d3d0f224 100644 --- a/pkg/machinery/client/reply_test.go +++ b/pkg/machinery/client/reply_test.go @@ -12,8 +12,8 @@ import ( "google.golang.org/genproto/googleapis/rpc/status" "google.golang.org/grpc/codes" - "github.com/talos-systems/talos/pkg/machinery/api/common" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/client" ) func TestFilterMessages(t *testing.T) { diff --git a/pkg/machinery/client/resolver/roundrobin_test.go b/pkg/machinery/client/resolver/roundrobin_test.go index efb275544..4f3cc6dd7 100644 --- a/pkg/machinery/client/resolver/roundrobin_test.go +++ b/pkg/machinery/client/resolver/roundrobin_test.go @@ -9,8 +9,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/client/resolver" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/client/resolver" + "github.com/siderolabs/talos/pkg/machinery/constants" ) func TestEnsureEndpointsHavePorts(t *testing.T) { diff --git a/pkg/machinery/client/resources_deprecated.go b/pkg/machinery/client/resources_deprecated.go index 9cdc9bfc6..51973132f 100644 --- a/pkg/machinery/client/resources_deprecated.go +++ b/pkg/machinery/client/resources_deprecated.go @@ -13,8 +13,8 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/status" - "github.com/talos-systems/talos/pkg/machinery/api/common" - resourceapi "github.com/talos-systems/talos/pkg/machinery/api/resource" + "github.com/siderolabs/talos/pkg/machinery/api/common" + resourceapi "github.com/siderolabs/talos/pkg/machinery/api/resource" ) // ResourcesClient provides access to resource API. diff --git a/pkg/machinery/client/secure_credentials.go b/pkg/machinery/client/secure_credentials.go index d77222f40..807bf05a6 100644 --- a/pkg/machinery/client/secure_credentials.go +++ b/pkg/machinery/client/secure_credentials.go @@ -9,7 +9,7 @@ package client import ( "google.golang.org/grpc/credentials" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) // RequireTransportSecurity implements credentials.PerRPCCredentials. diff --git a/pkg/machinery/client/status_test.go b/pkg/machinery/client/status_test.go index c63d60e17..97d97ef45 100644 --- a/pkg/machinery/client/status_test.go +++ b/pkg/machinery/client/status_test.go @@ -14,7 +14,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/talos-systems/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/client" ) func TestStatusCode(t *testing.T) { diff --git a/pkg/machinery/config/bundle.go b/pkg/machinery/config/bundle.go index 88276f2e2..b77e846cb 100644 --- a/pkg/machinery/config/bundle.go +++ b/pkg/machinery/config/bundle.go @@ -6,7 +6,7 @@ package config import ( - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) // ProviderBundle defines the configuration bundle interface. diff --git a/pkg/machinery/config/configloader/configloader.go b/pkg/machinery/config/configloader/configloader.go index 1807e5b50..d178eb1c6 100644 --- a/pkg/machinery/config/configloader/configloader.go +++ b/pkg/machinery/config/configloader/configloader.go @@ -12,9 +12,9 @@ import ( "io" "os" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/decoder" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/decoder" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) // ErrNoConfig is returned when no configuration was found in the input. diff --git a/pkg/machinery/config/configloader/configloader_test.go b/pkg/machinery/config/configloader/configloader_test.go index 62ed02e2d..248c3e852 100644 --- a/pkg/machinery/config/configloader/configloader_test.go +++ b/pkg/machinery/config/configloader/configloader_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" ) // callMethods calls obj's "getter" methods recursively and fails on panic. diff --git a/pkg/machinery/config/configpatcher/apply.go b/pkg/machinery/config/configpatcher/apply.go index 87f769d88..8d17bbe4e 100644 --- a/pkg/machinery/config/configpatcher/apply.go +++ b/pkg/machinery/config/configpatcher/apply.go @@ -7,9 +7,9 @@ package configpatcher import ( jsonpatch "github.com/evanphx/json-patch" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" ) // configOrBytes encapsulates either unmarshaled config or raw byte representation. diff --git a/pkg/machinery/config/configpatcher/apply_test.go b/pkg/machinery/config/configpatcher/apply_test.go index e5a302a68..dcc8995a3 100644 --- a/pkg/machinery/config/configpatcher/apply_test.go +++ b/pkg/machinery/config/configpatcher/apply_test.go @@ -11,8 +11,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/machinery/config/configpatcher" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/configpatcher" ) //go:embed testdata/apply/config.yaml diff --git a/pkg/machinery/config/configpatcher/configpatcher_test.go b/pkg/machinery/config/configpatcher/configpatcher_test.go index 24ad40f87..23afeef55 100644 --- a/pkg/machinery/config/configpatcher/configpatcher_test.go +++ b/pkg/machinery/config/configpatcher/configpatcher_test.go @@ -10,7 +10,7 @@ import ( jsonpatch "github.com/evanphx/json-patch" - "github.com/talos-systems/talos/pkg/machinery/config/configpatcher" + "github.com/siderolabs/talos/pkg/machinery/config/configpatcher" ) const dummyConfig = `machine: diff --git a/pkg/machinery/config/configpatcher/load.go b/pkg/machinery/config/configpatcher/load.go index 4bdd0b3c8..1b4a4d277 100644 --- a/pkg/machinery/config/configpatcher/load.go +++ b/pkg/machinery/config/configpatcher/load.go @@ -13,7 +13,7 @@ import ( jsonpatch "github.com/evanphx/json-patch" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" ) type patch []map[string]interface{} diff --git a/pkg/machinery/config/configpatcher/load_test.go b/pkg/machinery/config/configpatcher/load_test.go index 03ea40815..11b43cd31 100644 --- a/pkg/machinery/config/configpatcher/load_test.go +++ b/pkg/machinery/config/configpatcher/load_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/config/configpatcher" + "github.com/siderolabs/talos/pkg/machinery/config/configpatcher" ) //go:embed testdata/patch.json diff --git a/pkg/machinery/config/configpatcher/strategic.go b/pkg/machinery/config/configpatcher/strategic.go index 95d98bae3..9fcb93330 100644 --- a/pkg/machinery/config/configpatcher/strategic.go +++ b/pkg/machinery/config/configpatcher/strategic.go @@ -7,8 +7,8 @@ package configpatcher import ( "fmt" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/merge" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/merge" ) // StrategicMergePatch is a strategic merge config patch. diff --git a/pkg/machinery/config/contract_test.go b/pkg/machinery/config/contract_test.go index e3eb62f68..c1ab2a328 100644 --- a/pkg/machinery/config/contract_test.go +++ b/pkg/machinery/config/contract_test.go @@ -10,7 +10,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config" ) func TestContractGreater(t *testing.T) { diff --git a/pkg/machinery/config/decoder/decoder.go b/pkg/machinery/config/decoder/decoder.go index fcf794b69..734959dd0 100644 --- a/pkg/machinery/config/decoder/decoder.go +++ b/pkg/machinery/config/decoder/decoder.go @@ -12,7 +12,7 @@ import ( yaml "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config" ) var ( diff --git a/pkg/machinery/config/decoder/decoder_test.go b/pkg/machinery/config/decoder/decoder_test.go index 279a37377..ea6de0d70 100644 --- a/pkg/machinery/config/decoder/decoder_test.go +++ b/pkg/machinery/config/decoder/decoder_test.go @@ -12,9 +12,9 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/decoder" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/decoder" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) type Mock struct { diff --git a/pkg/machinery/config/encoder/encoder_test.go b/pkg/machinery/config/encoder/encoder_test.go index 64f98b739..b2381a3df 100644 --- a/pkg/machinery/config/encoder/encoder_test.go +++ b/pkg/machinery/config/encoder/encoder_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/suite" yaml "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" ) type Config struct { diff --git a/pkg/machinery/config/merge/merge_test.go b/pkg/machinery/config/merge/merge_test.go index 159c9db46..d703aafbf 100644 --- a/pkg/machinery/config/merge/merge_test.go +++ b/pkg/machinery/config/merge/merge_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/config/merge" + "github.com/siderolabs/talos/pkg/machinery/config/merge" ) type Config struct { diff --git a/pkg/machinery/config/provider.go b/pkg/machinery/config/provider.go index 056ed124c..a7ddaa42c 100644 --- a/pkg/machinery/config/provider.go +++ b/pkg/machinery/config/provider.go @@ -14,8 +14,8 @@ import ( specs "github.com/opencontainers/runtime-spec/specs-go" "github.com/siderolabs/crypto/x509" - "github.com/talos-systems/talos/pkg/machinery/config/encoder" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // Provider defines the configuration consumption interface. diff --git a/pkg/machinery/config/types/v1alpha1/bundle/bundle.go b/pkg/machinery/config/types/v1alpha1/bundle/bundle.go index 5f85983de..0abe65841 100644 --- a/pkg/machinery/config/types/v1alpha1/bundle/bundle.go +++ b/pkg/machinery/config/types/v1alpha1/bundle/bundle.go @@ -12,10 +12,10 @@ import ( yaml "gopkg.in/yaml.v3" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // NewConfigBundle returns a new bundle. diff --git a/pkg/machinery/config/types/v1alpha1/bundle/bundle_test.go b/pkg/machinery/config/types/v1alpha1/bundle/bundle_test.go index c54175c40..fce456261 100644 --- a/pkg/machinery/config/types/v1alpha1/bundle/bundle_test.go +++ b/pkg/machinery/config/types/v1alpha1/bundle/bundle_test.go @@ -11,12 +11,12 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/machinery/config/configpatcher" - "github.com/talos-systems/talos/pkg/machinery/config/encoder" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/bundle" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/configpatcher" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/bundle" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) func TestGenerateConfig(t *testing.T) { diff --git a/pkg/machinery/config/types/v1alpha1/bundle/options.go b/pkg/machinery/config/types/v1alpha1/bundle/options.go index 321314901..b800f73ed 100644 --- a/pkg/machinery/config/types/v1alpha1/bundle/options.go +++ b/pkg/machinery/config/types/v1alpha1/bundle/options.go @@ -7,8 +7,8 @@ package bundle import ( jsonpatch "github.com/evanphx/json-patch" - "github.com/talos-systems/talos/pkg/machinery/config/configpatcher" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/machinery/config/configpatcher" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" ) // Option controls config options specific to config bundle generation. diff --git a/pkg/machinery/config/types/v1alpha1/bundle/v1alpha1_configurator_bundle.go b/pkg/machinery/config/types/v1alpha1/bundle/v1alpha1_configurator_bundle.go index 5b9ac374f..7c307d0b0 100644 --- a/pkg/machinery/config/types/v1alpha1/bundle/v1alpha1_configurator_bundle.go +++ b/pkg/machinery/config/types/v1alpha1/bundle/v1alpha1_configurator_bundle.go @@ -10,12 +10,12 @@ import ( "path/filepath" "strings" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/configpatcher" - "github.com/talos-systems/talos/pkg/machinery/config/encoder" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/configpatcher" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // ConfigBundle defines the group of v1alpha1 config files. diff --git a/pkg/machinery/config/types/v1alpha1/generate/controlplane.go b/pkg/machinery/config/types/v1alpha1/generate/controlplane.go index 3abfb60af..7a9e00c73 100644 --- a/pkg/machinery/config/types/v1alpha1/generate/controlplane.go +++ b/pkg/machinery/config/types/v1alpha1/generate/controlplane.go @@ -5,8 +5,8 @@ package generate import ( - v1alpha1 "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + v1alpha1 "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) func controlPlaneUd(in *Input) (*v1alpha1.Config, error) { diff --git a/pkg/machinery/config/types/v1alpha1/generate/example_test.go b/pkg/machinery/config/types/v1alpha1/generate/example_test.go index 5c1e2a87f..855ae05d9 100644 --- a/pkg/machinery/config/types/v1alpha1/generate/example_test.go +++ b/pkg/machinery/config/types/v1alpha1/generate/example_test.go @@ -8,11 +8,11 @@ import ( "log" "os" - "github.com/talos-systems/talos/pkg/machinery/config" - v1alpha1 "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config" + v1alpha1 "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) //nolint:wsl,testableexamples diff --git a/pkg/machinery/config/types/v1alpha1/generate/generate.go b/pkg/machinery/config/types/v1alpha1/generate/generate.go index 474e2a8f0..16cd46377 100644 --- a/pkg/machinery/config/types/v1alpha1/generate/generate.go +++ b/pkg/machinery/config/types/v1alpha1/generate/generate.go @@ -25,12 +25,12 @@ import ( "github.com/siderolabs/crypto/x509" tnet "github.com/siderolabs/net" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/internal/cis" - v1alpha1 "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/internal/cis" + v1alpha1 "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/role" ) // Config returns the talos config for a given node type. diff --git a/pkg/machinery/config/types/v1alpha1/generate/generate_test.go b/pkg/machinery/config/types/v1alpha1/generate/generate_test.go index 2ee328245..7fa7ff719 100644 --- a/pkg/machinery/config/types/v1alpha1/generate/generate_test.go +++ b/pkg/machinery/config/types/v1alpha1/generate/generate_test.go @@ -11,12 +11,12 @@ import ( "github.com/stretchr/testify/suite" - "github.com/talos-systems/talos/pkg/machinery/client" - "github.com/talos-systems/talos/pkg/machinery/config" - genv1alpha1 "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/machinery/client" + "github.com/siderolabs/talos/pkg/machinery/config" + genv1alpha1 "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/role" ) type GenerateSuite struct { diff --git a/pkg/machinery/config/types/v1alpha1/generate/init.go b/pkg/machinery/config/types/v1alpha1/generate/init.go index e3307c9fb..240f911c8 100644 --- a/pkg/machinery/config/types/v1alpha1/generate/init.go +++ b/pkg/machinery/config/types/v1alpha1/generate/init.go @@ -10,9 +10,9 @@ import ( "github.com/siderolabs/go-pointer" - v1alpha1 "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + v1alpha1 "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) //nolint:gocyclo diff --git a/pkg/machinery/config/types/v1alpha1/generate/options.go b/pkg/machinery/config/types/v1alpha1/generate/options.go index a12a2e614..396e60bd9 100644 --- a/pkg/machinery/config/types/v1alpha1/generate/options.go +++ b/pkg/machinery/config/types/v1alpha1/generate/options.go @@ -10,9 +10,9 @@ import ( "github.com/siderolabs/go-pointer" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/config" - v1alpha1 "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/machinery/config" + v1alpha1 "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/role" ) // GenOption controls generate options specific to input generation. diff --git a/pkg/machinery/config/types/v1alpha1/generate/talosconfig.go b/pkg/machinery/config/types/v1alpha1/generate/talosconfig.go index 08f0a7da4..6b985402c 100644 --- a/pkg/machinery/config/types/v1alpha1/generate/talosconfig.go +++ b/pkg/machinery/config/types/v1alpha1/generate/talosconfig.go @@ -5,7 +5,7 @@ package generate import ( - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) // Talosconfig returns the talos admin Talos config. diff --git a/pkg/machinery/config/types/v1alpha1/generate/worker.go b/pkg/machinery/config/types/v1alpha1/generate/worker.go index 9d6a785f6..0e2ddf51f 100644 --- a/pkg/machinery/config/types/v1alpha1/generate/worker.go +++ b/pkg/machinery/config/types/v1alpha1/generate/worker.go @@ -11,9 +11,9 @@ import ( "github.com/siderolabs/crypto/x509" "github.com/siderolabs/go-pointer" - v1alpha1 "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + v1alpha1 "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) //nolint:gocyclo diff --git a/pkg/machinery/config/types/v1alpha1/machine/machine_test.go b/pkg/machinery/config/types/v1alpha1/machine/machine_test.go index 0f935e2fb..936b85244 100644 --- a/pkg/machinery/config/types/v1alpha1/machine/machine_test.go +++ b/pkg/machinery/config/types/v1alpha1/machine/machine_test.go @@ -10,8 +10,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) func TestParseType(t *testing.T) { diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_apiserverconfig.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_apiserverconfig.go index b4521b628..0ca9fc72b 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_apiserverconfig.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_apiserverconfig.go @@ -10,8 +10,8 @@ import ( "github.com/siderolabs/gen/slices" "github.com/siderolabs/go-pointer" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // APIServerDefaultAuditPolicy is the default kube-apiserver audit policy. diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_clusterconfig.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_clusterconfig.go index 623b3d5ff..74101e569 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_clusterconfig.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_clusterconfig.go @@ -15,9 +15,9 @@ import ( "github.com/siderolabs/go-pointer" sideronet "github.com/siderolabs/net" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // ClusterConfig implements config.ClusterConfig, config.Token, and config.ClusterNetwork interfaces. diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_controllermanagerconfig.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_controllermanagerconfig.go index 6e4390f87..371fe53d1 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_controllermanagerconfig.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_controllermanagerconfig.go @@ -9,8 +9,8 @@ import ( "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Image implements the config.ControllerManager interface. diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_discoveryconfig.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_discoveryconfig.go index 4b5a0aa09..35cc1ee48 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_discoveryconfig.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_discoveryconfig.go @@ -7,8 +7,8 @@ package v1alpha1 import ( "github.com/siderolabs/go-pointer" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Enabled implements the config.ClusterDiscovery interface. diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_etcdconfig.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_etcdconfig.go index 202223183..d09027925 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_etcdconfig.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_etcdconfig.go @@ -10,7 +10,7 @@ import ( "github.com/siderolabs/crypto/x509" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Image implements the config.Etcd interface. diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_features.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_features.go index 66664f785..155a0b779 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_features.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_features.go @@ -7,7 +7,7 @@ package v1alpha1 import ( "github.com/siderolabs/go-pointer" - "github.com/talos-systems/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config" ) // RBACEnabled implements config.Features interface. diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_kernel.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_kernel.go index f24bfdf57..300528a40 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_kernel.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_kernel.go @@ -7,7 +7,7 @@ package v1alpha1 import ( "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config" ) // Modules implements config.Kernel interface. diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_logging.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_logging.go index 6deb85856..43c41a673 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_logging.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_logging.go @@ -11,8 +11,8 @@ import ( "github.com/hashicorp/go-multierror" "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Validate checks logging configuration for errors. diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_marshal_test.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_marshal_test.go index ceba9f7d5..9aa8f0d46 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_marshal_test.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_marshal_test.go @@ -14,7 +14,7 @@ import ( "github.com/stretchr/testify/require" yaml "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) func TestBase64Bytes(t *testing.T) { diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_network_options.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_network_options.go index 8216dc0a2..3d5d4b70d 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_network_options.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_network_options.go @@ -7,7 +7,7 @@ package v1alpha1 import ( "github.com/siderolabs/go-pointer" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // NetworkConfigOption generates NetworkConfig. diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_provider.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_provider.go index 8eb8dcfa6..a71e4a32f 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_provider.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_provider.go @@ -18,10 +18,10 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice/util/disk" "github.com/siderolabs/go-pointer" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/encoder" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) const ( diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_proxyconfig.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_proxyconfig.go index a43818178..9228e7569 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_proxyconfig.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_proxyconfig.go @@ -9,7 +9,7 @@ import ( "github.com/siderolabs/go-pointer" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Enabled implements the config.Proxy interface. diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_readonly_provider.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_readonly_provider.go index 89f978b72..8faa0e298 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_readonly_provider.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_readonly_provider.go @@ -7,8 +7,8 @@ package v1alpha1 import ( "errors" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" ) // ReadonlyProvider wraps the *v1alpha1.Config to make config read-only. diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_schedulerconfig.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_schedulerconfig.go index d4c178a67..aaace71fa 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_schedulerconfig.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_schedulerconfig.go @@ -9,8 +9,8 @@ import ( "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/constants" ) // Image implements the config.Scheduler interface. diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_strategic_merge_test.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_strategic_merge_test.go index 49c594106..d29b56baf 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_strategic_merge_test.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_strategic_merge_test.go @@ -12,11 +12,11 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/machinery/config/encoder" - "github.com/talos-systems/talos/pkg/machinery/config/merge" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/config/merge" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) func TestStrategicMergePatch(t *testing.T) { diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_types.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_types.go index e517e14cd..d4de1f52f 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_types.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_types.go @@ -33,10 +33,10 @@ import ( "github.com/siderolabs/go-pointer" yaml "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/merge" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/merge" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" ) func init() { diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_types_doc.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_types_doc.go index 9e5be151d..04a92f644 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_types_doc.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_types_doc.go @@ -9,8 +9,8 @@ package v1alpha1 import ( "github.com/siderolabs/go-pointer" - "github.com/talos-systems/talos/pkg/machinery/config/encoder" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config/encoder" + "github.com/siderolabs/talos/pkg/machinery/constants" ) var ( diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_unstructured_test.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_unstructured_test.go index c7fea7a70..61c8f59ba 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_unstructured_test.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_unstructured_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" ) func TestUnstructuredDeepCopy(t *testing.T) { diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_validation.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_validation.go index 3571c6a1e..2495b6439 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_validation.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_validation.go @@ -20,11 +20,11 @@ import ( "github.com/siderolabs/go-debug" sideronet "github.com/siderolabs/net" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/kubelet" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/kubelet" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" ) var ( diff --git a/pkg/machinery/config/types/v1alpha1/v1alpha1_validation_test.go b/pkg/machinery/config/types/v1alpha1/v1alpha1_validation_test.go index 1a4a6e07b..091461668 100644 --- a/pkg/machinery/config/types/v1alpha1/v1alpha1_validation_test.go +++ b/pkg/machinery/config/types/v1alpha1/v1alpha1_validation_test.go @@ -14,9 +14,9 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/constants" ) type runtimeMode struct { diff --git a/pkg/machinery/extensions/services/services.go b/pkg/machinery/extensions/services/services.go index a6e110526..02f6930c6 100644 --- a/pkg/machinery/extensions/services/services.go +++ b/pkg/machinery/extensions/services/services.go @@ -13,7 +13,7 @@ import ( "github.com/hashicorp/go-multierror" "github.com/opencontainers/runtime-spec/specs-go" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" ) // Spec is represents non-system service definition. diff --git a/pkg/machinery/extensions/services/services_test.go b/pkg/machinery/extensions/services/services_test.go index 38176cbe7..84fb42627 100644 --- a/pkg/machinery/extensions/services/services_test.go +++ b/pkg/machinery/extensions/services/services_test.go @@ -13,8 +13,8 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/extensions/services" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/extensions/services" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" ) //go:embed "testdata/hello.yaml" diff --git a/pkg/machinery/go.mod b/pkg/machinery/go.mod index da9a23beb..d218dea3d 100644 --- a/pkg/machinery/go.mod +++ b/pkg/machinery/go.mod @@ -1,4 +1,4 @@ -module github.com/talos-systems/talos/pkg/machinery +module github.com/siderolabs/talos/pkg/machinery go 1.19 @@ -8,7 +8,7 @@ replace gopkg.in/yaml.v3 => github.com/unix4ever/yaml v0.0.0-20220527175918-f17b require ( github.com/containerd/go-cni v1.1.7 - github.com/cosi-project/runtime v0.2.0-alpha.2 + github.com/cosi-project/runtime v0.2.0-alpha.3 github.com/dustin/go-humanize v1.0.0 github.com/evanphx/json-patch v5.6.0+incompatible github.com/ghodss/yaml v1.0.0 @@ -43,7 +43,7 @@ require ( github.com/gertd/go-pluralize v0.2.1 // indirect github.com/golang/protobuf v1.5.2 // indirect github.com/google/go-cmp v0.5.9 // indirect - github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.12.0 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/josharian/native v1.0.0 // indirect github.com/mdlayher/genetlink v1.2.0 // indirect diff --git a/pkg/machinery/go.sum b/pkg/machinery/go.sum index 48314d3d3..1279eb020 100644 --- a/pkg/machinery/go.sum +++ b/pkg/machinery/go.sum @@ -22,8 +22,8 @@ github.com/containerd/go-cni v1.1.7 h1:1yKpVCQAXI21BJIy8q7Nyk4CWpIgUno6ib7JIDca7 github.com/containerd/go-cni v1.1.7/go.mod h1:Ve4Q0RB2Bw78D90OL0YVyDjqdTL7FKh9W+UPbhWiZXA= github.com/containernetworking/cni v1.1.2 h1:wtRGZVv7olUHMOqouPpn3cXJWpJgM6+EUl31EQbXALQ= github.com/containernetworking/cni v1.1.2/go.mod h1:sDpYKmGVENF3s6uvMvGgldDWeG8dMxakj/u+i9ht9vw= -github.com/cosi-project/runtime v0.2.0-alpha.2 h1:B27kw7knAukaHiXwKP51hGh4q2RMaY+wPF+beXBjZMI= -github.com/cosi-project/runtime v0.2.0-alpha.2/go.mod h1:jv79UECqzQaAeVwbdawUGmEBCX0fl7J7JBysnOYIM4U= +github.com/cosi-project/runtime v0.2.0-alpha.3 h1:dtVWvyhB79C95rCxe9EPW4zSWpvYLuQlHeDbu7k1uPo= +github.com/cosi-project/runtime v0.2.0-alpha.3/go.mod h1:hLD9uvqKG0EESZnqVDCpFlKEMjFEAlr2jIfdHG9gDpI= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -60,8 +60,8 @@ github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8 github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 h1:lLT7ZLSzGLI08vc9cpd+tYmNWjdKDqyr/2L+f6U12Fk= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.12.0 h1:kr3j8iIMR4ywO/O0rvksXaJvauGGCMg2zAZIiNZ9uIQ= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.12.0/go.mod h1:ummNFgdgLhhX7aIiy35vVmQNS0rWXknfPE0qe6fmFXg= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= @@ -129,6 +129,7 @@ github.com/siderolabs/go-debug v0.2.2 h1:c8styCvp+MO0oPO8q4N1CKSF3fVuAT0qnuUIeZ/ github.com/siderolabs/go-debug v0.2.2/go.mod h1:c/wMqY6+djxwrwEg1eg3kaTeZIfq6OUlEHAMreo1VV0= github.com/siderolabs/go-pointer v1.0.0 h1:6TshPKep2doDQJAAtHUuHWXbca8ZfyRySjSBT/4GsMU= github.com/siderolabs/go-pointer v1.0.0/go.mod h1:HTRFUNYa3R+k0FFKNv11zgkaCLzEkWVzoYZ433P3kHc= +github.com/siderolabs/go-retry v0.3.2 h1:FzWslFm4y8RY1wU0gIskm0oZHOpsSibZqlR8N8/k4Eo= github.com/siderolabs/net v0.4.0 h1:1bOgVay/ijPkJz4qct98nHsiB/ysLQU0KLoBC4qLm7I= github.com/siderolabs/net v0.4.0/go.mod h1:/ibG+Hm9HU27agp5r9Q3eZicEfjquzNzQNux5uEk0kM= github.com/siderolabs/protoenc v0.2.0 h1:QFxWIAo//12+/bm27GNYoK/TpQGTYsRrrZCu9jSghvU= @@ -150,7 +151,6 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/talos-systems/go-retry v0.3.1 h1:GjjyHB8i1CJpb1O5qYPMljq74cRQ5uiDoyMaWddA5FA= github.com/unix4ever/yaml v0.0.0-20220527175918-f17b0f05cf2c h1:Vn6nVVu9MdOYvXPkJP83iX5jVIfvxFC9v9xIKb+DlaQ= github.com/unix4ever/yaml v0.0.0-20220527175918-f17b0f05cf2c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= diff --git a/pkg/machinery/nethelpers/routeflags_test.go b/pkg/machinery/nethelpers/routeflags_test.go index e02780bdf..11986ca7a 100644 --- a/pkg/machinery/nethelpers/routeflags_test.go +++ b/pkg/machinery/nethelpers/routeflags_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" ) func TestRouteFlagsStrings(t *testing.T) { diff --git a/pkg/machinery/proto/proto.go b/pkg/machinery/proto/proto.go index c9cf724a4..05470c9b2 100644 --- a/pkg/machinery/proto/proto.go +++ b/pkg/machinery/proto/proto.go @@ -15,7 +15,7 @@ import ( "github.com/siderolabs/protoenc" "google.golang.org/protobuf/proto" //nolint:depguard - "github.com/talos-systems/talos/pkg/machinery/api/common" + "github.com/siderolabs/talos/pkg/machinery/api/common" ) // Message is the main interface for protobuf API v2 messages. diff --git a/pkg/machinery/proto/proto_test.go b/pkg/machinery/proto/proto_test.go index c12b57390..ed995f63d 100644 --- a/pkg/machinery/proto/proto_test.go +++ b/pkg/machinery/proto/proto_test.go @@ -13,15 +13,15 @@ import ( "github.com/siderolabs/protoenc" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/api/common" - clusterpb "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/cluster" - "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/enums" - networkpb "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/network" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/proto" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/api/common" + clusterpb "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/cluster" + "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/enums" + networkpb "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/network" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) //nolint:lll diff --git a/pkg/machinery/resources/cluster/affiliate.go b/pkg/machinery/resources/cluster/affiliate.go index 83db2d5a7..d4fab01c6 100644 --- a/pkg/machinery/resources/cluster/affiliate.go +++ b/pkg/machinery/resources/cluster/affiliate.go @@ -13,8 +13,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/gen/value" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/proto" ) //go:generate deep-copy -type AffiliateSpec -type ConfigSpec -type IdentitySpec -type MemberSpec -header-file ../../../../hack/boilerplate.txt -o deep_copy.generated.go . diff --git a/pkg/machinery/resources/cluster/affiliate_test.go b/pkg/machinery/resources/cluster/affiliate_test.go index f88fa388c..b45c14b29 100644 --- a/pkg/machinery/resources/cluster/affiliate_test.go +++ b/pkg/machinery/resources/cluster/affiliate_test.go @@ -10,8 +10,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) func TestAffiliateSpec_Merge(t *testing.T) { diff --git a/pkg/machinery/resources/cluster/cluster_test.go b/pkg/machinery/resources/cluster/cluster_test.go index 0cdaa4b55..1363cd0fe 100644 --- a/pkg/machinery/resources/cluster/cluster_test.go +++ b/pkg/machinery/resources/cluster/cluster_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/cluster" + "github.com/siderolabs/talos/pkg/machinery/resources/cluster" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/cluster/config.go b/pkg/machinery/resources/cluster/config.go index 928bc90a4..e1d2d78fd 100644 --- a/pkg/machinery/resources/cluster/config.go +++ b/pkg/machinery/resources/cluster/config.go @@ -10,8 +10,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) // ConfigType is type of Config resource. diff --git a/pkg/machinery/resources/cluster/identity.go b/pkg/machinery/resources/cluster/identity.go index 0ff3d9d1e..e1ceb88ac 100644 --- a/pkg/machinery/resources/cluster/identity.go +++ b/pkg/machinery/resources/cluster/identity.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // IdentityType is type of Identity resource. diff --git a/pkg/machinery/resources/cluster/member.go b/pkg/machinery/resources/cluster/member.go index ec799d6b1..89f5bb574 100644 --- a/pkg/machinery/resources/cluster/member.go +++ b/pkg/machinery/resources/cluster/member.go @@ -12,8 +12,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // MemberType is type of Member resource. diff --git a/pkg/machinery/resources/config/config_test.go b/pkg/machinery/resources/config/config_test.go index b49fc7537..e868887d5 100644 --- a/pkg/machinery/resources/config/config_test.go +++ b/pkg/machinery/resources/config/config_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/config/machine_config.go b/pkg/machinery/resources/config/machine_config.go index e18c59387..601a0758c 100644 --- a/pkg/machinery/resources/config/machine_config.go +++ b/pkg/machinery/resources/config/machine_config.go @@ -9,11 +9,11 @@ import ( "github.com/cosi-project/runtime/pkg/resource/meta" "github.com/cosi-project/runtime/pkg/resource/protobuf" - configpb "github.com/talos-systems/talos/pkg/machinery/api/resource/config" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/proto" + configpb "github.com/siderolabs/talos/pkg/machinery/api/resource/config" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // MachineConfigType is type of Service resource. diff --git a/pkg/machinery/resources/config/machine_config_test.go b/pkg/machinery/resources/config/machine_config_test.go index 96edb6757..792f8e22c 100644 --- a/pkg/machinery/resources/config/machine_config_test.go +++ b/pkg/machinery/resources/config/machine_config_test.go @@ -15,8 +15,8 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/config/configloader" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/config/configloader" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) const sampleConfig = `version: v1alpha1 diff --git a/pkg/machinery/resources/config/machine_type.go b/pkg/machinery/resources/config/machine_type.go index 300917579..d5b82a353 100644 --- a/pkg/machinery/resources/config/machine_type.go +++ b/pkg/machinery/resources/config/machine_type.go @@ -9,9 +9,9 @@ import ( "github.com/cosi-project/runtime/pkg/resource/meta" "github.com/cosi-project/runtime/pkg/resource/protobuf" - configpb "github.com/talos-systems/talos/pkg/machinery/api/resource/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/proto" + configpb "github.com/siderolabs/talos/pkg/machinery/api/resource/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // MachineTypeType is type of MachineType resource. diff --git a/pkg/machinery/resources/config/machine_type_test.go b/pkg/machinery/resources/config/machine_type_test.go index 3747b96d0..36e9411d1 100644 --- a/pkg/machinery/resources/config/machine_type_test.go +++ b/pkg/machinery/resources/config/machine_type_test.go @@ -11,8 +11,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) func TestMachineTypeProtobufMarshal(t *testing.T) { diff --git a/pkg/machinery/resources/cri/cri_test.go b/pkg/machinery/resources/cri/cri_test.go index 56dace4ee..8f3d63da5 100644 --- a/pkg/machinery/resources/cri/cri_test.go +++ b/pkg/machinery/resources/cri/cri_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/cri" + "github.com/siderolabs/talos/pkg/machinery/resources/cri" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/cri/seccomp_profile.go b/pkg/machinery/resources/cri/seccomp_profile.go index 8fee3cd58..c1efc071a 100644 --- a/pkg/machinery/resources/cri/seccomp_profile.go +++ b/pkg/machinery/resources/cri/seccomp_profile.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) //nolint:lll diff --git a/pkg/machinery/resources/etcd/config.go b/pkg/machinery/resources/etcd/config.go index 2c1299c70..8beb75f27 100644 --- a/pkg/machinery/resources/etcd/config.go +++ b/pkg/machinery/resources/etcd/config.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // ConfigType is type of Config resource. diff --git a/pkg/machinery/resources/etcd/etcd_test.go b/pkg/machinery/resources/etcd/etcd_test.go index f79939c85..350789ec1 100644 --- a/pkg/machinery/resources/etcd/etcd_test.go +++ b/pkg/machinery/resources/etcd/etcd_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/etcd" + "github.com/siderolabs/talos/pkg/machinery/resources/etcd" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/etcd/pki_status.go b/pkg/machinery/resources/etcd/pki_status.go index d271499fe..a58b8626e 100644 --- a/pkg/machinery/resources/etcd/pki_status.go +++ b/pkg/machinery/resources/etcd/pki_status.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // PKIStatusType is type of PKIStatus resource. diff --git a/pkg/machinery/resources/etcd/spec.go b/pkg/machinery/resources/etcd/spec.go index 97dab7565..28af33a85 100644 --- a/pkg/machinery/resources/etcd/spec.go +++ b/pkg/machinery/resources/etcd/spec.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // SpecType is type of Spec resource. diff --git a/pkg/machinery/resources/files/etcfile_spec.go b/pkg/machinery/resources/files/etcfile_spec.go index a6558598a..ac72bbc19 100644 --- a/pkg/machinery/resources/files/etcfile_spec.go +++ b/pkg/machinery/resources/files/etcfile_spec.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) //go:generate deep-copy -type EtcFileSpecSpec -type EtcFileStatusSpec -header-file ../../../../hack/boilerplate.txt -o deep_copy.generated.go . diff --git a/pkg/machinery/resources/files/etcfile_status.go b/pkg/machinery/resources/files/etcfile_status.go index e0a319af3..cc3fbc407 100644 --- a/pkg/machinery/resources/files/etcfile_status.go +++ b/pkg/machinery/resources/files/etcfile_status.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // EtcFileStatusType is type of EtcFile resource. diff --git a/pkg/machinery/resources/files/files_test.go b/pkg/machinery/resources/files/files_test.go index 535f66686..ab0802e20 100644 --- a/pkg/machinery/resources/files/files_test.go +++ b/pkg/machinery/resources/files/files_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/files" + "github.com/siderolabs/talos/pkg/machinery/resources/files" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/hardware/hardware_test.go b/pkg/machinery/resources/hardware/hardware_test.go index 2d57a8239..139338785 100644 --- a/pkg/machinery/resources/hardware/hardware_test.go +++ b/pkg/machinery/resources/hardware/hardware_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/hardware" + "github.com/siderolabs/talos/pkg/machinery/resources/hardware" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/hardware/memorymodule.go b/pkg/machinery/resources/hardware/memorymodule.go index 8334a37f8..32ab957aa 100644 --- a/pkg/machinery/resources/hardware/memorymodule.go +++ b/pkg/machinery/resources/hardware/memorymodule.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // MemoryModuleType is type of MemoryModule resource. diff --git a/pkg/machinery/resources/hardware/processor.go b/pkg/machinery/resources/hardware/processor.go index 0e2a7ec01..bb006d02d 100644 --- a/pkg/machinery/resources/hardware/processor.go +++ b/pkg/machinery/resources/hardware/processor.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // ProcessorType is type of Processor resource. diff --git a/pkg/machinery/resources/hardware/system_information.go b/pkg/machinery/resources/hardware/system_information.go index db2e63899..5f547810e 100644 --- a/pkg/machinery/resources/hardware/system_information.go +++ b/pkg/machinery/resources/hardware/system_information.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // SystemInformationType is type of SystemInformation resource. diff --git a/pkg/machinery/resources/k8s/admissioncontrol_config.go b/pkg/machinery/resources/k8s/admissioncontrol_config.go index 163731268..6fbb25f3d 100644 --- a/pkg/machinery/resources/k8s/admissioncontrol_config.go +++ b/pkg/machinery/resources/k8s/admissioncontrol_config.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) //nolint:lll diff --git a/pkg/machinery/resources/k8s/apiserver_config.go b/pkg/machinery/resources/k8s/apiserver_config.go index b35510336..546c01124 100644 --- a/pkg/machinery/resources/k8s/apiserver_config.go +++ b/pkg/machinery/resources/k8s/apiserver_config.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // APIServerConfigType is type of APIServerConfig resource. diff --git a/pkg/machinery/resources/k8s/auditpolicy_config.go b/pkg/machinery/resources/k8s/auditpolicy_config.go index 6554221c7..1ec0ef2c2 100644 --- a/pkg/machinery/resources/k8s/auditpolicy_config.go +++ b/pkg/machinery/resources/k8s/auditpolicy_config.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // AuditPolicyConfigType is type of AuditPolicyConfig resource. diff --git a/pkg/machinery/resources/k8s/config_status.go b/pkg/machinery/resources/k8s/config_status.go index 8f66d85d6..ca6a866a3 100644 --- a/pkg/machinery/resources/k8s/config_status.go +++ b/pkg/machinery/resources/k8s/config_status.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // ConfigStatusType is type of ConfigStatus resource. diff --git a/pkg/machinery/resources/k8s/controllermanager_config.go b/pkg/machinery/resources/k8s/controllermanager_config.go index 81331d7f1..2645b2341 100644 --- a/pkg/machinery/resources/k8s/controllermanager_config.go +++ b/pkg/machinery/resources/k8s/controllermanager_config.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // ControllerManagerConfigType is type of ControllerManagerConfig resource. diff --git a/pkg/machinery/resources/k8s/endpoint.go b/pkg/machinery/resources/k8s/endpoint.go index 5646973d5..c46c4419d 100644 --- a/pkg/machinery/resources/k8s/endpoint.go +++ b/pkg/machinery/resources/k8s/endpoint.go @@ -14,7 +14,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // EndpointType is type of Endpoint resource. diff --git a/pkg/machinery/resources/k8s/endpoint_test.go b/pkg/machinery/resources/k8s/endpoint_test.go index 6ac5645b7..930aebf77 100644 --- a/pkg/machinery/resources/k8s/endpoint_test.go +++ b/pkg/machinery/resources/k8s/endpoint_test.go @@ -10,7 +10,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) func TestEndpointList(t *testing.T) { diff --git a/pkg/machinery/resources/k8s/extramanifests_config.go b/pkg/machinery/resources/k8s/extramanifests_config.go index a201e7320..b019f46b0 100644 --- a/pkg/machinery/resources/k8s/extramanifests_config.go +++ b/pkg/machinery/resources/k8s/extramanifests_config.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // ExtraManifestsConfigType is type of ExtraManifestsConfig resource. diff --git a/pkg/machinery/resources/k8s/k8s_test.go b/pkg/machinery/resources/k8s/k8s_test.go index 937cd03e6..ec3e36f19 100644 --- a/pkg/machinery/resources/k8s/k8s_test.go +++ b/pkg/machinery/resources/k8s/k8s_test.go @@ -18,7 +18,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/resources/k8s" + "github.com/siderolabs/talos/pkg/machinery/resources/k8s" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/k8s/kubelet_config.go b/pkg/machinery/resources/k8s/kubelet_config.go index fe2c6fb8a..6eda622d0 100644 --- a/pkg/machinery/resources/k8s/kubelet_config.go +++ b/pkg/machinery/resources/k8s/kubelet_config.go @@ -11,7 +11,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/opencontainers/runtime-spec/specs-go" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // KubeletConfigType is type of KubeletConfig resource. diff --git a/pkg/machinery/resources/k8s/kubelet_lifecycle.go b/pkg/machinery/resources/k8s/kubelet_lifecycle.go index ce6c27253..b4cf95d2f 100644 --- a/pkg/machinery/resources/k8s/kubelet_lifecycle.go +++ b/pkg/machinery/resources/k8s/kubelet_lifecycle.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // KubeletLifecycleType is type of KubeletLifecycle resource. diff --git a/pkg/machinery/resources/k8s/kubelet_spec.go b/pkg/machinery/resources/k8s/kubelet_spec.go index 0ac69ecd7..9ff569e8e 100644 --- a/pkg/machinery/resources/k8s/kubelet_spec.go +++ b/pkg/machinery/resources/k8s/kubelet_spec.go @@ -11,7 +11,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/opencontainers/runtime-spec/specs-go" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // KubeletSpecType is type of KubeletSpec resource. diff --git a/pkg/machinery/resources/k8s/manifest.go b/pkg/machinery/resources/k8s/manifest.go index 2bd18b936..970b4713e 100644 --- a/pkg/machinery/resources/k8s/manifest.go +++ b/pkg/machinery/resources/k8s/manifest.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // ManifestType is type of Manifest resource. diff --git a/pkg/machinery/resources/k8s/manifest_status.go b/pkg/machinery/resources/k8s/manifest_status.go index 511eb3219..5447d1412 100644 --- a/pkg/machinery/resources/k8s/manifest_status.go +++ b/pkg/machinery/resources/k8s/manifest_status.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // ManifestStatusType is type of ManifestStatus resource. diff --git a/pkg/machinery/resources/k8s/manifests_config.go b/pkg/machinery/resources/k8s/manifests_config.go index e9b3ccfcd..68b10ddd4 100644 --- a/pkg/machinery/resources/k8s/manifests_config.go +++ b/pkg/machinery/resources/k8s/manifests_config.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // BootstrapManifestsConfigType is type of BootstrapManifestsConfig resource. diff --git a/pkg/machinery/resources/k8s/nodeip.go b/pkg/machinery/resources/k8s/nodeip.go index 6a0f32101..7926a0658 100644 --- a/pkg/machinery/resources/k8s/nodeip.go +++ b/pkg/machinery/resources/k8s/nodeip.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // NodeIPType is type of NodeIP resource. diff --git a/pkg/machinery/resources/k8s/nodeip_config.go b/pkg/machinery/resources/k8s/nodeip_config.go index a5ded96d1..3ab07d424 100644 --- a/pkg/machinery/resources/k8s/nodeip_config.go +++ b/pkg/machinery/resources/k8s/nodeip_config.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // NodeIPConfigType is type of NodeIPConfig resource. diff --git a/pkg/machinery/resources/k8s/nodename.go b/pkg/machinery/resources/k8s/nodename.go index 8ee38a34a..e12460e23 100644 --- a/pkg/machinery/resources/k8s/nodename.go +++ b/pkg/machinery/resources/k8s/nodename.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // NodenameType is type of Nodename resource. diff --git a/pkg/machinery/resources/k8s/scheduler_config.go b/pkg/machinery/resources/k8s/scheduler_config.go index 1e75cabca..ff6e01431 100644 --- a/pkg/machinery/resources/k8s/scheduler_config.go +++ b/pkg/machinery/resources/k8s/scheduler_config.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // SchedulerConfigType is type of SchedulerConfig resource. diff --git a/pkg/machinery/resources/k8s/secrets_status.go b/pkg/machinery/resources/k8s/secrets_status.go index 69380926a..4186fcad1 100644 --- a/pkg/machinery/resources/k8s/secrets_status.go +++ b/pkg/machinery/resources/k8s/secrets_status.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // SecretsStatusType is type of SecretsStatus resource. diff --git a/pkg/machinery/resources/k8s/static_pod.go b/pkg/machinery/resources/k8s/static_pod.go index 86d32d98b..f72d73f74 100644 --- a/pkg/machinery/resources/k8s/static_pod.go +++ b/pkg/machinery/resources/k8s/static_pod.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // StaticPodType is type of StaticPod resource. diff --git a/pkg/machinery/resources/k8s/static_pod_server_status.go b/pkg/machinery/resources/k8s/static_pod_server_status.go index 8c698c6c5..bf3140a79 100644 --- a/pkg/machinery/resources/k8s/static_pod_server_status.go +++ b/pkg/machinery/resources/k8s/static_pod_server_status.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // StaticPodServerStatusType is type of StaticPodServerStatus resource. diff --git a/pkg/machinery/resources/k8s/static_pod_status.go b/pkg/machinery/resources/k8s/static_pod_status.go index 01cb06d52..fa0fe89ab 100644 --- a/pkg/machinery/resources/k8s/static_pod_status.go +++ b/pkg/machinery/resources/k8s/static_pod_status.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // StaticPodStatusType is type of StaticPodStatus resource. diff --git a/pkg/machinery/resources/kubeaccess/config.go b/pkg/machinery/resources/kubeaccess/config.go index ac7751eff..21b29dfdd 100644 --- a/pkg/machinery/resources/kubeaccess/config.go +++ b/pkg/machinery/resources/kubeaccess/config.go @@ -10,8 +10,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) // ConfigType is type of Config resource. diff --git a/pkg/machinery/resources/kubeaccess/kubeaccess_test.go b/pkg/machinery/resources/kubeaccess/kubeaccess_test.go index 99f9922b6..386160c8a 100644 --- a/pkg/machinery/resources/kubeaccess/kubeaccess_test.go +++ b/pkg/machinery/resources/kubeaccess/kubeaccess_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/kubeaccess" + "github.com/siderolabs/talos/pkg/machinery/resources/kubeaccess" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/kubespan/config.go b/pkg/machinery/resources/kubespan/config.go index 108ab8384..215543738 100644 --- a/pkg/machinery/resources/kubespan/config.go +++ b/pkg/machinery/resources/kubespan/config.go @@ -10,8 +10,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" - "github.com/talos-systems/talos/pkg/machinery/resources/config" + "github.com/siderolabs/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/resources/config" ) //nolint:lll diff --git a/pkg/machinery/resources/kubespan/endpoint.go b/pkg/machinery/resources/kubespan/endpoint.go index 417dd2015..512014109 100644 --- a/pkg/machinery/resources/kubespan/endpoint.go +++ b/pkg/machinery/resources/kubespan/endpoint.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // EndpointType is type of Endpoint resource. diff --git a/pkg/machinery/resources/kubespan/identity.go b/pkg/machinery/resources/kubespan/identity.go index 9e4a55be6..2dbeeccab 100644 --- a/pkg/machinery/resources/kubespan/identity.go +++ b/pkg/machinery/resources/kubespan/identity.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // IdentityType is type of Identity resource. diff --git a/pkg/machinery/resources/kubespan/kubespan_test.go b/pkg/machinery/resources/kubespan/kubespan_test.go index bc358e0d8..ce2e040e3 100644 --- a/pkg/machinery/resources/kubespan/kubespan_test.go +++ b/pkg/machinery/resources/kubespan/kubespan_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/kubespan" + "github.com/siderolabs/talos/pkg/machinery/resources/kubespan" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/kubespan/peer_spec.go b/pkg/machinery/resources/kubespan/peer_spec.go index 04d57ad93..ed2a80810 100644 --- a/pkg/machinery/resources/kubespan/peer_spec.go +++ b/pkg/machinery/resources/kubespan/peer_spec.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // PeerSpecType is type of PeerSpec resource. diff --git a/pkg/machinery/resources/kubespan/peer_status.go b/pkg/machinery/resources/kubespan/peer_status.go index 0cc4baf45..c39c521c3 100644 --- a/pkg/machinery/resources/kubespan/peer_status.go +++ b/pkg/machinery/resources/kubespan/peer_status.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // PeerStatusType is type of PeerStatus resource. diff --git a/pkg/machinery/resources/network/address_spec.go b/pkg/machinery/resources/network/address_spec.go index 8c9f80578..19e6f1a0a 100644 --- a/pkg/machinery/resources/network/address_spec.go +++ b/pkg/machinery/resources/network/address_spec.go @@ -12,8 +12,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/proto" ) //nolint:lll diff --git a/pkg/machinery/resources/network/address_spec_test.go b/pkg/machinery/resources/network/address_spec_test.go index c79892bcb..c9f94dece 100644 --- a/pkg/machinery/resources/network/address_spec_test.go +++ b/pkg/machinery/resources/network/address_spec_test.go @@ -12,8 +12,8 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestAddressSpecMarshalYAML(t *testing.T) { diff --git a/pkg/machinery/resources/network/address_status.go b/pkg/machinery/resources/network/address_status.go index b44fe79e4..43af27b79 100644 --- a/pkg/machinery/resources/network/address_status.go +++ b/pkg/machinery/resources/network/address_status.go @@ -12,8 +12,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // AddressStatusType is type of AddressStatus resource. diff --git a/pkg/machinery/resources/network/condition.go b/pkg/machinery/resources/network/condition.go index 61903a621..e12c5169a 100644 --- a/pkg/machinery/resources/network/condition.go +++ b/pkg/machinery/resources/network/condition.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "github.com/cosi-project/runtime/pkg/state" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" ) // ReadyCondition implements condition which waits for the network to be ready. diff --git a/pkg/machinery/resources/network/condition_test.go b/pkg/machinery/resources/network/condition_test.go index 9e4b7f499..ec505216f 100644 --- a/pkg/machinery/resources/network/condition_test.go +++ b/pkg/machinery/resources/network/condition_test.go @@ -16,7 +16,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestCondition(t *testing.T) { diff --git a/pkg/machinery/resources/network/device_config_spec.go b/pkg/machinery/resources/network/device_config_spec.go index f37ce72b3..1ffcc4906 100644 --- a/pkg/machinery/resources/network/device_config_spec.go +++ b/pkg/machinery/resources/network/device_config_spec.go @@ -11,10 +11,10 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "gopkg.in/yaml.v3" - networkpb "github.com/talos-systems/talos/pkg/machinery/api/resource/network" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/proto" + networkpb "github.com/siderolabs/talos/pkg/machinery/api/resource/network" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // DeviceConfigSpecType is type of DeviceConfigSpec resource. diff --git a/pkg/machinery/resources/network/device_config_spec_test.go b/pkg/machinery/resources/network/device_config_spec_test.go index 5e7926b86..96af13fba 100644 --- a/pkg/machinery/resources/network/device_config_spec_test.go +++ b/pkg/machinery/resources/network/device_config_spec_test.go @@ -11,8 +11,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestDeviceConfigProtobufMarshal(t *testing.T) { diff --git a/pkg/machinery/resources/network/hardrware_addr.go b/pkg/machinery/resources/network/hardrware_addr.go index 7e231f411..3947dd753 100644 --- a/pkg/machinery/resources/network/hardrware_addr.go +++ b/pkg/machinery/resources/network/hardrware_addr.go @@ -10,8 +10,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // HardwareAddrType is type of HardwareAddr resource. diff --git a/pkg/machinery/resources/network/hostname_spec.go b/pkg/machinery/resources/network/hostname_spec.go index 28e015b1b..16c6a8499 100644 --- a/pkg/machinery/resources/network/hostname_spec.go +++ b/pkg/machinery/resources/network/hostname_spec.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // HostnameSpecType is type of HostnameSpec resource. diff --git a/pkg/machinery/resources/network/hostname_spec_test.go b/pkg/machinery/resources/network/hostname_spec_test.go index d446236e5..ac7be8877 100644 --- a/pkg/machinery/resources/network/hostname_spec_test.go +++ b/pkg/machinery/resources/network/hostname_spec_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestHostnameSpecMarshalYAML(t *testing.T) { diff --git a/pkg/machinery/resources/network/hostname_status.go b/pkg/machinery/resources/network/hostname_status.go index 29f4350c9..34950f7d9 100644 --- a/pkg/machinery/resources/network/hostname_status.go +++ b/pkg/machinery/resources/network/hostname_status.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // HostnameStatusType is type of HostnameStatus resource. diff --git a/pkg/machinery/resources/network/link.go b/pkg/machinery/resources/network/link.go index 34fd5b2e0..f228d32b5 100644 --- a/pkg/machinery/resources/network/link.go +++ b/pkg/machinery/resources/network/link.go @@ -9,7 +9,7 @@ import ( "sort" "time" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" ) // VLANSpec describes VLAN settings if Kind == "vlan". diff --git a/pkg/machinery/resources/network/link_refresh.go b/pkg/machinery/resources/network/link_refresh.go index 7e6f299bb..e88597712 100644 --- a/pkg/machinery/resources/network/link_refresh.go +++ b/pkg/machinery/resources/network/link_refresh.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // LinkRefreshType is type of LinkRefresh resource. diff --git a/pkg/machinery/resources/network/link_spec.go b/pkg/machinery/resources/network/link_spec.go index fba75088b..a8a515a4b 100644 --- a/pkg/machinery/resources/network/link_spec.go +++ b/pkg/machinery/resources/network/link_spec.go @@ -10,8 +10,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // LinkSpecType is type of LinkSpec resource. diff --git a/pkg/machinery/resources/network/link_spec_test.go b/pkg/machinery/resources/network/link_spec_test.go index 1197dc57c..cf8eea0b7 100644 --- a/pkg/machinery/resources/network/link_spec_test.go +++ b/pkg/machinery/resources/network/link_spec_test.go @@ -13,8 +13,8 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestLinkSpecMarshalYAML(t *testing.T) { diff --git a/pkg/machinery/resources/network/link_status.go b/pkg/machinery/resources/network/link_status.go index 440d3c242..0bcfd1dd3 100644 --- a/pkg/machinery/resources/network/link_status.go +++ b/pkg/machinery/resources/network/link_status.go @@ -10,8 +10,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // LinkStatusType is type of LinkStatus resource. diff --git a/pkg/machinery/resources/network/link_status_test.go b/pkg/machinery/resources/network/link_status_test.go index f9c24aa00..77dd79d45 100644 --- a/pkg/machinery/resources/network/link_status_test.go +++ b/pkg/machinery/resources/network/link_status_test.go @@ -15,8 +15,8 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestLinkStatusMarshalYAML(t *testing.T) { diff --git a/pkg/machinery/resources/network/link_test.go b/pkg/machinery/resources/network/link_test.go index fa6d1170f..955d66e11 100644 --- a/pkg/machinery/resources/network/link_test.go +++ b/pkg/machinery/resources/network/link_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestWireguardPeer(t *testing.T) { diff --git a/pkg/machinery/resources/network/network.go b/pkg/machinery/resources/network/network.go index 0712bb7bc..51a32d9bf 100644 --- a/pkg/machinery/resources/network/network.go +++ b/pkg/machinery/resources/network/network.go @@ -11,7 +11,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" ) // NamespaceName contains resources related to networking. diff --git a/pkg/machinery/resources/network/network_test.go b/pkg/machinery/resources/network/network_test.go index 9898f3390..34c386a33 100644 --- a/pkg/machinery/resources/network/network_test.go +++ b/pkg/machinery/resources/network/network_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/network/node_address.go b/pkg/machinery/resources/network/node_address.go index 1a20fed81..54ecbae9d 100644 --- a/pkg/machinery/resources/network/node_address.go +++ b/pkg/machinery/resources/network/node_address.go @@ -14,7 +14,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // NodeAddressType is type of NodeAddress resource. diff --git a/pkg/machinery/resources/network/node_address_filter.go b/pkg/machinery/resources/network/node_address_filter.go index 8a9a919b1..e12305833 100644 --- a/pkg/machinery/resources/network/node_address_filter.go +++ b/pkg/machinery/resources/network/node_address_filter.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // NodeAddressFilterType is type of NodeAddressFilter resource. diff --git a/pkg/machinery/resources/network/operator_spec.go b/pkg/machinery/resources/network/operator_spec.go index 443b0cd58..5d61192b5 100644 --- a/pkg/machinery/resources/network/operator_spec.go +++ b/pkg/machinery/resources/network/operator_spec.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // OperatorSpecType is type of OperatorSpec resource. diff --git a/pkg/machinery/resources/network/operator_spec_test.go b/pkg/machinery/resources/network/operator_spec_test.go index 62c09455a..fcfadd5d3 100644 --- a/pkg/machinery/resources/network/operator_spec_test.go +++ b/pkg/machinery/resources/network/operator_spec_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestOperatorSpecMarshalYAML(t *testing.T) { diff --git a/pkg/machinery/resources/network/resolver_spec.go b/pkg/machinery/resources/network/resolver_spec.go index b47bbcba4..d5190ae6c 100644 --- a/pkg/machinery/resources/network/resolver_spec.go +++ b/pkg/machinery/resources/network/resolver_spec.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // ResolverSpecType is type of ResolverSpec resource. diff --git a/pkg/machinery/resources/network/resolver_spec_test.go b/pkg/machinery/resources/network/resolver_spec_test.go index 1c12b8ddb..108a47f6a 100644 --- a/pkg/machinery/resources/network/resolver_spec_test.go +++ b/pkg/machinery/resources/network/resolver_spec_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestResolverSpecMarshalYAML(t *testing.T) { diff --git a/pkg/machinery/resources/network/resolver_status.go b/pkg/machinery/resources/network/resolver_status.go index d19361e05..cb8ef4471 100644 --- a/pkg/machinery/resources/network/resolver_status.go +++ b/pkg/machinery/resources/network/resolver_status.go @@ -12,7 +12,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // ResolverStatusType is type of ResolverStatus resource. diff --git a/pkg/machinery/resources/network/route_spec.go b/pkg/machinery/resources/network/route_spec.go index 97d62cae0..ba23dbcd0 100644 --- a/pkg/machinery/resources/network/route_spec.go +++ b/pkg/machinery/resources/network/route_spec.go @@ -13,8 +13,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/gen/value" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // RouteSpecType is type of RouteSpec resource. diff --git a/pkg/machinery/resources/network/route_spec_test.go b/pkg/machinery/resources/network/route_spec_test.go index 5aa1d8b66..830721cd8 100644 --- a/pkg/machinery/resources/network/route_spec_test.go +++ b/pkg/machinery/resources/network/route_spec_test.go @@ -12,8 +12,8 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestRoutSpecMarshalYAML(t *testing.T) { diff --git a/pkg/machinery/resources/network/route_status.go b/pkg/machinery/resources/network/route_status.go index 6e7f5cb07..f2849ba51 100644 --- a/pkg/machinery/resources/network/route_status.go +++ b/pkg/machinery/resources/network/route_status.go @@ -12,8 +12,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // RouteStatusType is type of RouteStatus resource. diff --git a/pkg/machinery/resources/network/status.go b/pkg/machinery/resources/network/status.go index d6a974223..e1aeea935 100644 --- a/pkg/machinery/resources/network/status.go +++ b/pkg/machinery/resources/network/status.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // StatusType is type of Status resource. diff --git a/pkg/machinery/resources/network/timeserver_spec.go b/pkg/machinery/resources/network/timeserver_spec.go index 47b174fc9..9f634e1a4 100644 --- a/pkg/machinery/resources/network/timeserver_spec.go +++ b/pkg/machinery/resources/network/timeserver_spec.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // TimeServerSpecType is type of TimeServerSpec resource. diff --git a/pkg/machinery/resources/network/timeserver_spec_test.go b/pkg/machinery/resources/network/timeserver_spec_test.go index f2a27f067..e6d89f2f7 100644 --- a/pkg/machinery/resources/network/timeserver_spec_test.go +++ b/pkg/machinery/resources/network/timeserver_spec_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestTimeServerSpecMarshalYAML(t *testing.T) { diff --git a/pkg/machinery/resources/network/timeserver_status.go b/pkg/machinery/resources/network/timeserver_status.go index 77845fccb..c8c509447 100644 --- a/pkg/machinery/resources/network/timeserver_status.go +++ b/pkg/machinery/resources/network/timeserver_status.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // TimeServerStatusType is type of TimeServerStatus resource. diff --git a/pkg/machinery/resources/network/ula_test.go b/pkg/machinery/resources/network/ula_test.go index 28950235a..cdb1336d0 100644 --- a/pkg/machinery/resources/network/ula_test.go +++ b/pkg/machinery/resources/network/ula_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/network" + "github.com/siderolabs/talos/pkg/machinery/resources/network" ) func TestULAPrefix(t *testing.T) { diff --git a/pkg/machinery/resources/perf/cpu.go b/pkg/machinery/resources/perf/cpu.go index 74ee7ec94..c23020bb0 100644 --- a/pkg/machinery/resources/perf/cpu.go +++ b/pkg/machinery/resources/perf/cpu.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) //nolint:lll diff --git a/pkg/machinery/resources/perf/mem.go b/pkg/machinery/resources/perf/mem.go index b0d9d338e..c2688166c 100644 --- a/pkg/machinery/resources/perf/mem.go +++ b/pkg/machinery/resources/perf/mem.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // MemoryType is type of Etcd resource. diff --git a/pkg/machinery/resources/perf/perf_test.go b/pkg/machinery/resources/perf/perf_test.go index e3ba4dfe5..e755de8b5 100644 --- a/pkg/machinery/resources/perf/perf_test.go +++ b/pkg/machinery/resources/perf/perf_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/perf" + "github.com/siderolabs/talos/pkg/machinery/resources/perf" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/runtime/condition.go b/pkg/machinery/resources/runtime/condition.go index b828eb23c..6178f51c4 100644 --- a/pkg/machinery/resources/runtime/condition.go +++ b/pkg/machinery/resources/runtime/condition.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "github.com/cosi-project/runtime/pkg/state" - "github.com/talos-systems/talos/pkg/machinery/kernel" + "github.com/siderolabs/talos/pkg/machinery/kernel" ) // KernelParamsSetCondition implements condition which waits for the kernels to be in sync. diff --git a/pkg/machinery/resources/runtime/condition_test.go b/pkg/machinery/resources/runtime/condition_test.go index 2c9a6ce5f..c1753873d 100644 --- a/pkg/machinery/resources/runtime/condition_test.go +++ b/pkg/machinery/resources/runtime/condition_test.go @@ -16,8 +16,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/kernel" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/kernel" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) func TestCondition(t *testing.T) { diff --git a/pkg/machinery/resources/runtime/extension_status.go b/pkg/machinery/resources/runtime/extension_status.go index 5a50027fc..b0b9eb1c6 100644 --- a/pkg/machinery/resources/runtime/extension_status.go +++ b/pkg/machinery/resources/runtime/extension_status.go @@ -10,8 +10,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/extensions" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/extensions" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // ExtensionStatusType is type of Extension resource. diff --git a/pkg/machinery/resources/runtime/kernel_module_spec.go b/pkg/machinery/resources/runtime/kernel_module_spec.go index c0abd72f2..02b276119 100644 --- a/pkg/machinery/resources/runtime/kernel_module_spec.go +++ b/pkg/machinery/resources/runtime/kernel_module_spec.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // KernelModuleSpecType is type of KernelModuleSpec resource. diff --git a/pkg/machinery/resources/runtime/kernel_params_spec.go b/pkg/machinery/resources/runtime/kernel_params_spec.go index 2f78b83b1..1a869caa5 100644 --- a/pkg/machinery/resources/runtime/kernel_params_spec.go +++ b/pkg/machinery/resources/runtime/kernel_params_spec.go @@ -10,8 +10,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // NamespaceName contains configuration resources. diff --git a/pkg/machinery/resources/runtime/kernel_params_status.go b/pkg/machinery/resources/runtime/kernel_params_status.go index edbbeafc4..e1ca667d1 100644 --- a/pkg/machinery/resources/runtime/kernel_params_status.go +++ b/pkg/machinery/resources/runtime/kernel_params_status.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // KernelParamStatusType is type of KernelParam resource. diff --git a/pkg/machinery/resources/runtime/machine_status.go b/pkg/machinery/resources/runtime/machine_status.go index 46aaa91b5..687a13bec 100644 --- a/pkg/machinery/resources/runtime/machine_status.go +++ b/pkg/machinery/resources/runtime/machine_status.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // MachineStatusType is type of MachineStatus resource. diff --git a/pkg/machinery/resources/runtime/machinestage_test.go b/pkg/machinery/resources/runtime/machinestage_test.go index 38ef08f22..11a50c786 100644 --- a/pkg/machinery/resources/runtime/machinestage_test.go +++ b/pkg/machinery/resources/runtime/machinestage_test.go @@ -9,8 +9,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) func TestMachineStageMatchesProto(t *testing.T) { diff --git a/pkg/machinery/resources/runtime/mount_status.go b/pkg/machinery/resources/runtime/mount_status.go index 7603aa77f..31c51d84a 100644 --- a/pkg/machinery/resources/runtime/mount_status.go +++ b/pkg/machinery/resources/runtime/mount_status.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // MountStatusType is type of Mount resource. diff --git a/pkg/machinery/resources/runtime/platform_metadata.go b/pkg/machinery/resources/runtime/platform_metadata.go index 7d3ee1c4c..1f827951b 100644 --- a/pkg/machinery/resources/runtime/platform_metadata.go +++ b/pkg/machinery/resources/runtime/platform_metadata.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // PlatformMetadataType is type of Metadata resource. diff --git a/pkg/machinery/resources/runtime/runtime_test.go b/pkg/machinery/resources/runtime/runtime_test.go index 0aa1984a6..ebdaa5fb1 100644 --- a/pkg/machinery/resources/runtime/runtime_test.go +++ b/pkg/machinery/resources/runtime/runtime_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/runtime" + "github.com/siderolabs/talos/pkg/machinery/resources/runtime" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/secrets/api.go b/pkg/machinery/resources/secrets/api.go index 95336a649..f73baf4a3 100644 --- a/pkg/machinery/resources/secrets/api.go +++ b/pkg/machinery/resources/secrets/api.go @@ -11,7 +11,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/crypto/x509" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // APIType is type of API resource. diff --git a/pkg/machinery/resources/secrets/api_test.go b/pkg/machinery/resources/secrets/api_test.go index 693d274c3..40a27373b 100644 --- a/pkg/machinery/resources/secrets/api_test.go +++ b/pkg/machinery/resources/secrets/api_test.go @@ -12,7 +12,7 @@ import ( "github.com/siderolabs/crypto/x509" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) func TestAPIProtobufMarshal(t *testing.T) { diff --git a/pkg/machinery/resources/secrets/cert_sans.go b/pkg/machinery/resources/secrets/cert_sans.go index d5accaeb4..db464adce 100644 --- a/pkg/machinery/resources/secrets/cert_sans.go +++ b/pkg/machinery/resources/secrets/cert_sans.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // CertSANType is type of CertSAN resource. diff --git a/pkg/machinery/resources/secrets/etcd.go b/pkg/machinery/resources/secrets/etcd.go index 50f09eec0..16dfe144d 100644 --- a/pkg/machinery/resources/secrets/etcd.go +++ b/pkg/machinery/resources/secrets/etcd.go @@ -11,7 +11,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/crypto/x509" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // EtcdType is type of Etcd resource. diff --git a/pkg/machinery/resources/secrets/etcd_root.go b/pkg/machinery/resources/secrets/etcd_root.go index 1d6cd0dc0..a30bc963e 100644 --- a/pkg/machinery/resources/secrets/etcd_root.go +++ b/pkg/machinery/resources/secrets/etcd_root.go @@ -11,7 +11,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/crypto/x509" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // EtcdRootType is type of EtcdRoot secret resource. diff --git a/pkg/machinery/resources/secrets/kubelet.go b/pkg/machinery/resources/secrets/kubelet.go index e516d3911..262581682 100644 --- a/pkg/machinery/resources/secrets/kubelet.go +++ b/pkg/machinery/resources/secrets/kubelet.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/crypto/x509" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // KubeletType is type of Kubelet secret resource. diff --git a/pkg/machinery/resources/secrets/kubernetes.go b/pkg/machinery/resources/secrets/kubernetes.go index 802ce1124..81865afec 100644 --- a/pkg/machinery/resources/secrets/kubernetes.go +++ b/pkg/machinery/resources/secrets/kubernetes.go @@ -11,7 +11,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/crypto/x509" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // KubernetesType is type of Kubernetes resource. diff --git a/pkg/machinery/resources/secrets/kubernetes_root.go b/pkg/machinery/resources/secrets/kubernetes_root.go index 27bea8c3c..3dc7e5afa 100644 --- a/pkg/machinery/resources/secrets/kubernetes_root.go +++ b/pkg/machinery/resources/secrets/kubernetes_root.go @@ -14,7 +14,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/crypto/x509" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // KubernetesRootType is type of KubernetesRoot secret resource. diff --git a/pkg/machinery/resources/secrets/os_root.go b/pkg/machinery/resources/secrets/os_root.go index 23976a4bf..3fc4c12cc 100644 --- a/pkg/machinery/resources/secrets/os_root.go +++ b/pkg/machinery/resources/secrets/os_root.go @@ -13,7 +13,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/crypto/x509" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // OSRootType is type of OSRoot secret resource. diff --git a/pkg/machinery/resources/secrets/secrets_test.go b/pkg/machinery/resources/secrets/secrets_test.go index dfc284566..55153c70f 100644 --- a/pkg/machinery/resources/secrets/secrets_test.go +++ b/pkg/machinery/resources/secrets/secrets_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/secrets/trustd.go b/pkg/machinery/resources/secrets/trustd.go index f0d96fa78..c9c682b12 100644 --- a/pkg/machinery/resources/secrets/trustd.go +++ b/pkg/machinery/resources/secrets/trustd.go @@ -11,7 +11,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/typed" "github.com/siderolabs/crypto/x509" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) // TrustdType is type of Trustd resource. diff --git a/pkg/machinery/resources/secrets/trustd_test.go b/pkg/machinery/resources/secrets/trustd_test.go index 39784598c..2b0c0a795 100644 --- a/pkg/machinery/resources/secrets/trustd_test.go +++ b/pkg/machinery/resources/secrets/trustd_test.go @@ -12,7 +12,7 @@ import ( "github.com/siderolabs/crypto/x509" "github.com/stretchr/testify/require" - "github.com/talos-systems/talos/pkg/machinery/resources/secrets" + "github.com/siderolabs/talos/pkg/machinery/resources/secrets" ) func TestTrustdProtobufMarshal(t *testing.T) { diff --git a/pkg/machinery/resources/time/condition.go b/pkg/machinery/resources/time/condition.go index 49cc18920..a618a5c54 100644 --- a/pkg/machinery/resources/time/condition.go +++ b/pkg/machinery/resources/time/condition.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource" "github.com/cosi-project/runtime/pkg/state" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) // SyncCondition implements condition which waits for the time to be in sync. diff --git a/pkg/machinery/resources/time/status.go b/pkg/machinery/resources/time/status.go index 5970eb257..ebb10990a 100644 --- a/pkg/machinery/resources/time/status.go +++ b/pkg/machinery/resources/time/status.go @@ -10,8 +10,8 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) //nolint:lll diff --git a/pkg/machinery/resources/time/time_test.go b/pkg/machinery/resources/time/time_test.go index e522125c3..8619d7f1a 100644 --- a/pkg/machinery/resources/time/time_test.go +++ b/pkg/machinery/resources/time/time_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/time" + "github.com/siderolabs/talos/pkg/machinery/resources/time" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/resources/v1alpha1/service.go b/pkg/machinery/resources/v1alpha1/service.go index 46aecb715..c01b2fdaa 100644 --- a/pkg/machinery/resources/v1alpha1/service.go +++ b/pkg/machinery/resources/v1alpha1/service.go @@ -10,7 +10,7 @@ import ( "github.com/cosi-project/runtime/pkg/resource/protobuf" "github.com/cosi-project/runtime/pkg/resource/typed" - "github.com/talos-systems/talos/pkg/machinery/proto" + "github.com/siderolabs/talos/pkg/machinery/proto" ) //nolint:lll diff --git a/pkg/machinery/resources/v1alpha1/v1alpha1_test.go b/pkg/machinery/resources/v1alpha1/v1alpha1_test.go index 9de5d5760..7e09e74f8 100644 --- a/pkg/machinery/resources/v1alpha1/v1alpha1_test.go +++ b/pkg/machinery/resources/v1alpha1/v1alpha1_test.go @@ -15,7 +15,7 @@ import ( "github.com/cosi-project/runtime/pkg/state/registry" "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/resources/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/resources/v1alpha1" ) func TestRegisterResource(t *testing.T) { diff --git a/pkg/machinery/role/role_test.go b/pkg/machinery/role/role_test.go index a2f571e39..e4c06ee25 100644 --- a/pkg/machinery/role/role_test.go +++ b/pkg/machinery/role/role_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/machinery/role" + "github.com/siderolabs/talos/pkg/machinery/role" ) func TestSet(t *testing.T) { diff --git a/pkg/provision/access/adapter.go b/pkg/provision/access/adapter.go index 39ee5e7ad..e1e5ea565 100644 --- a/pkg/provision/access/adapter.go +++ b/pkg/provision/access/adapter.go @@ -5,9 +5,9 @@ package access import ( - "github.com/talos-systems/talos/pkg/cluster" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/cluster" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/provision" ) // Adapter provides cluster access via provision.Cluster. diff --git a/pkg/provision/internal/inmemhttp/inmemhttp_test.go b/pkg/provision/internal/inmemhttp/inmemhttp_test.go index 52ce61077..a245f76bf 100644 --- a/pkg/provision/internal/inmemhttp/inmemhttp_test.go +++ b/pkg/provision/internal/inmemhttp/inmemhttp_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/talos-systems/talos/pkg/provision/internal/inmemhttp" + "github.com/siderolabs/talos/pkg/provision/internal/inmemhttp" ) func TestServer(t *testing.T) { diff --git a/pkg/provision/options.go b/pkg/provision/options.go index 44d7d8ab5..f3ad28110 100644 --- a/pkg/provision/options.go +++ b/pkg/provision/options.go @@ -9,8 +9,8 @@ import ( "os" "runtime" - "github.com/talos-systems/talos/pkg/machinery/client" - clientconfig "github.com/talos-systems/talos/pkg/machinery/client/config" + "github.com/siderolabs/talos/pkg/machinery/client" + clientconfig "github.com/siderolabs/talos/pkg/machinery/client/config" ) // Option controls Provisioner. diff --git a/pkg/provision/providers/docker/crashdump.go b/pkg/provision/providers/docker/crashdump.go index b4474db57..dae537542 100644 --- a/pkg/provision/providers/docker/crashdump.go +++ b/pkg/provision/providers/docker/crashdump.go @@ -12,7 +12,7 @@ import ( "github.com/docker/docker/api/types" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) // CrashDump produces debug information to help with debugging failures. diff --git a/pkg/provision/providers/docker/create.go b/pkg/provision/providers/docker/create.go index 11530c508..80934cfb7 100644 --- a/pkg/provision/providers/docker/create.go +++ b/pkg/provision/providers/docker/create.go @@ -8,7 +8,7 @@ import ( "context" "fmt" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) // Create Talos cluster as a set of docker containers on docker network. diff --git a/pkg/provision/providers/docker/destroy.go b/pkg/provision/providers/docker/destroy.go index 36da4b019..f92d70322 100644 --- a/pkg/provision/providers/docker/destroy.go +++ b/pkg/provision/providers/docker/destroy.go @@ -8,7 +8,7 @@ import ( "context" "fmt" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) // Destroy Talos cluster as set of Docker nodes. diff --git a/pkg/provision/providers/docker/docker.go b/pkg/provision/providers/docker/docker.go index 3d08fdf5f..31cbb82c0 100644 --- a/pkg/provision/providers/docker/docker.go +++ b/pkg/provision/providers/docker/docker.go @@ -13,9 +13,9 @@ import ( "github.com/docker/docker/client" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/provision" ) type provisioner struct { diff --git a/pkg/provision/providers/docker/image.go b/pkg/provision/providers/docker/image.go index 90bc30335..dc9637eef 100644 --- a/pkg/provision/providers/docker/image.go +++ b/pkg/provision/providers/docker/image.go @@ -13,7 +13,7 @@ import ( "github.com/docker/docker/api/types" "github.com/docker/docker/api/types/filters" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) func (p *provisioner) ensureImageExists(ctx context.Context, image string, options *provision.Options) error { diff --git a/pkg/provision/providers/docker/network.go b/pkg/provision/providers/docker/network.go index 4db87bd24..7f9599a3c 100644 --- a/pkg/provision/providers/docker/network.go +++ b/pkg/provision/providers/docker/network.go @@ -14,7 +14,7 @@ import ( "github.com/docker/docker/api/types/network" "github.com/hashicorp/go-multierror" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) // createNetwork will take a network request and check if a network with the same name + cidr exists. diff --git a/pkg/provision/providers/docker/node.go b/pkg/provision/providers/docker/node.go index f277bfae7..df54c49be 100644 --- a/pkg/provision/providers/docker/node.go +++ b/pkg/provision/providers/docker/node.go @@ -20,9 +20,9 @@ import ( "github.com/docker/go-connections/nat" "github.com/hashicorp/go-multierror" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/provision" ) type portMap struct { diff --git a/pkg/provision/providers/docker/reflect.go b/pkg/provision/providers/docker/reflect.go index 66c478294..ad182ce68 100644 --- a/pkg/provision/providers/docker/reflect.go +++ b/pkg/provision/providers/docker/reflect.go @@ -10,8 +10,8 @@ import ( "strconv" "strings" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/provision" ) func (p *provisioner) Reflect(ctx context.Context, clusterName, stateDirectory string) (provision.Cluster, error) { diff --git a/pkg/provision/providers/docker/result.go b/pkg/provision/providers/docker/result.go index da53221c4..3f44709e8 100644 --- a/pkg/provision/providers/docker/result.go +++ b/pkg/provision/providers/docker/result.go @@ -7,7 +7,7 @@ package docker import ( "fmt" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) type result struct { diff --git a/pkg/provision/providers/factory.go b/pkg/provision/providers/factory.go index 39b48bf42..308d15c17 100644 --- a/pkg/provision/providers/factory.go +++ b/pkg/provision/providers/factory.go @@ -8,8 +8,8 @@ import ( "context" "fmt" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/providers/docker" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/providers/docker" ) // Factory instantiates provision provider by name. diff --git a/pkg/provision/providers/qemu/controller.go b/pkg/provision/providers/qemu/controller.go index 53c5f5cd0..19980c7c6 100644 --- a/pkg/provision/providers/qemu/controller.go +++ b/pkg/provision/providers/qemu/controller.go @@ -7,7 +7,7 @@ package qemu import ( "sync" - "github.com/talos-systems/talos/pkg/provision/providers/vm" + "github.com/siderolabs/talos/pkg/provision/providers/vm" ) // PowerState is current VM power state. diff --git a/pkg/provision/providers/qemu/create.go b/pkg/provision/providers/qemu/create.go index 0e0147783..97d49c84e 100644 --- a/pkg/provision/providers/qemu/create.go +++ b/pkg/provision/providers/qemu/create.go @@ -9,8 +9,8 @@ import ( "fmt" "path/filepath" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/providers/vm" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/providers/vm" ) // Create Talos cluster as a set of qemu VMs. diff --git a/pkg/provision/providers/qemu/destroy.go b/pkg/provision/providers/qemu/destroy.go index 07780c421..8e6b265cf 100644 --- a/pkg/provision/providers/qemu/destroy.go +++ b/pkg/provision/providers/qemu/destroy.go @@ -9,8 +9,8 @@ import ( "fmt" "os" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/providers/vm" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/providers/vm" ) // Destroy Talos cluster as set of qemu VMs. diff --git a/pkg/provision/providers/qemu/launch.go b/pkg/provision/providers/qemu/launch.go index 211c48adc..9462caa8d 100644 --- a/pkg/provision/providers/qemu/launch.go +++ b/pkg/provision/providers/qemu/launch.go @@ -24,9 +24,9 @@ import ( "github.com/siderolabs/go-blockdevice/blockdevice/partition/gpt" sideronet "github.com/siderolabs/net" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/internal/cniutils" - "github.com/talos-systems/talos/pkg/provision/providers/vm" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/internal/cniutils" + "github.com/siderolabs/talos/pkg/provision/providers/vm" ) // LaunchConfig is passed in to the Launch function over stdin. diff --git a/pkg/provision/providers/qemu/node.go b/pkg/provision/providers/qemu/node.go index 7b30b6047..c7d885633 100644 --- a/pkg/provision/providers/qemu/node.go +++ b/pkg/provision/providers/qemu/node.go @@ -21,10 +21,10 @@ import ( multierror "github.com/hashicorp/go-multierror" "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/machinery/kernel" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/providers/vm" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/machinery/kernel" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/providers/vm" ) //nolint:gocyclo,cyclop diff --git a/pkg/provision/providers/qemu/pflash.go b/pkg/provision/providers/qemu/pflash.go index 7a4ba3b44..1383fa9ee 100644 --- a/pkg/provision/providers/qemu/pflash.go +++ b/pkg/provision/providers/qemu/pflash.go @@ -9,7 +9,7 @@ import ( "io" "os" - "github.com/talos-systems/talos/pkg/provision/providers/vm" + "github.com/siderolabs/talos/pkg/provision/providers/vm" ) //nolint:gocyclo diff --git a/pkg/provision/providers/qemu/preflight.go b/pkg/provision/providers/qemu/preflight.go index 2577097cd..630730b38 100644 --- a/pkg/provision/providers/qemu/preflight.go +++ b/pkg/provision/providers/qemu/preflight.go @@ -15,8 +15,8 @@ import ( "github.com/coreos/go-iptables/iptables" "github.com/hashicorp/go-getter" - "github.com/talos-systems/talos/pkg/machinery/constants" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/machinery/constants" + "github.com/siderolabs/talos/pkg/provision" ) func (p *provisioner) preflightChecks(ctx context.Context, request provision.ClusterRequest, options provision.Options, arch Arch) error { diff --git a/pkg/provision/providers/qemu/qemu.go b/pkg/provision/providers/qemu/qemu.go index 4168ca4b7..1aaa8c9be 100644 --- a/pkg/provision/providers/qemu/qemu.go +++ b/pkg/provision/providers/qemu/qemu.go @@ -7,10 +7,10 @@ package qemu import ( "context" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/providers/vm" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/providers/vm" ) type provisioner struct { diff --git a/pkg/provision/providers/qemu_linux.go b/pkg/provision/providers/qemu_linux.go index ef06af0e5..3dd51ebf5 100644 --- a/pkg/provision/providers/qemu_linux.go +++ b/pkg/provision/providers/qemu_linux.go @@ -9,8 +9,8 @@ package providers import ( "context" - "github.com/talos-systems/talos/pkg/provision" - "github.com/talos-systems/talos/pkg/provision/providers/qemu" + "github.com/siderolabs/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision/providers/qemu" ) func newQemu(ctx context.Context) (provision.Provisioner, error) { diff --git a/pkg/provision/providers/qemu_other.go b/pkg/provision/providers/qemu_other.go index e0498b8af..5488dc5d8 100644 --- a/pkg/provision/providers/qemu_other.go +++ b/pkg/provision/providers/qemu_other.go @@ -10,7 +10,7 @@ import ( "context" "fmt" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) func newQemu(ctx context.Context) (provision.Provisioner, error) { diff --git a/pkg/provision/providers/vm/crashdump.go b/pkg/provision/providers/vm/crashdump.go index 2ad84c99b..688a75584 100644 --- a/pkg/provision/providers/vm/crashdump.go +++ b/pkg/provision/providers/vm/crashdump.go @@ -14,7 +14,7 @@ import ( "github.com/siderolabs/go-tail" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) // CrashDump produces debug information to help with debugging failures. diff --git a/pkg/provision/providers/vm/dhcpd.go b/pkg/provision/providers/vm/dhcpd.go index bd09698b3..fb34fd173 100644 --- a/pkg/provision/providers/vm/dhcpd.go +++ b/pkg/provision/providers/vm/dhcpd.go @@ -24,7 +24,7 @@ import ( "github.com/siderolabs/gen/slices" "golang.org/x/sync/errgroup" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) //nolint:gocyclo diff --git a/pkg/provision/providers/vm/disk.go b/pkg/provision/providers/vm/disk.go index ece8ed26b..620a5828e 100644 --- a/pkg/provision/providers/vm/disk.go +++ b/pkg/provision/providers/vm/disk.go @@ -8,7 +8,7 @@ import ( "fmt" "os" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) // UserDiskName returns disk device path. diff --git a/pkg/provision/providers/vm/launch.go b/pkg/provision/providers/vm/launch.go index ef6e6d0b4..1757edbfa 100644 --- a/pkg/provision/providers/vm/launch.go +++ b/pkg/provision/providers/vm/launch.go @@ -14,8 +14,8 @@ import ( "os/signal" "syscall" - "github.com/talos-systems/talos/pkg/machinery/nethelpers" - "github.com/talos-systems/talos/pkg/provision/internal/inmemhttp" + "github.com/siderolabs/talos/pkg/machinery/nethelpers" + "github.com/siderolabs/talos/pkg/provision/internal/inmemhttp" ) // ReadConfig loads configuration from stdin. diff --git a/pkg/provision/providers/vm/loadbalancer.go b/pkg/provision/providers/vm/loadbalancer.go index 334b8260c..9cbccb7a1 100644 --- a/pkg/provision/providers/vm/loadbalancer.go +++ b/pkg/provision/providers/vm/loadbalancer.go @@ -14,7 +14,7 @@ import ( "github.com/siderolabs/gen/slices" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) const ( diff --git a/pkg/provision/providers/vm/network.go b/pkg/provision/providers/vm/network.go index 4483bbc0e..1015b420c 100644 --- a/pkg/provision/providers/vm/network.go +++ b/pkg/provision/providers/vm/network.go @@ -23,7 +23,7 @@ import ( "github.com/siderolabs/gen/slices" sideronet "github.com/siderolabs/net" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) // CreateNetwork builds bridge interface name by taking part of checksum of the network name diff --git a/pkg/provision/providers/vm/node.go b/pkg/provision/providers/vm/node.go index 508d40ce2..31070cb93 100644 --- a/pkg/provision/providers/vm/node.go +++ b/pkg/provision/providers/vm/node.go @@ -9,7 +9,7 @@ import ( multierror "github.com/hashicorp/go-multierror" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) // DestroyNodes destroys all VMs. diff --git a/pkg/provision/providers/vm/reflect.go b/pkg/provision/providers/vm/reflect.go index 9eb64e651..84b7d0e0a 100644 --- a/pkg/provision/providers/vm/reflect.go +++ b/pkg/provision/providers/vm/reflect.go @@ -12,7 +12,7 @@ import ( yaml "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) // Reflect decode state file. diff --git a/pkg/provision/providers/vm/state.go b/pkg/provision/providers/vm/state.go index d687ec726..c92037c79 100644 --- a/pkg/provision/providers/vm/state.go +++ b/pkg/provision/providers/vm/state.go @@ -12,7 +12,7 @@ import ( "github.com/containernetworking/cni/libcni" yaml "gopkg.in/yaml.v3" - "github.com/talos-systems/talos/pkg/provision" + "github.com/siderolabs/talos/pkg/provision" ) // State common state representation for vm provisioners. diff --git a/pkg/provision/provision.go b/pkg/provision/provision.go index 011348cf9..6f4a08bdf 100644 --- a/pkg/provision/provision.go +++ b/pkg/provision/provision.go @@ -9,7 +9,7 @@ import ( "context" "io" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/generate" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/generate" ) // Provisioner is an interface each provisioner should implement. diff --git a/pkg/provision/request.go b/pkg/provision/request.go index 9d7d419ff..2ebc98758 100644 --- a/pkg/provision/request.go +++ b/pkg/provision/request.go @@ -10,9 +10,9 @@ import ( "github.com/siderolabs/go-procfs/procfs" - "github.com/talos-systems/talos/pkg/machinery/config" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/config" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // ClusterRequest is the root object describing cluster to be provisioned. diff --git a/pkg/provision/result.go b/pkg/provision/result.go index 714bcb084..d2f60c405 100644 --- a/pkg/provision/result.go +++ b/pkg/provision/result.go @@ -9,7 +9,7 @@ import ( "github.com/google/uuid" - "github.com/talos-systems/talos/pkg/machinery/config/types/v1alpha1/machine" + "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine" ) // Cluster describes the provisioned Cluster. diff --git a/pkg/safepath/safepath_test.go b/pkg/safepath/safepath_test.go index e6aba01db..c4f3403c2 100644 --- a/pkg/safepath/safepath_test.go +++ b/pkg/safepath/safepath_test.go @@ -7,7 +7,7 @@ package safepath_test import ( "testing" - "github.com/talos-systems/talos/pkg/safepath" + "github.com/siderolabs/talos/pkg/safepath" ) func TestCleanPath(t *testing.T) { diff --git a/pkg/version/version.go b/pkg/version/version.go index 6cffd0093..89e4621de 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -12,8 +12,8 @@ import ( "runtime" "text/template" - machineapi "github.com/talos-systems/talos/pkg/machinery/api/machine" - "github.com/talos-systems/talos/pkg/machinery/gendata" + machineapi "github.com/siderolabs/talos/pkg/machinery/api/machine" + "github.com/siderolabs/talos/pkg/machinery/gendata" ) var (