Skip to content

Commit

Permalink
*: rename repo path accordingly
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Trost <[email protected]>
  • Loading branch information
galexrt committed Jun 13, 2023
1 parent 37b3210 commit c085803
Show file tree
Hide file tree
Showing 46 changed files with 141 additions and 139 deletions.
2 changes: 1 addition & 1 deletion .promu.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
go:
version: 1.20
repository:
path: github.com/cloudical-io/ancientt
path: github.com/galexrt/ancientt
build:
flags: -a -tags 'netgo static_build'
ldflags: |
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ LABEL org.opencontainers.image.authors="Alexander Trost <[email protected]>
org.opencontainers.image.created="${BUILD_DATE}" \
org.opencontainers.image.title="cloudical-io/ancientt" \
org.opencontainers.image.description="A tool to automate network testing tools, like iperf3, in dynamic environments such as Kubernetes and more to come dynamic environments." \
org.opencontainers.image.documentation="https://github.com/cloudical-io/ancientt/blob/main/README.md" \
org.opencontainers.image.url="https://github.com/cloudical-io/ancientt" \
org.opencontainers.image.source="https://github.com/cloudical-io/ancientt" \
org.opencontainers.image.documentation="https://github.com/galexrt/ancientt/blob/main/README.md" \
org.opencontainers.image.url="https://github.com/galexrt/ancientt" \
org.opencontainers.image.source="https://github.com/galexrt/ancientt" \
org.opencontainers.image.revision="${REVISION}" \
org.opencontainers.image.vendor="cloudical-io" \
org.opencontainers.image.version="${ANCIENTT_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PROJECTNAME ?= ancientt
DESCRIPTION ?= ancientt - A tool to automate network testing tools, like iperf3, in dynamic environments such as Kubernetes and more to come dynamic environments.
MAINTAINER ?= Alexander Trost <[email protected]>
HOMEPAGE ?= https://github.com/cloudical-io/ancientt
HOMEPAGE ?= https://github.com/galexrt/ancientt

