Move the main.go file under the cmd folder according to Standard Go Project Layout 64/11664/2
authorTaewan Kim <t25.kim@samsung.com>
Wed, 23 Aug 2023 04:56:16 +0000 (13:56 +0900)
committerTaewan Kim <t25.kim@samsung.com>
Sun, 27 Aug 2023 23:26:17 +0000 (08:26 +0900)
commit4f102b865c0ee732c58df17cf724428cd5db3b62
treee88c9c1e180e07a8536e7312287c6b233ddd11a3
parent5e752d71486cd686669c99c347ffbc097d261d0c
Move the main.go file under the cmd folder according to Standard Go Project Layout

- Some file permissions changed from 755 to 664
- Fix the package path of go get

Change-Id: Ia7b845dd268fb16bac11bd940c584e450f0355cf
Signed-off-by: Taewan Kim <t25.kim@samsung.com>
42 files changed:
.gitignore [changed mode: 0755->0644]
Dockerfile [changed mode: 0755->0644]
Makefile
cmd/kserve-adapter/main.go [moved from main.go with 100% similarity, mode: 0644]
config/kserve-adapter.yaml [changed mode: 0755->0644]
docs/_static/logo.png [changed mode: 0755->0644]
docs/favicon.ico [changed mode: 0755->0644]
docs/user-guide.rst [changed mode: 0755->0644]
go.mod [changed mode: 0755->0644]
pkg/api/commons/url/url.go [changed mode: 0755->0644]
pkg/api/rest_server.go [changed mode: 0755->0644]
pkg/api/v1/preparation/preparation.go [changed mode: 0755->0644]
pkg/commons/logger/logger.go [changed mode: 0755->0644]
pkg/controller/v1/adapter/controller_test.go [changed mode: 0755->0644]
pkg/helm/chart_builder.go [changed mode: 0755->0644]
pkg/helm/chart_builder_test.go [changed mode: 0755->0644]
pkg/helm/config.go [changed mode: 0755->0644]
pkg/helm/data/resources/inf-alpha/Chart.yaml [changed mode: 0755->0644]
pkg/helm/data/resources/inf-alpha/templates/_helpers.tpl [changed mode: 0755->0644]
pkg/helm/data/resources/inf-alpha/templates/inferenceservice.yaml [changed mode: 0755->0644]
pkg/helm/data/resources/inf-alpha/values.yaml [changed mode: 0755->0644]
pkg/helm/data/resources/inf-beta/Chart.yaml [changed mode: 0755->0644]
pkg/helm/data/resources/inf-beta/templates/_helpers.tpl [changed mode: 0755->0644]
pkg/helm/data/resources/inf-beta/templates/inferenceservice.yaml [changed mode: 0755->0644]
pkg/helm/data/resources/inf-beta/values.yaml [changed mode: 0755->0644]
pkg/helm/data/resources/std/Chart.yaml [changed mode: 0755->0644]
pkg/helm/data/resources/std/templates/_helpers.tpl [changed mode: 0755->0644]
pkg/helm/data/resources/std/templates/appconfig.yaml [changed mode: 0755->0644]
pkg/helm/data/resources/std/templates/appenv.yaml [changed mode: 0755->0644]
pkg/helm/data/resources/std/templates/deployment.yaml [changed mode: 0755->0644]
pkg/helm/data/resources/std/templates/service.yaml [changed mode: 0755->0644]
pkg/helm/data/resources/std/values.yaml [changed mode: 0755->0644]
pkg/helm/data/sample_config.json [changed mode: 0755->0644]
pkg/helm/data/sample_schema.json [changed mode: 0755->0644]
pkg/helm/schema.go [changed mode: 0755->0644]
pkg/util/util.go [changed mode: 0755->0644]
sample/invalidServing/inferenceServing/values.yaml [changed mode: 0755->0644]
sample/validServing/inferenceServing/Chart.yaml [changed mode: 0755->0644]
sample/validServing/inferenceServing/templates/_helpers.tpl [changed mode: 0755->0644]
sample/validServing/inferenceServing/templates/inferenceservice.yaml [changed mode: 0755->0644]
sample/validServing/inferenceServing/values.yaml [changed mode: 0755->0644]
tox.ini [changed mode: 0755->0644]