diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6efeae..3da2e99 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: - name: Install BendSQL shell: bash run: | - sudo curl -L -o /etc/apt/sources.list.d/datafuselabs.sources https://repo.databend.rs/deb/datafuselabs.sources + sudo curl -L -o /etc/apt/sources.list.d/datafuselabs.sources https://repo.databend.com/deb/datafuselabs.sources sudo apt-get update sudo apt-get install -y bendsql diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 68cd4e2..8359820 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: - name: Publish Helm chart uses: helm/chart-releaser-action@v1.4.0 with: - charts_repo_url: https://charts.databend.rs + charts_repo_url: https://charts.databend.com env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" CR_SKIP_EXISTING: true diff --git a/charts/databend-meta/Chart.yaml b/charts/databend-meta/Chart.yaml index 1d58b46..224ef22 100644 --- a/charts/databend-meta/Chart.yaml +++ b/charts/databend-meta/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 name: databend-meta description: A Helm chart for databend meta -icon: https://databend.rs/img/favicon.svg -home: https://databend.rs +icon: https://databend.com/img/favicon.svg +home: https://databend.com maintainers: - name: cloud.dev email: cloud.dev@datafuselabs.com @@ -26,13 +26,13 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.8.1 +version: 0.9.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v1.2.453" +appVersion: "v1.2.530" dependencies: - name: common diff --git a/charts/databend-meta/README.md b/charts/databend-meta/README.md index 1c32e4f..6da5b19 100644 --- a/charts/databend-meta/README.md +++ b/charts/databend-meta/README.md @@ -8,8 +8,9 @@ ## Install To install the chart with release name `my-release`: + ``` -helm repo add databend https://charts.databend.rs +helm repo add databend https://charts.databend.com helm install my-release databend/databend-meta --namespace databend --create-namespace ``` @@ -21,6 +22,7 @@ Note that for a production cluster, you will likely want to override the followi - `persistence.storageClass` uses the default storage class for your environment. Then install the chart with release name `my-release`: + ``` helm upgrade my-release databend/databend-meta --namespace databend --create-namespace --values values.yaml ``` @@ -28,6 +30,7 @@ helm upgrade my-release databend/databend-meta --namespace databend --create-nam ## Uninstall To uninstall/delete a Helm release `my-release`: + ``` helm delete my-release --namespace databend ``` diff --git a/charts/databend-query/Chart.yaml b/charts/databend-query/Chart.yaml index ebd7fa4..98d6921 100644 --- a/charts/databend-query/Chart.yaml +++ b/charts/databend-query/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 name: databend-query description: A Helm chart for databend query -icon: https://databend.rs/img/favicon.svg -home: https://databend.rs +icon: https://databend.com/img/favicon.svg +home: https://databend.com maintainers: - name: cloud.dev email: cloud.dev@datafuselabs.com @@ -25,13 +25,13 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.9.1 +version: 0.10.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v1.2.453" +appVersion: "v1.2.530" dependencies: - name: common diff --git a/charts/databend-query/README.md b/charts/databend-query/README.md index 2ed2743..404be45 100644 --- a/charts/databend-query/README.md +++ b/charts/databend-query/README.md @@ -8,8 +8,9 @@ ## Install To install the chart with release name `my-release`: + ``` -helm repo add databend https://charts.databend.rs +helm repo add databend https://charts.databend.com helm install my-release databend/databend-query --namespace databend --create-namespace ``` @@ -21,6 +22,7 @@ Note that for a production cluster, you will likely want to override the followi - `config.storage.s3.accessKeyId` and `config.storage.s3.secretAccessKey` should be set when using `s3` storage, `config.storage.s3.endpointUrl` defaults to `https://s3.amazonaws.com`. Then install the chart with release name `my-release`: + ``` helm upgrade my-release databend/databend-query --namespace databend --create-namespace --values values.yaml ``` @@ -28,6 +30,7 @@ helm upgrade my-release databend/databend-query --namespace databend --create-na ## Uninstall To uninstall/delete a Helm release `my-release`: + ``` helm delete my-release --namespace databend ```