feat: add storage charts for local-path and piraeus#4
Merged
robinbraemer merged 5 commits intomainfrom Feb 24, 2026
Merged
Conversation
Add two storage provider helm charts for CNAP's persistent storage capability: - storage/local-path: Local Path Provisioner for single-node storage (development and simple setups) - storage/piraeus: Piraeus Operator (LINSTOR) wrapper for replicated block storage with automatic failover (production) The piraeus chart wraps two subcharts (piraeus-operator v2.10.4 and linstor-cluster v1.1.1) and configures a file-backed thin pool with a default StorageClass. Part of CNAP-319.
- Update local-path-provisioner from v0.0.30 to v0.0.34 (latest) - Pin busybox helperPod image to 1.37.0 instead of 'latest' - Remove unused _helpers.tpl from piraeus chart (pure subchart wrapper has no custom templates)
- Add dependency build step in CI for charts with Chart.lock (needed for OCI subchart dependencies that are gitignored as .tgz) - Add NOTES.txt to piraeus templates/ dir (helm --strict requires a non-empty templates directory)
installCRDs defaults to false in the piraeus subchart, which means ArgoCD would deploy the operator without its CRDs. The linstor-cluster subchart would then fail to create LinstorCluster and LinstorSatelliteConfiguration custom resources.
Configures Renovate to auto-update: - OCI subchart dependencies in piraeus Chart.yaml (helmv3 manager) - Docker image tags in values.yaml files (helm-values manager) - appVersion in local-path Chart.yaml (custom regex manager) Groups related updates (piraeus deps, local-path image + appVersion) and disables tracking for empty/latest tags.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
storage/local-pathchart — Local Path Provisioner for single-node storage (dev/simple setups)storage/piraeuschart — Piraeus Operator (LINSTOR) wrapper for replicated block storage with automatic failover (production)piraeus-operatorv2.10.4 andlinstor-clusterv1.1.1 OCI subchartsLocal Path Provisioner (
storage/local-path)Inlines upstream manifests (no official Helm repo available). Creates:
rancher/local-path-provisioner:v0.0.30local-path) withrancher.io/local-pathprovisionerPiraeus / LINSTOR (
storage/piraeus)Pure wrapper chart with two OCI subchart dependencies:
piraeus(operator) fromoci://ghcr.io/piraeusdatastore/piraeus-operatorlinstor-clusterfromoci://ghcr.io/piraeusdatastore/helm-chartsConfigures via subchart values passthrough:
LinstorClusterCR (operator deploys controller + satellite DaemonSet)LinstorSatelliteConfigurationwith file-backed thin pool (no dedicated disks)StorageClass(piraeus-storage) withlinstor.csi.linbit.comCSI driverPart of CNAP-319. Companion to cnap-tech/cnap#66.
Test plan
helm lint storage/local-path/— passeshelm lint storage/piraeus/— passeshelm template test storage/local-path/— renders all resources correctlyhelm template test storage/piraeus/— renders operator + LinstorCluster + SatelliteConfig + StorageClass