Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ header:
- 'LICENSE'
- 'NOTICE'
- 'PROJECT'
- 'helm-charts/doris-foundationdb/**'

comment: on-failure

Expand Down
26 changes: 26 additions & 0 deletions helm-charts/doris-foundationdb/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
apiVersion: v2
name: doris-foundationdb
description: A Helm chart for FoundationDB
home: https://www.foundationdb.org/
sources:
- https://github.com/FoundationDB/fdb-kubernetes-operator/tree/main/charts/fdb-operator
# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
# to be deployed.
#
# Library charts provide useful utilities or functions for the chart developer. They're included as
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
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.
version: 0.2.0
dependencies:
- name: fdb-operator
version: v2.3.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.
appVersion: 7.1.38
maintainers:
- name: "doris"
25 changes: 25 additions & 0 deletions helm-charts/doris-foundationdb/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Deploy FoundationDb Cluster by Helm
This chart will deploy foundationdb operator and a foundationdb cluster. The foundationdb operator chart clone from [foundationdb operator repo](https://github.com/FoundationDB/fdb-kubernetes-operator/tree/main/charts/fdb-operator).
The foundationdb cluster is a practice for doris.

## Install foundationdb and operator
1. Add the selectdb repository
```Bash
$ helm repo add selectdb https://charts.selectdb.com
```
2. Update the Helm Chart Repo to the latest version
```Bash
$ helm repo update selectdb
```
3. Check the Helm Chart Repo is the latest version
```Bash
$ helm search repo selectdb
NAME CHART VERSION APP VERSION DESCRIPTION
selectdb/doris-operator 1.3.1 1.3.1 Doris-operator for doris creat ...
selectdb/doris 1.3.1 2.0.3 Apache Doris is an easy-to-use ...
selectdb/doris-foundationdb 0.2.0 7.1.38 A Helm chart for FoundationDB
```
4. Install doris-foundationdb
```Bash
$ helm install doris-foundationdb selectdb/doris-foundationdb
```
23 changes: 23 additions & 0 deletions helm-charts/doris-foundationdb/charts/fdb-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apiVersion: v2
name: fdb-operator
description: A Helm chart for foundationDB operator
home: https://www.foundationdb.org/
sources:
- https://github.com/FoundationDB/fdb-kubernetes-operator/tree/main/charts/fdb-operator
# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
# to be deployed.
#
# Library charts provide useful utilities or functions for the chart developer. They're included as
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
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.
version: 0.2.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.
appVersion: v2.3.0
maintainers:
- name: "foundationdb-ci"
Loading