The current public version is v1.0.0.
This release is intended for OpenTenBase plugin development and validation in development or test environments. It is not a guarantee of unattended production safety.
Please report security issues through GitHub issues unless the report includes private credentials, private infrastructure details, or exploit instructions.
Do not include passwords, tokens, private keys, live database credentials, or private hostnames in public reports.
OpenTenBase PluginCtl separates plugin governance from OpenTenBase cluster operations.
PluginCtl does not start, stop, initialize, or monitor OpenTenBase clusters. It assumes the target OpenTenBase cluster is already running and uses init only to discover topology and write PluginCtl's local cluster.toml.
Read-only or mostly read-only commands include:
listcheckhelphelp advanced- advanced governance commands such as
plugin lint,plugin plan, andplugin consistency
Commands that may modify the environment include:
deploy, which copies declared extension payload files to CN/DN nodes.register, which may runCREATE EXTENSIONonce on the primary coordinator.rollback, which runs manifest-declared rollback SQL.remove, which removes PluginCtl catalog metadata but does not drop database objects or remote physical files.
- Review
deployoutput before using it on important clusters. registershould be treated as a database-changing command.rollbackis best-effort object cleanup, not disaster recovery.rollbackdoes not remove.control, install SQL, or.sofiles from CN/DN nodes.- Role hooks are planned and checked, but not automatically executed in v1.0.0.
- PluginCtl should not be treated as a general OpenTenBase operations platform.
Recommended manual review flow:
plugin_ctl
pluginctl> init
pluginctl> check <plugin_id_or_path>
pluginctl> deploy <plugin_id_or_path>
pluginctl> check <plugin_id>
pluginctl> register <plugin_id>
pluginctl> check <plugin_id>
For C extensions, build before deployment:
pluginctl> new -c my_c_plugin
pluginctl> check my_c_plugin
pluginctl> build my_c_plugin
pluginctl> deploy my_c_plugin
pluginctl> register my_c_plugin
pluginctl> check my_c_plugin