Skip to content

Commit cf36433

Browse files
Replace old module path gojek/turing with caraml-dev/turing (#227)
* Replace old module path gojek/turing with caraml-dev/turing * Change UI HTML template meta tag to reflect caraML
1 parent 20989ac commit cf36433

File tree

249 files changed

+693
-693
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

249 files changed

+693
-693
lines changed

.github/workflows/turing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ jobs:
475475
- test-api
476476
- test-engines-router
477477
- test-engines-experiment
478-
uses: gojek/turing/.github/workflows/turing-publish.yaml@main
478+
uses: caraml-dev/turing/.github/workflows/turing-publish.yaml@main
479479
with:
480480
api_version: ${{ needs.build-api.outputs.api-version }}
481481
router_version: ${{ needs.build-router.outputs.router-version }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Download Turing source code to your local filesystem. From here onwards
6868
the environment variable `$TURING` will refer to the root directory
6969
for the Turing source code.
7070
```bash
71-
git clone https://github.com/gojek/turing.git
71+
git clone https://github.com/caraml-dev/turing.git
7272
export TURING=$PWD/turing
7373
```
7474

@@ -190,9 +190,9 @@ BatchEnsemblingConfig:
190190
BuildTimeoutDuration: 20m
191191
DestinationRegistry: ghcr.io
192192
BaseImageRef:
193-
3.7.*: ghcr.io/gojek/turing/pyfunc-ensembler-job:latest
193+
3.7.*: ghcr.io/caraml-dev/turing/pyfunc-ensembler-job:latest
194194
KanikoConfig:
195-
BuildContextURI: git://github.com/gojek/turing.git#refs/heads/main
195+
BuildContextURI: git://github.com/caraml-dev/turing.git#refs/heads/main
196196
DockerfileFilePath: engines/pyfunc-ensembler-job/app.Dockerfile
197197
Image: gcr.io/kaniko-project/executor
198198
ImageVersion: v1.6.0

api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ENV GO111MODULE=on \
66
GOOS=linux \
77
GOARCH=amd64
88

9-
ENV PROJECT_ROOT=github.com/gojek/turing/api/turing
9+
ENV PROJECT_ROOT=github.com/caraml-dev/turing/api/turing
1010

1111
WORKDIR /app
1212
COPY . .

api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ istio-system cluster-local-gateway-5bf54b4999-p2bv7 1/1 Running 0
111111
istio-system istio-ingressgateway-555bdcd566-xcn6h 1/1 Running 0 19m
112112
```
113113

114-
Don't forget to build the Turing routers and push it to the local registry. Alternatively, use one of our images [here](https://github.com/gojek/turing/pkgs/container/turing%2Fturing-router).
114+
Don't forget to build the Turing routers and push it to the local registry. Alternatively, use one of our images [here](https://github.com/caraml-dev/turing/pkgs/container/turing%2Fturing-router).
115115

116116
```bash
117117
pushd ../engines/router

api/config-dev.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ BatchEnsemblingConfig:
2020
BuildTimeoutDuration: 20m
2121
DestinationRegistry: ghcr.io
2222
BaseImageRef:
23-
3.7.*: ghcr.io/gojek/turing/pyfunc-ensembler-job:latest
23+
3.7.*: ghcr.io/caraml-dev/turing/pyfunc-ensembler-job:latest
2424
KanikoConfig: &kanikoConfig
25-
BuildContextURI: git://github.com/gojek/turing.git#refs/heads/main
25+
BuildContextURI: git://github.com/caraml-dev/turing.git#refs/heads/main
2626
DockerfileFilePath: engines/pyfunc-ensembler-job/app.Dockerfile
2727
Image: gcr.io/kaniko-project/executor
2828
ImageVersion: v1.8.0
@@ -38,7 +38,7 @@ EnsemblerServiceBuilderConfig:
3838
ImageBuildingConfig:
3939
<<: *imageBuildingConfig
4040
BaseImageRef:
41-
3.7.*: ghcr.io/gojek/turing/pyfunc-ensembler-service:latest
41+
3.7.*: ghcr.io/caraml-dev/turing/pyfunc-ensembler-service:latest
4242
KanikoConfig:
4343
<<: *kanikoConfig
4444
DockerfileFilePath: engines/pyfunc-ensembler-service/app.Dockerfile

api/e2e/test/01_create_router_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"strings"
1010
"testing"
1111

12-
"github.com/gojek/turing/api/turing/models"
13-
"github.com/gojek/turing/api/turing/service"
12+
"github.com/caraml-dev/turing/api/turing/models"
13+
"github.com/caraml-dev/turing/api/turing/service"
1414
"github.com/stretchr/testify/assert"
1515
"github.com/tidwall/gjson"
1616
)

api/e2e/test/02_update_router_invalid_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"path/filepath"
1010
"testing"
1111

12-
"github.com/gojek/turing/api/turing/models"
12+
"github.com/caraml-dev/turing/api/turing/models"
1313
"github.com/stretchr/testify/assert"
1414
"github.com/stretchr/testify/require"
1515
"github.com/tidwall/gjson"

api/e2e/test/03_create_router_version_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"path/filepath"
1010
"testing"
1111

12-
"github.com/gojek/turing/api/turing/models"
12+
"github.com/caraml-dev/turing/api/turing/models"
1313
"github.com/stretchr/testify/assert"
1414
"github.com/stretchr/testify/require"
1515
"github.com/tidwall/gjson"

api/e2e/test/04_undeploy_router_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"testing"
1111
"time"
1212

13-
"github.com/gojek/turing/api/turing/models"
13+
"github.com/caraml-dev/turing/api/turing/models"
1414
"github.com/stretchr/testify/assert"
1515
"github.com/stretchr/testify/require"
1616
)

api/e2e/test/05_deploy_invalid_config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"net/http"
99
"testing"
1010

11-
"github.com/gojek/turing/api/turing/models"
11+
"github.com/caraml-dev/turing/api/turing/models"
1212
"github.com/stretchr/testify/assert"
1313
"github.com/stretchr/testify/require"
1414
)

0 commit comments

Comments
 (0)