Skip to content

Commit

Permalink
Merge pull request #966 from bjwswang/dev
Browse files Browse the repository at this point in the history
chore: disable version increment check and publish a version manually
  • Loading branch information
bjwswang committed Apr 1, 2024
2 parents b80e4e4 + 8f34fb2 commit ec979f3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/chart_lint_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: Release Charts

on:
push:
branches:
- main
workflow_dispatch:

jobs:
release:
Expand Down
7 changes: 4 additions & 3 deletions deploy/charts/arcadia/templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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:
Expand Down
12 changes: 6 additions & 6 deletions deploy/charts/arcadia/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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.<replaced-ingress-nginx-ip>.nip.io
Expand All @@ -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.<replaced-ingress-nginx-ip>.nip.io
Expand Down Expand Up @@ -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
# dashboardHost: raycluster-kuberay-head-svc.kuberay-system.svc:8265

0 comments on commit ec979f3

Please sign in to comment.