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

[node] Add support for ephemeral storage #347

Merged
merged 6 commits into from
Jun 25, 2024
Merged

[node] Add support for ephemeral storage #347

merged 6 commits into from
Jun 25, 2024

Conversation

BulatSaif
Copy link
Contributor

@BulatSaif BulatSaif commented Jun 24, 2024

Fixes: #145

Description

This PR updates the node Helm chart from version 5.9.0 to 5.10.0. It introduces the option to mount volumes using emptyDir or Generic ephemeral volumes instead of PersistentVolumeClaims (PVCs), which can be useful for testing scenarios where persistent storage is not necessary.

Changes

  • Added ephemeral volume configuration for chainData and collatorRelayChain.chainData.

    node:
      chainData:
        ephemeral:
          enabled: false
          type: emptyDir # emptyDir or generic
      collatorRelayChain:
        chainData:
          ephemeral:
            enabled: false
            type: emptyDir # emptyDir or generic

Purpose

  • Testing flexibility: The introduction of ephemeral volumes provides a more flexible and faster setup for testing environments where persistent storage is not required.

@BulatSaif BulatSaif changed the title [node] Add support for emptyDir [node] Add support for ephemeral storage Jun 24, 2024
@BulatSaif BulatSaif merged commit 9ced27a into main Jun 25, 2024
3 checks passed
@BulatSaif BulatSaif deleted the bs/add-emptyDir branch June 25, 2024 08:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Allow mounting chain data on ephemeral volumes
2 participants