GO111MODULE ?= on
GO ?= go
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Container Image Tags:
* Run network tests with the following projects:
* [`iperf3`](https://iperf.fr/)
* [PingParsing](https://github.com/thombashi/pingparsing)
* Soon more tools will be available as well, see [GitHub Issues with "testers" Label](https://github.com/cloudical-io/ancientt/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Atesters+).
* Soon more tools will be available as well, see [GitHub Issues with "testers" Label](https://github.com/galexrt/ancientt/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Atesters+).
* Tests can be run through the following "runners":
* Ansible (an inventory file is needed)
* Kubernetes (a kubeconfig connected to a cluster)
Expand Down Expand Up @@ -77,7 +77,7 @@ See [Demos](docs/demos.md).
The quickest way to just get `ancientt` built is to run the following command:

```bash
go get -u github.com/cloudical-io/ancientt/cmd/ancientt
go get -u github.com/galexrt/ancientt/cmd/ancientt
```

## Licensing
Expand Down
10 changes: 5 additions & 5 deletions cmd/ancientt/ancientt.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ import (
"sync"
"time"

"github.com/cloudical-io/ancientt/outputs"
"github.com/cloudical-io/ancientt/parsers"
"github.com/cloudical-io/ancientt/pkg/config"
"github.com/cloudical-io/ancientt/runners"
"github.com/cloudical-io/ancientt/testers"
"github.com/galexrt/ancientt/outputs"
"github.com/galexrt/ancientt/parsers"
"github.com/galexrt/ancientt/pkg/config"
"github.com/galexrt/ancientt/runners"
"github.com/galexrt/ancientt/testers"
au "github.com/logrusorgru/aurora"
"github.com/mattn/go-isatty"
"github.com/prometheus/common/version"
Expand Down
26 changes: 13 additions & 13 deletions cmd/ancientt/imports.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ package main

import (
// Outputs
_ "github.com/cloudical-io/ancientt/outputs/csv"
_ "github.com/cloudical-io/ancientt/outputs/dump"
_ "github.com/cloudical-io/ancientt/outputs/excelize"
_ "github.com/cloudical-io/ancientt/outputs/gochart"
_ "github.com/cloudical-io/ancientt/outputs/mysql"
_ "github.com/cloudical-io/ancientt/outputs/sqlite"
_ "github.com/galexrt/ancientt/outputs/csv"
_ "github.com/galexrt/ancientt/outputs/dump"
_ "github.com/galexrt/ancientt/outputs/excelize"
_ "github.com/galexrt/ancientt/outputs/gochart"
_ "github.com/galexrt/ancientt/outputs/mysql"
_ "github.com/galexrt/ancientt/outputs/sqlite"

// Parsers
_ "github.com/cloudical-io/ancientt/parsers/iperf3"
_ "github.com/cloudical-io/ancientt/parsers/pingparsing"
_ "github.com/galexrt/ancientt/parsers/iperf3"
_ "github.com/galexrt/ancientt/parsers/pingparsing"

// Runners
_ "github.com/cloudical-io/ancientt/runners/ansible"
_ "github.com/cloudical-io/ancientt/runners/kubernetes"
_ "github.com/cloudical-io/ancientt/runners/mock"
_ "github.com/galexrt/ancientt/runners/ansible"
_ "github.com/galexrt/ancientt/runners/kubernetes"
_ "github.com/galexrt/ancientt/runners/mock"

// Testers
_ "github.com/cloudical-io/ancientt/testers/iperf3"
_ "github.com/cloudical-io/ancientt/testers/pingparsing"
_ "github.com/galexrt/ancientt/testers/iperf3"
_ "github.com/galexrt/ancientt/testers/pingparsing"
)
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ See [Demos](docs/demos.md).
Quickest way to just get ancientt built is to run the following command:

```bash
go get -u github.com/cloudical-io/ancientt/cmd/ancientt
go get -u github.com/galexrt/ancientt/cmd/ancientt
```

## Licensing
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/cloudical-io/ancientt
module github.com/galexrt/ancientt

go 1.20

Expand Down
10 changes: 5 additions & 5 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
site_name: cloudical-io/ancientt Documentation
repo_url: https://github.com/cloudical-io/ancientt
site_author: Cloudical Deutschland GmbH
site_description: "GitHub cloudical-io/ancientt project documentation"
site_name: galexrt/ancientt Documentation
repo_url: https://github.com/galexrt/ancientt
site_author: Alexander Trost & Cloudical Deutschland GmbH
site_description: "GitHub galexrt/ancientt project documentation"
use_directory_urls: true
copyright: 'Copyright (c) Cloudical Deutschland GmbH 2021'
copyright: 'Copyright (c) Alexander Trost 2023, Copyright (c) Cloudical Deutschland GmbH 2021'
theme:
name: material
font: false
Expand Down
6 changes: 3 additions & 3 deletions outputs/csv/csv.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import (
"os"
"path/filepath"

"github.com/cloudical-io/ancientt/outputs"
"github.com/cloudical-io/ancientt/pkg/config"
"github.com/cloudical-io/ancientt/pkg/util"
"github.com/galexrt/ancientt/outputs"
"github.com/galexrt/ancientt/pkg/config"
"github.com/galexrt/ancientt/pkg/util"
"github.com/sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
Expand Down
2 changes: 1 addition & 1 deletion outputs/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"fmt"
"time"

"github.com/cloudical-io/ancientt/pkg/config"
"github.com/galexrt/ancientt/pkg/config"
)

// Data structured parsed data
Expand Down
4 changes: 2 additions & 2 deletions outputs/data_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
"fmt"
"testing"

"github.com/cloudical-io/ancientt/pkg/config"
"github.com/cloudical-io/ancientt/pkg/util"
"github.com/galexrt/ancientt/pkg/config"
"github.com/galexrt/ancientt/pkg/util"
"github.com/k0kubun/pp"
"github.com/stretchr/testify/assert"
)
Expand Down
4 changes: 2 additions & 2 deletions outputs/dump/dump.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
"os"
"path/filepath"

"github.com/cloudical-io/ancientt/outputs"
"github.com/cloudical-io/ancientt/pkg/config"
"github.com/galexrt/ancientt/outputs"
"github.com/galexrt/ancientt/pkg/config"
"github.com/k0kubun/pp"
"github.com/sirupsen/logrus"
log "github.com/sirupsen/logrus"
Expand Down
6 changes: 3 additions & 3 deletions outputs/excelize/excelize.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
//include excelize library for .xlsx output
"github.com/xuri/excelize/v2"

"github.com/cloudical-io/ancientt/outputs"
"github.com/cloudical-io/ancientt/pkg/config"
"github.com/cloudical-io/ancientt/pkg/util"
"github.com/galexrt/ancientt/outputs"
"github.com/galexrt/ancientt/pkg/config"
"github.com/galexrt/ancientt/pkg/util"
"github.com/sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
Expand Down
4 changes: 2 additions & 2 deletions outputs/excelize/excelize_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import (
"path"
"testing"

"github.com/cloudical-io/ancientt/outputs/tests"
"github.com/cloudical-io/ancientt/pkg/config"
"github.com/creasty/defaults"
"github.com/galexrt/ancientt/outputs/tests"
"github.com/galexrt/ancientt/pkg/config"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
Expand Down
6 changes: 3 additions & 3 deletions outputs/gochart/gochart.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import (
"fmt"
"path/filepath"

"github.com/cloudical-io/ancientt/outputs"
"github.com/cloudical-io/ancientt/pkg/config"
"github.com/cloudical-io/ancientt/pkg/util"
"github.com/galexrt/ancientt/outputs"
"github.com/galexrt/ancientt/pkg/config"
"github.com/galexrt/ancientt/pkg/util"
"github.com/sirupsen/logrus"
log "github.com/sirupsen/logrus"
chart "github.com/wcharczuk/go-chart"
Expand Down
6 changes: 3 additions & 3 deletions outputs/gochart/gochart_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ import (
"path"
"testing"

"github.com/cloudical-io/ancientt/outputs/tests"
"github.com/cloudical-io/ancientt/pkg/config"
"github.com/cloudical-io/ancientt/pkg/util"
"github.com/creasty/defaults"
"github.com/galexrt/ancientt/outputs/tests"
"github.com/galexrt/ancientt/pkg/config"
"github.com/galexrt/ancientt/pkg/util"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
Expand Down
6 changes: 3 additions & 3 deletions outputs/mysql/mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ package mysql
import (
"fmt"

"github.com/cloudical-io/ancientt/pkg/config"
"github.com/cloudical-io/ancientt/pkg/util"
"github.com/galexrt/ancientt/pkg/config"
"github.com/galexrt/ancientt/pkg/util"
"github.com/jmoiron/sqlx"

// Include MySQL driver for mysql output
_ "github.com/go-sql-driver/mysql"

"github.com/cloudical-io/ancientt/outputs"
"github.com/galexrt/ancientt/outputs"
"github.com/sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
Expand Down
6 changes: 3 additions & 3 deletions outputs/mysql/mysql_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import (
"testing"

"github.com/DATA-DOG/go-sqlmock"
"github.com/cloudical-io/ancientt/outputs"
"github.com/cloudical-io/ancientt/outputs/tests"
"github.com/cloudical-io/ancientt/pkg/config"
"github.com/creasty/defaults"
"github.com/galexrt/ancientt/outputs"
"github.com/galexrt/ancientt/outputs/tests"
"github.com/galexrt/ancientt/pkg/config"
"github.com/jmoiron/sqlx"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down
2 changes: 1 addition & 1 deletion outputs/outputs.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"bytes"
"html/template"

"github.com/cloudical-io/ancientt/pkg/config"
"github.com/galexrt/ancientt/pkg/config"
)

// Factories contains the list of all available outputs.
Expand Down
6 changes: 3 additions & 3 deletions outputs/sqlite/sqlite.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ import (
"fmt"
"path/filepath"

"github.com/cloudical-io/ancientt/pkg/config"
"github.com/cloudical-io/ancientt/pkg/util"
"github.com/galexrt/ancientt/pkg/config"
"github.com/galexrt/ancientt/pkg/util"
"github.com/jmoiron/sqlx"

// Include sqlite driver for sqlite output
_ "github.com/mattn/go-sqlite3"

"github.com/cloudical-io/ancientt/outputs"
"github.com/galexrt/ancientt/outputs"
"github.com/sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
Expand Down
6 changes: 3 additions & 3 deletions outputs/sqlite/sqlite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ import (
"testing"

"github.com/DATA-DOG/go-sqlmock"
"github.com/cloudical-io/ancientt/outputs"
"github.com/cloudical-io/ancientt/outputs/tests"
"github.com/cloudical-io/ancientt/pkg/config"
"github.com/creasty/defaults"
"github.com/galexrt/ancientt/outputs"
"github.com/galexrt/ancientt/outputs/tests"
"github.com/galexrt/ancientt/pkg/config"
"github.com/jmoiron/sqlx"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down
2 changes: 1 addition & 1 deletion outputs/tests/mockdata.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"math/rand"
"time"

"github.com/cloudical-io/ancientt/outputs"
"github.com/galexrt/ancientt/outputs"
)

// GenerateMockTableData generate some mock DataTable data for testing purposes
Expand Down
10 changes: 5 additions & 5 deletions parsers/iperf3/iperf3.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ import (
"fmt"
"io"

"github.com/cloudical-io/ancientt/outputs"
"github.com/cloudical-io/ancientt/parsers"
"github.com/cloudical-io/ancientt/pkg/config"
models "github.com/cloudical-io/ancientt/pkg/models/iperf3"
"github.com/cloudical-io/ancientt/pkg/util"
"github.com/galexrt/ancientt/outputs"
"github.com/galexrt/ancientt/parsers"
"github.com/galexrt/ancientt/pkg/config"
models "github.com/galexrt/ancientt/pkg/models/iperf3"
"github.com/galexrt/ancientt/pkg/util"
"github.com/sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
Expand Down
4 changes: 2 additions & 2 deletions parsers/parsers.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
"io"
"time"

"github.com/cloudical-io/ancientt/outputs"
"github.com/cloudical-io/ancientt/pkg/config"
"github.com/galexrt/ancientt/outputs"
"github.com/galexrt/ancientt/pkg/config"
)

// Factories contains the list of all available testers.
Expand Down
10 changes: 5 additions & 5 deletions parsers/pingparsing/pingparsing.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ import (
"fmt"
"io"

"github.com/cloudical-io/ancientt/outputs"
"github.com/cloudical-io/ancientt/parsers"
"github.com/cloudical-io/ancientt/pkg/config"
models "github.com/cloudical-io/ancientt/pkg/models/pingparsing"
"github.com/cloudical-io/ancientt/pkg/util"
"github.com/galexrt/ancientt/outputs"
"github.com/galexrt/ancientt/parsers"
"github.com/galexrt/ancientt/pkg/config"
models "github.com/galexrt/ancientt/pkg/models/pingparsing"
"github.com/galexrt/ancientt/pkg/util"
"github.com/sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmdtemplate/templater.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"bytes"
"text/template"

"github.com/cloudical-io/ancientt/testers"
"github.com/galexrt/ancientt/testers"
)

// Variables variables used for templating
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmdtemplate/templater_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package cmdtemplate
import (
"testing"

"github.com/cloudical-io/ancientt/testers"
"github.com/galexrt/ancientt/testers"
"github.com/stretchr/testify/assert"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/config/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (

corev1 "k8s.io/api/core/v1"

"github.com/cloudical-io/ancientt/pkg/ansible"
"github.com/cloudical-io/ancientt/pkg/util"
"github.com/galexrt/ancientt/pkg/ansible"
"github.com/galexrt/ancientt/pkg/util"
)

// Defaults interface to implement for config parts which allow a "verification" / Setting Defaults
Expand Down
2 changes: 1 addition & 1 deletion pkg/executor/test/mock.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"os/exec"

"github.com/cloudical-io/ancientt/pkg/executor"
"github.com/galexrt/ancientt/pkg/executor"
"github.com/sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
Expand Down
Loading

0 comments on commit c085803

Please sign in to comment.