Skip to content

Commit

Permalink
chore: update home urls (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc authored Jun 28, 2024
1 parent d26f2ac commit 6a8ea75
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 4 additions & 4 deletions charts/databend-meta/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
5 changes: 4 additions & 1 deletion charts/databend-meta/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -21,13 +22,15 @@ 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
```

## Uninstall

To uninstall/delete a Helm release `my-release`:

```
helm delete my-release --namespace databend
```
8 changes: 4 additions & 4 deletions charts/databend-query/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
5 changes: 4 additions & 1 deletion charts/databend-query/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -21,13 +22,15 @@ 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
```

## Uninstall

To uninstall/delete a Helm release `my-release`:

```
helm delete my-release --namespace databend
```

0 comments on commit 6a8ea75

Please sign in to comment.