Closed
Conversation
- Add utilities/setup-storage.sh for configuring storage infrastructure - Script provides automated storage initialization and configuration
- Replace MSP references with Information LOB (Line of Business) - Update all admin UI references to LOB Admin UI - Maintain consistency across documentation and user-facing messages
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.
Add Storage Setup Utility Script
Overview
Adds a comprehensive storage provisioning script (
utilities/setup-storage.sh) that automates the setup of isolated Ceph storage for multi-tenant environments, supporting both block and object storage configurations.Purpose
This script provisions tenant-specific storage infrastructure for the SovereignCore platform, enabling:
Key Features
Multi-Mode Support
Storage Provisioning (8-Phase Process)
Security Features
Configuration Options
Usage Examples
Block storage only:
./setup-storage.sh --tenant customer-a --rbd-quota 1T --output-dir ~/ceph-configs --mode odfBlock + Object storage:
./setup-storage.sh --tenant dev-team --rbd-quota 500G --rgw-user-quota 1T --output-dir ~/odf-configs --mode odfResume from failure:
Output Artifacts
<tenant>-external-config.json: Main configuration file for Information LOB Admin UI (includes RGW credentials for Cluster-as-a-Service provisioning)<tenant>-rgw-credentials.txt: RGW access credentials reference file (handover to Information LOB Admin only for control plane storage setup; for Cluster-as-a-Service, object storage details are passed through the external-config.json file)<tenant>-ca-bundle.crt: CA certificate bundle for HTTPS (if applicable)<tenant>-summary.txt: Human-readable summary of provisioned resourcesIntegration
This script integrates with the SovereignCore Information LOB Admin UI workflow:
Technical Details