Skip to content

Commit e758108

Browse files
authored
fix: change odpf reference to goto (#7)
1 parent 202e4ad commit e758108

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.goreleaser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ brews:
6767
homepage: "https://github.com/goto/entropy"
6868
description: "Infrastructure orchestration tool."
6969
tap:
70-
owner: odpf
70+
owner: goto
7171
name: homebrew-tap
7272
license: "Apache 2.0"
7373
folder: Formula

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ in your PATH for easy use. `/usr/local/bin` is the most probable location.
3232

3333
```sh
3434
# Install entropy (requires homebrew installed)
35-
$ brew install odpf/tap/entropy
35+
$ brew install goto/tap/entropy
3636

3737
# Check for installed entropy version
3838
$ entropy version
@@ -83,7 +83,7 @@ $ make test
8383
Development of Entropy happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and
8484
improvements. Read below to learn how you can take part in improving Entropy.
8585

86-
Read our [contributing guide](https://odpf.github.io/entropy/docs/contribute/contributing) to learn about our
86+
Read our [contributing guide](https://goto.github.io/entropy/docs/contribute/contributing) to learn about our
8787
development process, how to propose bugfixes and improvements, and how to build and test your changes to Entropy.
8888

8989
To help you get your feet wet and get you familiar with our contribution process, we have a list

core/resource/resource_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func TestResource_Validate(t *testing.T) {
5050
res: resource.Resource{
5151
Kind: "fake",
5252
Name: "foo",
53-
Project: "odpf",
53+
Project: "goto",
5454
},
5555
want: nil,
5656
},

docs/installation.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ in your PATH for easy use. `/usr/local/bin` is the most probable location.
1818

1919
```sh
2020
# Install entropy (requires homebrew installed)
21-
$ brew install odpf/taps/entropy
21+
$ brew install goto/taps/entropy
2222

2323
# Upgrade entropy (requires homebrew installed)
2424
$ brew upgrade entropy
@@ -44,12 +44,12 @@ $ ./entropy version
4444

4545
### Using Docker image
4646

47-
Entropy ships a Docker image [odpf/entropy](https://hub.docker.com/r/goto/entropy) that enables you to use `entropy` as part of your Docker workflow.
47+
Entropy ships a Docker image [goto/entropy](https://hub.docker.com/r/goto/entropy) that enables you to use `entropy` as part of your Docker workflow.
4848

4949
For example, you can run `entropy version` with this command:
5050

5151
```bash
52-
$ docker run odpf/entropy version
52+
$ docker run goto/entropy version
5353
```
5454

5555
### Verifying the installation

docs/modules/firehose.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Firehose
22

3-
[Firehose](https://odpf.github.io/firehose/) is an extensible, no-code, and cloud-native service to load real-time streaming data from Kafka to data stores, data lakes, and analytical storage systems.
3+
[Firehose](https://goto.github.io/firehose/) is an extensible, no-code, and cloud-native service to load real-time streaming data from Kafka to data stores, data lakes, and analytical storage systems.
44

55
## What happens in Plan?
66

modules/firehose/module.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ var Module = module.Descriptor{
7070
},
7171
DriverFactory: func(conf json.RawMessage) (module.Driver, error) {
7272
driverCfg := driverConfig{
73-
ChartRepository: "https://odpf.github.io/charts/",
73+
ChartRepository: "https://goto.github.io/charts/",
7474
ChartName: "firehose",
7575
ChartVersion: "0.1.3",
76-
ImageRepository: "odpf/firehose",
76+
ImageRepository: "goto/firehose",
7777
ImageName: "firehose",
7878
ImageTag: "latest",
7979
Namespace: "firehose",

pkg/helm/release_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func TestReleaseCreate(t *testing.T) {
6363

6464
releaseConfig := DefaultReleaseConfig()
6565
releaseConfig.Name = releaseName
66-
releaseConfig.Repository = "https://odpf.github.io/charts/"
66+
releaseConfig.Repository = "https://goto.github.io/charts/"
6767
releaseConfig.Chart = "firehose"
6868
releaseConfig.Version = "0.1.1"
6969
releaseConfig.Values = jsonUnmarshal(jsonValues)
@@ -83,7 +83,7 @@ func TestReleaseUpdate(t *testing.T) {
8383

8484
releaseConfig := DefaultReleaseConfig()
8585
releaseConfig.Name = releaseName
86-
releaseConfig.Repository = "https://odpf.github.io/charts/"
86+
releaseConfig.Repository = "https://goto.github.io/charts/"
8787
releaseConfig.Chart = "firehose"
8888
releaseConfig.Version = "0.1.1"
8989
releaseConfig.Values = jsonUnmarshal(jsonValues)
@@ -109,7 +109,7 @@ func TestReleaseDelete(t *testing.T) {
109109

110110
releaseConfig := DefaultReleaseConfig()
111111
releaseConfig.Name = releaseName
112-
releaseConfig.Repository = "https://odpf.github.io/charts/"
112+
releaseConfig.Repository = "https://goto.github.io/charts/"
113113
releaseConfig.Chart = "firehose"
114114
releaseConfig.Version = "0.1.1"
115115
releaseConfig.Values = jsonUnmarshal(jsonValues)

0 commit comments

Comments
 (0)