From 054f683bf13c80a49bb8a158b457ae3c135c5961 Mon Sep 17 00:00:00 2001 From: bjwswang Date: Sat, 18 Nov 2023 07:18:09 +0000 Subject: [PATCH] fix: chart release workflow and README Signed-off-by: bjwswang --- .github/workflows/release.yaml | 2 +- README.md | 8 ++++---- pkg/scheduler/scheduler.go | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a24a226ec..88e15c05c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -30,7 +30,7 @@ jobs: - name: Run chart-releaser uses: helm/chart-releaser-action@v1.5.0 with: - charts_dir: charts + charts_dir: deploy/charts charts_repo_url: https://kubeagi.github.io/arcadia/ # FIXME: uncomment this once customized configuration is needed # config: cr.yaml diff --git a/README.md b/README.md index f41a76cb7..c0a2c8e9a 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Furthermore,we can easily host **Arcadia** at any kubernetes cluster as producti Our design and development in Arcadia design follows operator pattern which extends kubernetes APIs. -![Arch](./assets/kubeagi.drawio.png) +![Arch](./docs/images//kubeagi.drawio.png) ## Quick Start @@ -39,8 +39,8 @@ Our design and development in Arcadia design follows operator pattern which exte If you don't have a kubernetes cluster, you can schedule a [kind cluster](https://kind.sigs.k8s.io/). Depends on your choice on CPU or GPU when running LLM worker,you can choose to: -- [Schedule a kind cluster without GPU enabled](./doc/kind.md) -- [Schedule a kind cluster with GPU enabled](./doc/kind_gpu.md) +- [Schedule a kind cluster without GPU enabled](./docs/kind.md) +- [Schedule a kind cluster with GPU enabled](./docs/kind_gpu.md) ### Install Arcadia @@ -52,7 +52,7 @@ If you don't have a kubernetes cluster, you can schedule a [kind cluster](https: ## CLI -We provide a Command Line Tool `arctl` to interact with `arcadia`. See [here](./arctl/README.md) for more details. +We provide a Command Line Tool `arctl` to interact with `arcadia`. See [here](./pkg/arctl/README.md) for more details. - ✅ datasource management - ✅ local dataset management diff --git a/pkg/scheduler/scheduler.go b/pkg/scheduler/scheduler.go index 2710b394c..b0562c51f 100644 --- a/pkg/scheduler/scheduler.go +++ b/pkg/scheduler/scheduler.go @@ -19,11 +19,11 @@ import ( "context" "github.com/KawashiroNitori/butcher/v2" - "github.com/kubeagi/arcadia/api/v1alpha1" - "k8s.io/apimachinery/pkg/types" "k8s.io/klog/v2" "sigs.k8s.io/controller-runtime/pkg/client" + + "github.com/kubeagi/arcadia/api/v1alpha1" ) type Scheduler struct {