[CELEBORN-218][HELM] Move helm chart to dedicated directory (#1160)

This commit is contained in:
Binjie Yang 2023-01-11 16:11:27 +08:00 committed by GitHub
parent 810a8d01e0
commit 2bb8e7a2a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 5 additions and 3 deletions

View File

@ -241,7 +241,9 @@ cp -r "$PROJECT_DIR/sbin" "$DIST_DIR"
# Copy container related resources
mkdir "$DIST_DIR/docker"
cp "$PROJECT_DIR/docker/Dockerfile" "$DIST_DIR/docker"
cp -r "$PROJECT_DIR/docker/helm" "$DIST_DIR/docker"
# Copy Helm Charts
cp -r "$PROJECT_DIR/charts" "$DIST_DIR"
# Copy license files
cp "$PROJECT_DIR/DISCLAIMER" "$DIST_DIR/DISCLAIMER"

View File

@ -34,7 +34,7 @@ kubectl create namespace celeborn
#### [Optional] Modify helm values file values.yaml
You can modify helm values file and set up customized deployment configuration.
```
vim ${CELEBORN_HOME}/docker/helm/values.yaml
vim ${CELEBORN_HOME}/charts/celeborn/values.yaml
```
These values are suggested to be checked before deploy:
- masterReplicas (number of Celeborn Master)
@ -46,7 +46,7 @@ For more information of Celeborn configurations, see [CONFIGURATIONS](../CONFIGU
#### Install Celeborn
```
helm install celeborn ${CELEBORN_HOME}/docker/helm -n ${celeborn namespace}
helm install celeborn ${CELEBORN_HOME}/charts/celebron -n ${celeborn namespace}
```
#### Connect to Celeborn in K8s pod