
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
sbcli-dev
Advanced tools
Simplyblock is a Kubernetes-native, distributed block storage solution. It was designed from the ground up to be high-performance, NVMe over Fabrics end-to-end, highly available, fault-tolerant, and scalable.
Simplyblock is developed and maintained by Simplyblock.
The full simplyblock documentation can be found at docs.simplyblock.io.
The sbctl tooling can be installed using our pypi package sbctl.
pip install --upgrade sbctl
This repository contains the source code for the Simplyblock Control Plane core services and the command line interface
(sbctl).
Technology stack:
The repository is split into the following components:
The simplyblock_core/ directory contains the core logic and controllers for a simplyblock control plane cluster.
The simplyblock_cli directory contains the sbctl command line interface code. A full list of the available command
line interface commands and options can be found in the sbctl reference.
Commands and options in the command line interface are implemented using an automatic generator and a YAML definitions
file (simplyblock_cli/sbctl/cli-reference.yaml). For well-conformity of the YAML file, a schema definition is
provided in simplyblock_cli/sbctl/cli-reference-schema.json and linked on top of the reference for immediate use
in Visual Studio Code and IntelliJ-based platforms.
If commands or options are added, updated, or removed, the YAML file, the generator must be executed to update the
startup code of sbctl.
./simplyblock_cli/scripts/generate.sh
Executing this command updates simplyblock_cli/cli.py according to the reference file.
There are a few implicit rules in the reference file:
-- or -) are considered positional arguments which are always required.-- or -) are considered optional arguments except marked as required: true.<command>__<subcommand> which has to be implemented in clibase.py. If the command or subcommand contains a hyphen in the name, it is exchanged for an underscore.The simplyblock_web directory contains the source code for the simplyblock control plane API. A full list of the
available API endpoints and options can be found in the API reference.
Simplyblock's control plane uses FoundationDB, which means it requires a FDB client library (libfdb_c.dylib) for the Python bindings to interact with the database.
Depending on the OS architecture, the appropriate version must be installed from their official github repo.
wget https://github.com/apple/foundationdb/releases/download/7.3.3/FoundationDB-7.3.3_arm64.pkg
A local development environment can be spun up using the Docker compose file: docker-compose-dev.yml.
sudo docker compose -f docker-compose-dev.yml up --build -d
Copyright (c) 2021-2025 Simplyblock GmbH. All rights reserved.
FAQs
CLI for managing SimplyBlock cluster
We found that sbcli-dev demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.