diff --git a/.github/workflows/chart_lint_test.yaml b/.github/workflows/chart_lint_test.yaml index 2f9b83a8b..8e19a99fc 100644 --- a/.github/workflows/chart_lint_test.yaml +++ b/.github/workflows/chart_lint_test.yaml @@ -27,14 +27,14 @@ jobs: - name: Run chart-testing (list-changed) id: list-changed run: | - changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }}) + changed=$(ct list-changed --chart-dirs deploy/charts/ --target-branch ${{ github.event.repository.default_branch }}) if [[ -n "$changed" ]]; then echo "changed=true" >> "$GITHUB_OUTPUT" fi # https://github.com/helm/chart-testing-action - name: Run chart-testing (lint) if: steps.list-changed.outputs.changed == 'true' - run: ct lint --target-branch ${{ github.event.repository.default_branch }} + run: ct lint --debug --chart-dirs deploy/charts/ --target-branch ${{ github.event.repository.default_branch }} --check-version-increment=false # FIXME: once component dependency much more clear, we can enable this # - name: Create kind cluster diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 745cee4fd..479763874 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,9 +1,7 @@ name: Release Charts on: - push: - branches: - - main + workflow_dispatch: jobs: release: diff --git a/deploy/charts/arcadia/templates/config.yaml b/deploy/charts/arcadia/templates/config.yaml index 4555639ed..4a68e3921 100644 --- a/deploy/charts/arcadia/templates/config.yaml +++ b/deploy/charts/arcadia/templates/config.yaml @@ -74,9 +74,6 @@ data: url: https://{{ .Values.gpts.agentportal.ingress.host }}/{{ .Values.gpts.agentportal.ingress.path }} public_namespace: {{ .Values.gpts.public_namespace }} categories: - - id: -1 - name: "其他" - nameEn: "Other" - id: 1 name: "通用对话" nameEn: "General Conversation" @@ -104,6 +101,10 @@ data: - id: 9 name: "动漫" nameEn: "Anime" + # -1 means `Other` which should be placed at the end + - id: -1 + name: "其他" + nameEn: "Other" {{- end }} kind: ConfigMap metadata: diff --git a/deploy/charts/arcadia/values.yaml b/deploy/charts/arcadia/values.yaml index f6c256916..66c7b8f04 100644 --- a/deploy/charts/arcadia/values.yaml +++ b/deploy/charts/arcadia/values.yaml @@ -35,9 +35,9 @@ config: # @param imagePullPolcy ImagePullPolicy # @param resources Resources to be used controller: - # 1: error 3: info 5: debug + # 1: error 3:info 5:debug loglevel: 3 - image: kubeagi/arcadia:v0.2.1-20240329-f4655d3 + image: kubeagi/arcadia:v0.2.1-20240401-b80e4e4 imagePullPolicy: IfNotPresent resources: limits: @@ -51,7 +51,7 @@ controller: # related project: https://github.com/kubeagi/arcadia/tree/main/apiserver apiserver: loglevel: 3 - image: kubeagi/arcadia:v0.2.1-20240329-f4655d3 + image: kubeagi/arcadia:v0.2.1-20240401-b80e4e4 enableplayground: false port: 8081 ingress: @@ -70,7 +70,7 @@ apiserver: opsconsole: enabled: true kubebbEnabled: true - image: kubeagi/ops-console:v0.2.1-20240329-87ae2e0 + image: kubeagi/ops-console:v0.2.1-20240401-2e63d80 ingress: path: kubeagi-portal-public host: portal..nip.io @@ -81,7 +81,7 @@ gpts: # all gpt resources are public in this namespace public_namespace: gpts agentportal: - image: kubeagi/agent-portal:v0.1.0-20240329-cc3d5f4 + image: kubeagi/agent-portal:v0.1.0-20240401-bc9e42d ingress: path: "" host: gpts..nip.io @@ -187,4 +187,4 @@ ray: # - name: cluster1 # headAddress: raycluster-kuberay-head-svc.kuberay-system.svc:6379 # pythonVersion: 3.9.18 - # dashboardHost: raycluster-kuberay-head-svc.kuberay-system.svc:8265 \ No newline at end of file + # dashboardHost: raycluster-kuberay-head-svc.kuberay-system.svc:8265