chore: rename talos-systems/talos to siderolabs/talos

There's a cyclic dependency on siderolink library which imports talos
machinery back. We will fix that after we get talos pushed under a new
name.

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
This commit is contained in:
Andrey Smirnov 2022-11-02 15:06:45 +04:00
parent 30bbf6463a
commit 96aa9638f7
No known key found for this signature in database
GPG Key ID: 7B26396447AB6DFD
974 changed files with 3084 additions and 3280 deletions

View File

@ -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';

View File

@ -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

View File

@ -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.

View File

@ -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

View File

@ -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";

View File

@ -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";

View File

@ -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";

View File

@ -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";

View File

@ -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)'

View File

@ -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 {

View File

@ -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";

View File

@ -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";

View File

@ -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 {

View File

@ -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";

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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";

View File

@ -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 {

View File

@ -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";

View File

@ -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";

View File

@ -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 {

View File

@ -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 {

View File

@ -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";

View File

@ -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";

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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";

View File

@ -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 {

View File

@ -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";

View File

@ -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";

View File

@ -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 (

View File

@ -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.

View File

@ -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

View File

@ -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.

View File

@ -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()

View File

@ -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 {

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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.

View File

@ -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.

View File

@ -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 }}

View File

@ -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.

View File

@ -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 {

View File

@ -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.

View File

@ -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 (

View File

@ -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.

View File

@ -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.

View File

@ -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/*

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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.

View File

@ -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.

View File

@ -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 (

View File

@ -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.

View File

@ -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 {

View File

@ -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 {

View File

@ -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.

View File

@ -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) {

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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 {

View File

@ -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 {

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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) {

View File

@ -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.

View File

@ -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.

View File

@ -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 {

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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 {

View File

@ -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 (

View File

@ -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

View File

@ -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 {

View File

@ -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.

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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 (

View File

@ -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

Some files were not shown because too many files have changed in this diff Show More