Skip to content

Commit d200de6

Browse files
committed
Renames package from gojekfarm to gojek
1 parent ce215ef commit d200de6

35 files changed

+84
-99
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22
jobs:
33
build:
4-
working_directory: /go/src/github.com/gojekfarm/kat
4+
working_directory: /go/src/github.com/gojek/kat
55
docker:
66
- image: circleci/golang:1.11
77
steps:
@@ -34,7 +34,7 @@ jobs:
3434
3535
3636
test:
37-
working_directory: /go/src/github.com/gojekfarm/kat
37+
working_directory: /go/src/github.com/gojek/kat
3838
docker:
3939
- image: circleci/golang:1.11
4040
steps:
@@ -62,7 +62,7 @@ jobs:
6262
6363
6464
release:
65-
working_directory: /go/src/github.com/gojekfarm/kat
65+
working_directory: /go/src/github.com/gojek/kat
6666
docker:
6767
- image: circleci/golang:1.11
6868
steps:

README.md

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# KAT
2-
[![Build Status](https://circleci.com/gh/gojekfarm/kat.svg?branch=master)](https://circleci.com/gh/gojekfarm/kat)
2+
[![Build Status](https://circleci.com/gh/gojek/kat.svg?branch=master)](https://circleci.com/gh/gojek/kat)
33

44
Kafka Admin Tool provides an interface to perform many admin operations on kafka in a straight-forward manner.
55

@@ -12,7 +12,7 @@ brew install kat
1212

1313
### Others
1414
```
15-
go install github.com/gojekfarm/kat
15+
go install github.com/gojek/kat
1616
```
1717

1818
### Local Dev/Testing
@@ -158,30 +158,15 @@ This tool has automation around all these steps:
158158

159159
## Future Scope
160160
- Add support for more admin operations
161-
- Beautify the response of list and show config commands
161+
- Beautify the response of list and show config commands. Add custom features to ui pkg
162162
- Fetch values from a kat config file instead of passing everything as cmd args
163163

164164
## Contributing
165165
* Raise an issue to clarify scope/questions, followed by PR
166166
* Follow go [guidelines](https://golang.org/doc/effective_go.html) for development
167167
* Ensure `make` succeeds
168168

169-
Thanks for all the [Contributors](https://github.com/gojekfarm/kat/graphs/contributors).
169+
Thanks for all the [Contributors](https://github.com/gojek/kat/graphs/contributors).
170170

171171
## License
172-
173-
```
174-
Copyright 2019, GO-JEK Tech (http://gojek.tech)
175-
176-
Licensed under the Apache License, Version 2.0 (the "License");
177-
you may not use this file except in compliance with the License.
178-
You may obtain a copy of the License at
179-
180-
http://www.apache.org/licenses/LICENSE-2.0
181-
182-
Unless required by applicable law or agreed to in writing, software
183-
distributed under the License is distributed on an "AS IS" BASIS,
184-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
185-
See the License for the specific language governing permissions and
186-
limitations under the License.
187-
```
172+
Licensed under the [Apache License](./LICENSE), Version 2.0

cmd/admin/increasereplicationfactor.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package admin
22

33
import (
4-
"github.com/gojekfarm/kat/cmd/base"
5-
"github.com/gojekfarm/kat/logger"
6-
"github.com/gojekfarm/kat/pkg/client"
4+
"github.com/gojek/kat/cmd/base"
5+
"github.com/gojek/kat/logger"
6+
"github.com/gojek/kat/pkg/client"
77
"github.com/spf13/cobra"
88
)
99

cmd/admin/increasereplicationfactor_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"testing"
77

8-
"github.com/gojekfarm/kat/pkg/client"
8+
"github.com/gojek/kat/pkg/client"
99
"github.com/stretchr/testify/mock"
1010

1111
"bou.ke/monkey"

cmd/admin/reassignpartitions.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package admin
22

33
import (
4-
"github.com/gojekfarm/kat/cmd/base"
5-
"github.com/gojekfarm/kat/logger"
6-
"github.com/gojekfarm/kat/pkg/client"
4+
"github.com/gojek/kat/cmd/base"
5+
"github.com/gojek/kat/logger"
6+
"github.com/gojek/kat/pkg/client"
77
"github.com/spf13/cobra"
88
)
99

cmd/admin/reassignpartitions_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"os"
66
"testing"
77

8-
"github.com/gojekfarm/kat/pkg/client"
8+
"github.com/gojek/kat/pkg/client"
99

1010
"bou.ke/monkey"
11-
"github.com/gojekfarm/kat/logger"
11+
"github.com/gojek/kat/logger"
1212
"github.com/stretchr/testify/assert"
1313
)
1414

cmd/base/base.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package base
33
import (
44
"strings"
55

6-
"github.com/gojekfarm/kat/pkg/client"
7-
"github.com/gojekfarm/kat/pkg/model"
6+
"github.com/gojek/kat/pkg/client"
7+
"github.com/gojek/kat/pkg/model"
88

9-
"github.com/gojekfarm/kat/logger"
9+
"github.com/gojek/kat/logger"
1010
"github.com/kevinburke/ssh_config"
1111
"github.com/mitchellh/go-homedir"
1212
)

cmd/base/cobrautil.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strconv"
66
"strings"
77

8-
"github.com/gojekfarm/kat/logger"
8+
"github.com/gojek/kat/logger"
99

1010
"github.com/spf13/cobra"
1111
)

cmd/config/alterconfig.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package config
33
import (
44
"strings"
55

6-
"github.com/gojekfarm/kat/pkg/client"
6+
"github.com/gojek/kat/pkg/client"
77

8-
"github.com/gojekfarm/kat/cmd/base"
8+
"github.com/gojek/kat/cmd/base"
99

10-
"github.com/gojekfarm/kat/logger"
10+
"github.com/gojek/kat/logger"
1111
"github.com/spf13/cobra"
1212
)
1313

cmd/config/alterconfig_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"testing"
77

88
"bou.ke/monkey"
9-
"github.com/gojekfarm/kat/logger"
10-
"github.com/gojekfarm/kat/pkg/client"
9+
"github.com/gojek/kat/logger"
10+
"github.com/gojek/kat/pkg/client"
1111
"github.com/stretchr/testify/assert"
1212
)
1313

0 commit comments

Comments
 (0)