Skip to content

Commit

Permalink
rename to tubekit
Browse files Browse the repository at this point in the history
  • Loading branch information
kovetskiy committed Mar 11, 2019
1 parent d0f82d0 commit 8080f8b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ nfpm:
linux: Tux
vendor: [email protected]

homepage: https://github.com/reconquest/quadro
homepage: https://github.com/reconquest/tubekit

maintainer: [email protected]

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# QUADRO
# TUBEKIT

Quadro is the project that summoned to help Kubernetes users and operators to
tubekit is the project that summoned to help Kubernetes users and operators to
increase their effectiveness in terms of operating clusters using kubectl.

## tubectl
Expand All @@ -14,25 +14,25 @@ contexts, namespaces and intelligent matching resources.
#### Arch Linux

The package is always available in AUR:
[quadro-git](https://aur.archlinux.org/packages/quadro-git).
[tubekit-git](https://aur.archlinux.org/packages/tubekit-git).

#### Debian

Debian packages can be found on [releases page](https://github.com/reconquest/quadro/releases).
Debian packages can be found on [releases page](https://github.com/reconquest/tubekit/releases).

#### Fedora, CentOS

Debian packages can be found on [releases page](https://github.com/reconquest/quadro/releases).
Debian packages can be found on [releases page](https://github.com/reconquest/tubekit/releases).

#### Binaries

Binaries can be found on [releases page](https://github.com/reconquest/quadro/releases).
Binaries can be found on [releases page](https://github.com/reconquest/tubekit/releases).

#### Standalone

With your [GOPATH](https://github.com/golang/go/wiki/GOPATH) already set up:
```
go get github.com/reconquest/quadro/cmd/...
go get github.com/reconquest/tubekit/cmd/...
```

### Quick context
Expand Down
4 changes: 2 additions & 2 deletions cmd/tubectl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ import (
)

var (
debug = os.Getenv("QUADRO_DEBUG") == "1"
debug = os.Getenv("TUBEKIT_DEBUG") == "1"
)

func main() {
ctlPath := "/usr/bin/kubectl"
if envPath := os.Getenv("QUADRO_KUBECTL"); envPath != "" {
if envPath := os.Getenv("TUBEKIT_KUBECTL"); envPath != "" {
ctlPath = envPath
}

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/reconquest/quadro
module github.com/reconquest/tubekit

require (
github.com/gogo/protobuf v1.2.1 // indirect
Expand Down

0 comments on commit 8080f8b

Please sign in to comment.