Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(node): add pvc #26

Merged
merged 5 commits into from
Aug 22, 2024
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
2 changes: 1 addition & 1 deletion charts/celestia-node/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ maintainers:
name: celestia-node
sources:
- https://github.com/celestiaorg/celestia-node
version: 0.2.0
version: 0.2.1
4 changes: 1 addition & 3 deletions charts/celestia-node/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# celestia-node

![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![AppVersion: v0.15.0](https://img.shields.io/badge/AppVersion-v0.15.0-informational?style=flat-square)
![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square) ![AppVersion: v0.15.0](https://img.shields.io/badge/AppVersion-v0.15.0-informational?style=flat-square)

Celestia Node

Expand Down Expand Up @@ -374,10 +374,8 @@ Celestia Node
| node.resources.requests.memory | string | `"16Gi"` | memory requests for the node, 8Gi by default |
| node.resourcesPreset | string | `"nano"` | more information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 |
| node.schedulerName | string | `""` | |
| node.settings.address | string | `"SET_IT"` | address for the celestia-node, it must be set |
| node.settings.home | string | `"/home/celestia"` | home directory for the celestia-node, defaults to /home/celestia |
| node.settings.nodeType | string | `"bridge"` | |
| node.settings.node_id | string | `"SET_IT"` | node ID for the celestia-node, it must be set |
| node.settings.secret.name | string | `"SET_IT"` | name of the secret, it must be set |
| node.settings.ws.tls.enabled | bool | `false` | |
| node.settings.ws.tls.secret.name | string | `"SET_IT"` | |
Expand Down
8 changes: 4 additions & 4 deletions charts/celestia-node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -466,16 +466,16 @@
## @param volumePermissions.resourcesPreset Set init container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if volumePermissions.resources is set (volumePermissions.resources is recommended for production).
## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
##
#resourcesPreset: "micro"
# resourcesPreset: "micro"
## @param volumePermissions.resources Set init container resources for the otel agent (essential for production workloads)
## Example:
resources:
requests:
cpu: 100m
memory: 100Mi
#limits:
#cpu: 200m
#memory: 200Mi
# limits:
# cpu: 200m
# memory: 200Mi
## A secret must be available in the cluster with the following format:
## - name: <secret-name>
## - items:
Expand Down Expand Up @@ -651,7 +651,7 @@
# -- limits for the node
limits:
# -- cpu limits for the node, 2 by default
#cpu: 6

Check failure on line 654 in charts/celestia-node/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test

654:8 [comments] missing starting space in comment
# -- memory limits for the node, 8Gi by default
memory: 16Gi
## Configure Pods Security Context
Expand Down
Loading