pvectl 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.claude/rules/branch-before-changes.md +52 -0
- data/.claude/rules/documentation-updates.md +104 -0
- data/.claude/rules/git-workflow.md +84 -0
- data/.claude/rules/proxmox-api-docs.md +58 -0
- data/.claude/rules/rbs-signatures.md +80 -0
- data/.claude/rules/refactoring-as-design-option.md +35 -0
- data/.claude/scheduled_tasks.lock +1 -0
- data/.claude/settings.json +51 -0
- data/.mcp.json +8 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +138 -0
- data/CLAUDE.md +211 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/LICENSE.txt +21 -0
- data/README.md +143 -0
- data/Rakefile +8 -0
- data/docs/proxmox-api-update.sh +96 -0
- data/exe/pvectl +5 -0
- data/lib/pvectl/argv_preprocessor.rb +334 -0
- data/lib/pvectl/cli.rb +102 -0
- data/lib/pvectl/commands/apt.rb +389 -0
- data/lib/pvectl/commands/clone_container.rb +230 -0
- data/lib/pvectl/commands/clone_vm.rb +331 -0
- data/lib/pvectl/commands/cloudinit/command.rb +122 -0
- data/lib/pvectl/commands/cloudinit/dump.rb +94 -0
- data/lib/pvectl/commands/cloudinit/pending.rb +137 -0
- data/lib/pvectl/commands/cloudinit/regenerate.rb +79 -0
- data/lib/pvectl/commands/config/command.rb +65 -0
- data/lib/pvectl/commands/config/get_contexts.rb +68 -0
- data/lib/pvectl/commands/config/set_cluster.rb +103 -0
- data/lib/pvectl/commands/config/set_context.rb +136 -0
- data/lib/pvectl/commands/config/set_credentials.rb +181 -0
- data/lib/pvectl/commands/config/use_context.rb +69 -0
- data/lib/pvectl/commands/config/view.rb +67 -0
- data/lib/pvectl/commands/console.rb +93 -0
- data/lib/pvectl/commands/console_ct.rb +187 -0
- data/lib/pvectl/commands/console_vm.rb +187 -0
- data/lib/pvectl/commands/container_lifecycle_command.rb +77 -0
- data/lib/pvectl/commands/create_backup.rb +173 -0
- data/lib/pvectl/commands/create_container.rb +141 -0
- data/lib/pvectl/commands/create_resource_command.rb +244 -0
- data/lib/pvectl/commands/create_snapshot.rb +242 -0
- data/lib/pvectl/commands/create_vm.rb +267 -0
- data/lib/pvectl/commands/delete_backup.rb +139 -0
- data/lib/pvectl/commands/delete_command.rb +119 -0
- data/lib/pvectl/commands/delete_container.rb +30 -0
- data/lib/pvectl/commands/delete_snapshot.rb +248 -0
- data/lib/pvectl/commands/delete_vm.rb +127 -0
- data/lib/pvectl/commands/describe/command.rb +251 -0
- data/lib/pvectl/commands/edit_container.rb +56 -0
- data/lib/pvectl/commands/edit_dns.rb +149 -0
- data/lib/pvectl/commands/edit_hosts.rb +135 -0
- data/lib/pvectl/commands/edit_node.rb +54 -0
- data/lib/pvectl/commands/edit_resource_command.rb +180 -0
- data/lib/pvectl/commands/edit_vm.rb +154 -0
- data/lib/pvectl/commands/edit_volume.rb +189 -0
- data/lib/pvectl/commands/feature_command.rb +230 -0
- data/lib/pvectl/commands/feature_container.rb +21 -0
- data/lib/pvectl/commands/feature_vm.rb +94 -0
- data/lib/pvectl/commands/get/command.rb +360 -0
- data/lib/pvectl/commands/get/handlers/backups.rb +76 -0
- data/lib/pvectl/commands/get/handlers/capabilities.rb +107 -0
- data/lib/pvectl/commands/get/handlers/containers.rb +148 -0
- data/lib/pvectl/commands/get/handlers/disks.rb +107 -0
- data/lib/pvectl/commands/get/handlers/dns.rb +94 -0
- data/lib/pvectl/commands/get/handlers/hosts.rb +94 -0
- data/lib/pvectl/commands/get/handlers/nodes.rb +162 -0
- data/lib/pvectl/commands/get/handlers/services.rb +81 -0
- data/lib/pvectl/commands/get/handlers/snapshots.rb +97 -0
- data/lib/pvectl/commands/get/handlers/storage.rb +118 -0
- data/lib/pvectl/commands/get/handlers/subscription.rb +69 -0
- data/lib/pvectl/commands/get/handlers/tasks.rb +89 -0
- data/lib/pvectl/commands/get/handlers/templates.rb +175 -0
- data/lib/pvectl/commands/get/handlers/time.rb +118 -0
- data/lib/pvectl/commands/get/handlers/vms.rb +145 -0
- data/lib/pvectl/commands/get/handlers/volume.rb +134 -0
- data/lib/pvectl/commands/get/resource_handler.rb +63 -0
- data/lib/pvectl/commands/get/resource_registry.rb +18 -0
- data/lib/pvectl/commands/get/watch_loop.rb +129 -0
- data/lib/pvectl/commands/irreversible_command.rb +265 -0
- data/lib/pvectl/commands/logs/command.rb +275 -0
- data/lib/pvectl/commands/logs/handlers/journal.rb +46 -0
- data/lib/pvectl/commands/logs/handlers/syslog.rb +53 -0
- data/lib/pvectl/commands/logs/handlers/task_detail.rb +52 -0
- data/lib/pvectl/commands/logs/handlers/task_logs.rb +115 -0
- data/lib/pvectl/commands/logs/resource_handler.rb +46 -0
- data/lib/pvectl/commands/logs/resource_registry.rb +22 -0
- data/lib/pvectl/commands/migrate_command.rb +282 -0
- data/lib/pvectl/commands/migrate_container.rb +23 -0
- data/lib/pvectl/commands/migrate_vm.rb +122 -0
- data/lib/pvectl/commands/move_disk_command.rb +239 -0
- data/lib/pvectl/commands/move_disk_container.rb +21 -0
- data/lib/pvectl/commands/move_disk_vm.rb +127 -0
- data/lib/pvectl/commands/ping.rb +249 -0
- data/lib/pvectl/commands/pull.rb +342 -0
- data/lib/pvectl/commands/push.rb +352 -0
- data/lib/pvectl/commands/reset.rb +64 -0
- data/lib/pvectl/commands/resource_lifecycle_command.rb +277 -0
- data/lib/pvectl/commands/resource_registry.rb +73 -0
- data/lib/pvectl/commands/restart.rb +70 -0
- data/lib/pvectl/commands/restart_container.rb +18 -0
- data/lib/pvectl/commands/restore_backup.rb +236 -0
- data/lib/pvectl/commands/resume.rb +57 -0
- data/lib/pvectl/commands/rollback_snapshot.rb +228 -0
- data/lib/pvectl/commands/sendkey_vm.rb +205 -0
- data/lib/pvectl/commands/service.rb +293 -0
- data/lib/pvectl/commands/set_container.rb +50 -0
- data/lib/pvectl/commands/set_node.rb +52 -0
- data/lib/pvectl/commands/set_resource_command.rb +185 -0
- data/lib/pvectl/commands/set_vm.rb +136 -0
- data/lib/pvectl/commands/set_volume.rb +212 -0
- data/lib/pvectl/commands/shared_config_parsers.rb +126 -0
- data/lib/pvectl/commands/shared_flags.rb +155 -0
- data/lib/pvectl/commands/shutdown.rb +73 -0
- data/lib/pvectl/commands/shutdown_container.rb +18 -0
- data/lib/pvectl/commands/start.rb +79 -0
- data/lib/pvectl/commands/start_container.rb +18 -0
- data/lib/pvectl/commands/stop.rb +75 -0
- data/lib/pvectl/commands/stop_container.rb +18 -0
- data/lib/pvectl/commands/suspend.rb +64 -0
- data/lib/pvectl/commands/template_command.rb +205 -0
- data/lib/pvectl/commands/template_container.rb +27 -0
- data/lib/pvectl/commands/template_vm.rb +106 -0
- data/lib/pvectl/commands/top/command.rb +206 -0
- data/lib/pvectl/commands/top/handlers/containers.rb +61 -0
- data/lib/pvectl/commands/top/handlers/nodes.rb +61 -0
- data/lib/pvectl/commands/top/handlers/vms.rb +61 -0
- data/lib/pvectl/commands/top/resource_handler.rb +46 -0
- data/lib/pvectl/commands/top/resource_registry.rb +22 -0
- data/lib/pvectl/commands/unlink_disk_vm.rb +232 -0
- data/lib/pvectl/commands/vm_lifecycle_command.rb +77 -0
- data/lib/pvectl/commands/wakeonlan_node.rb +153 -0
- data/lib/pvectl/config/errors.rb +62 -0
- data/lib/pvectl/config/models/cluster.rb +180 -0
- data/lib/pvectl/config/models/context.rb +100 -0
- data/lib/pvectl/config/models/resolved_config.rb +171 -0
- data/lib/pvectl/config/models/user.rb +133 -0
- data/lib/pvectl/config/provider.rb +297 -0
- data/lib/pvectl/config/service.rb +300 -0
- data/lib/pvectl/config/store.rb +161 -0
- data/lib/pvectl/config/wizard.rb +309 -0
- data/lib/pvectl/config_serializer.rb +1034 -0
- data/lib/pvectl/connection/retry_handler.rb +161 -0
- data/lib/pvectl/connection.rb +157 -0
- data/lib/pvectl/console/terminal_session.rb +449 -0
- data/lib/pvectl/editor_session.rb +157 -0
- data/lib/pvectl/exit_codes.rb +43 -0
- data/lib/pvectl/formatters/base.rb +55 -0
- data/lib/pvectl/formatters/color_support.rb +90 -0
- data/lib/pvectl/formatters/json.rb +45 -0
- data/lib/pvectl/formatters/output_helper.rb +77 -0
- data/lib/pvectl/formatters/registry.rb +72 -0
- data/lib/pvectl/formatters/table.rb +235 -0
- data/lib/pvectl/formatters/wide.rb +93 -0
- data/lib/pvectl/formatters/yaml.rb +49 -0
- data/lib/pvectl/manifest_serializer.rb +142 -0
- data/lib/pvectl/models/apt_package.rb +107 -0
- data/lib/pvectl/models/backup.rb +173 -0
- data/lib/pvectl/models/base.rb +49 -0
- data/lib/pvectl/models/capability.rb +62 -0
- data/lib/pvectl/models/container.rb +205 -0
- data/lib/pvectl/models/container_operation_result.rb +27 -0
- data/lib/pvectl/models/dns_config.rb +54 -0
- data/lib/pvectl/models/hosts_file.rb +47 -0
- data/lib/pvectl/models/journal_entry.rb +16 -0
- data/lib/pvectl/models/network_interface.rb +85 -0
- data/lib/pvectl/models/node.rb +195 -0
- data/lib/pvectl/models/node_operation_result.rb +45 -0
- data/lib/pvectl/models/operation_result.rb +110 -0
- data/lib/pvectl/models/physical_disk.rb +193 -0
- data/lib/pvectl/models/service.rb +80 -0
- data/lib/pvectl/models/snapshot.rb +101 -0
- data/lib/pvectl/models/snapshot_description.rb +39 -0
- data/lib/pvectl/models/storage.rb +180 -0
- data/lib/pvectl/models/subscription.rb +87 -0
- data/lib/pvectl/models/syslog_entry.rb +17 -0
- data/lib/pvectl/models/task.rb +95 -0
- data/lib/pvectl/models/task_entry.rb +52 -0
- data/lib/pvectl/models/task_log_line.rb +17 -0
- data/lib/pvectl/models/time_config.rb +47 -0
- data/lib/pvectl/models/vm.rb +137 -0
- data/lib/pvectl/models/vm_operation_result.rb +27 -0
- data/lib/pvectl/models/volume.rb +133 -0
- data/lib/pvectl/models/volume_operation_result.rb +26 -0
- data/lib/pvectl/parsers/cloud_init_config.rb +92 -0
- data/lib/pvectl/parsers/disk_config.rb +97 -0
- data/lib/pvectl/parsers/lxc_mount_config.rb +98 -0
- data/lib/pvectl/parsers/lxc_net_config.rb +97 -0
- data/lib/pvectl/parsers/net_config.rb +95 -0
- data/lib/pvectl/parsers/smart_text.rb +42 -0
- data/lib/pvectl/plugin_loader.rb +157 -0
- data/lib/pvectl/presenters/apt_package.rb +99 -0
- data/lib/pvectl/presenters/backup.rb +128 -0
- data/lib/pvectl/presenters/base.rb +283 -0
- data/lib/pvectl/presenters/capability.rb +104 -0
- data/lib/pvectl/presenters/config/context.rb +80 -0
- data/lib/pvectl/presenters/container.rb +574 -0
- data/lib/pvectl/presenters/container_operation_result.rb +109 -0
- data/lib/pvectl/presenters/disk.rb +184 -0
- data/lib/pvectl/presenters/dns_config.rb +68 -0
- data/lib/pvectl/presenters/hosts_file.rb +61 -0
- data/lib/pvectl/presenters/journal_entry.rb +20 -0
- data/lib/pvectl/presenters/node.rb +762 -0
- data/lib/pvectl/presenters/node_operation_result.rb +50 -0
- data/lib/pvectl/presenters/operation_result.rb +61 -0
- data/lib/pvectl/presenters/service.rb +76 -0
- data/lib/pvectl/presenters/snapshot.rb +239 -0
- data/lib/pvectl/presenters/snapshot_operation_result.rb +125 -0
- data/lib/pvectl/presenters/storage.rb +329 -0
- data/lib/pvectl/presenters/subscription.rb +189 -0
- data/lib/pvectl/presenters/syslog_entry.rb +20 -0
- data/lib/pvectl/presenters/task_entry.rb +69 -0
- data/lib/pvectl/presenters/task_log_line.rb +20 -0
- data/lib/pvectl/presenters/template.rb +76 -0
- data/lib/pvectl/presenters/time_config.rb +86 -0
- data/lib/pvectl/presenters/top_container.rb +112 -0
- data/lib/pvectl/presenters/top_node.rb +115 -0
- data/lib/pvectl/presenters/top_presenter.rb +59 -0
- data/lib/pvectl/presenters/top_vm.rb +105 -0
- data/lib/pvectl/presenters/vm.rb +853 -0
- data/lib/pvectl/presenters/vm_operation_result.rb +109 -0
- data/lib/pvectl/presenters/volume.rb +136 -0
- data/lib/pvectl/presenters/volume_operation_result.rb +58 -0
- data/lib/pvectl/repositories/apt.rb +93 -0
- data/lib/pvectl/repositories/backup.rb +186 -0
- data/lib/pvectl/repositories/base.rb +110 -0
- data/lib/pvectl/repositories/capabilities.rb +96 -0
- data/lib/pvectl/repositories/container.rb +503 -0
- data/lib/pvectl/repositories/disk.rb +87 -0
- data/lib/pvectl/repositories/dns.rb +54 -0
- data/lib/pvectl/repositories/hosts.rb +63 -0
- data/lib/pvectl/repositories/journal.rb +23 -0
- data/lib/pvectl/repositories/node.rb +537 -0
- data/lib/pvectl/repositories/service.rb +139 -0
- data/lib/pvectl/repositories/snapshot.rb +133 -0
- data/lib/pvectl/repositories/storage.rb +302 -0
- data/lib/pvectl/repositories/subscription.rb +77 -0
- data/lib/pvectl/repositories/syslog.rb +25 -0
- data/lib/pvectl/repositories/task.rb +82 -0
- data/lib/pvectl/repositories/task_list.rb +30 -0
- data/lib/pvectl/repositories/task_log.rb +31 -0
- data/lib/pvectl/repositories/time_config.rb +53 -0
- data/lib/pvectl/repositories/vm.rb +616 -0
- data/lib/pvectl/repositories/volume.rb +306 -0
- data/lib/pvectl/selectors/base.rb +201 -0
- data/lib/pvectl/selectors/container.rb +116 -0
- data/lib/pvectl/selectors/disk.rb +59 -0
- data/lib/pvectl/selectors/vm.rb +116 -0
- data/lib/pvectl/selectors/volume.rb +59 -0
- data/lib/pvectl/services/backup.rb +209 -0
- data/lib/pvectl/services/clone_container.rb +260 -0
- data/lib/pvectl/services/clone_vm.rb +265 -0
- data/lib/pvectl/services/cloudinit.rb +96 -0
- data/lib/pvectl/services/console.rb +152 -0
- data/lib/pvectl/services/container_lifecycle.rb +124 -0
- data/lib/pvectl/services/create_container.rb +179 -0
- data/lib/pvectl/services/create_vm.rb +191 -0
- data/lib/pvectl/services/edit_container.rb +125 -0
- data/lib/pvectl/services/edit_dns.rb +159 -0
- data/lib/pvectl/services/edit_hosts.rb +78 -0
- data/lib/pvectl/services/edit_node.rb +147 -0
- data/lib/pvectl/services/edit_vm.rb +125 -0
- data/lib/pvectl/services/edit_volume.rb +224 -0
- data/lib/pvectl/services/get/resource_service.rb +98 -0
- data/lib/pvectl/services/move_disk.rb +132 -0
- data/lib/pvectl/services/pull_config.rb +94 -0
- data/lib/pvectl/services/push_config.rb +524 -0
- data/lib/pvectl/services/resize_volume.rb +253 -0
- data/lib/pvectl/services/resource_delete.rb +169 -0
- data/lib/pvectl/services/resource_migration.rb +170 -0
- data/lib/pvectl/services/sendkey.rb +108 -0
- data/lib/pvectl/services/service_lifecycle.rb +89 -0
- data/lib/pvectl/services/set_container.rb +128 -0
- data/lib/pvectl/services/set_node.rb +236 -0
- data/lib/pvectl/services/set_vm.rb +128 -0
- data/lib/pvectl/services/set_volume.rb +126 -0
- data/lib/pvectl/services/snapshot.rb +261 -0
- data/lib/pvectl/services/task_listing.rb +75 -0
- data/lib/pvectl/services/unlink_disk.rb +86 -0
- data/lib/pvectl/services/vm_lifecycle.rb +124 -0
- data/lib/pvectl/services/wakeonlan.rb +79 -0
- data/lib/pvectl/utils/resource_resolver.rb +80 -0
- data/lib/pvectl/version.rb +13 -0
- data/lib/pvectl/wizards/create_container.rb +105 -0
- data/lib/pvectl/wizards/create_vm.rb +98 -0
- data/lib/pvectl.rb +439 -0
- data/sig/external/gli.rbs +16 -0
- data/sig/external/proxmox_api.rbs +10 -0
- data/sig/pvectl/argv_preprocessor.rbs +53 -0
- data/sig/pvectl/cli.rbs +26 -0
- data/sig/pvectl/commands/apt.rbs +47 -0
- data/sig/pvectl/commands/clone_container.rbs +31 -0
- data/sig/pvectl/commands/clone_vm.rbs +33 -0
- data/sig/pvectl/commands/cloudinit/command.rbs +13 -0
- data/sig/pvectl/commands/cloudinit/dump.rbs +13 -0
- data/sig/pvectl/commands/cloudinit/pending.rbs +17 -0
- data/sig/pvectl/commands/cloudinit/regenerate.rbs +11 -0
- data/sig/pvectl/commands/config/command.rbs +9 -0
- data/sig/pvectl/commands/config/get_contexts.rbs +11 -0
- data/sig/pvectl/commands/config/set_cluster.rbs +11 -0
- data/sig/pvectl/commands/config/set_context.rbs +15 -0
- data/sig/pvectl/commands/config/set_credentials.rbs +15 -0
- data/sig/pvectl/commands/config/use_context.rbs +11 -0
- data/sig/pvectl/commands/config/view.rbs +11 -0
- data/sig/pvectl/commands/console.rbs +9 -0
- data/sig/pvectl/commands/console_ct.rbs +27 -0
- data/sig/pvectl/commands/console_vm.rbs +27 -0
- data/sig/pvectl/commands/container_lifecycle_command.rbs +25 -0
- data/sig/pvectl/commands/create_backup.rbs +29 -0
- data/sig/pvectl/commands/create_container.rbs +30 -0
- data/sig/pvectl/commands/create_resource_command.rbs +53 -0
- data/sig/pvectl/commands/create_snapshot.rbs +35 -0
- data/sig/pvectl/commands/create_vm.rbs +30 -0
- data/sig/pvectl/commands/delete_backup.rbs +25 -0
- data/sig/pvectl/commands/delete_command.rbs +45 -0
- data/sig/pvectl/commands/delete_container.rbs +11 -0
- data/sig/pvectl/commands/delete_snapshot.rbs +35 -0
- data/sig/pvectl/commands/delete_vm.rbs +13 -0
- data/sig/pvectl/commands/describe/command.rbs +27 -0
- data/sig/pvectl/commands/edit_container.rbs +17 -0
- data/sig/pvectl/commands/edit_dns.rbs +25 -0
- data/sig/pvectl/commands/edit_hosts.rbs +23 -0
- data/sig/pvectl/commands/edit_node.rbs +17 -0
- data/sig/pvectl/commands/edit_resource_command.rbs +35 -0
- data/sig/pvectl/commands/edit_vm.rbs +19 -0
- data/sig/pvectl/commands/edit_volume.rbs +24 -0
- data/sig/pvectl/commands/feature_command.rbs +43 -0
- data/sig/pvectl/commands/feature_container.rbs +10 -0
- data/sig/pvectl/commands/feature_vm.rbs +12 -0
- data/sig/pvectl/commands/get/command.rbs +42 -0
- data/sig/pvectl/commands/get/handlers/backups.rbs +23 -0
- data/sig/pvectl/commands/get/handlers/capabilities.rbs +29 -0
- data/sig/pvectl/commands/get/handlers/containers.rbs +35 -0
- data/sig/pvectl/commands/get/handlers/disks.rbs +27 -0
- data/sig/pvectl/commands/get/handlers/dns.rbs +25 -0
- data/sig/pvectl/commands/get/handlers/hosts.rbs +25 -0
- data/sig/pvectl/commands/get/handlers/nodes.rbs +33 -0
- data/sig/pvectl/commands/get/handlers/services.rbs +23 -0
- data/sig/pvectl/commands/get/handlers/snapshots.rbs +27 -0
- data/sig/pvectl/commands/get/handlers/storage.rbs +25 -0
- data/sig/pvectl/commands/get/handlers/subscription.rbs +25 -0
- data/sig/pvectl/commands/get/handlers/tasks.rbs +28 -0
- data/sig/pvectl/commands/get/handlers/templates.rbs +35 -0
- data/sig/pvectl/commands/get/handlers/time.rbs +29 -0
- data/sig/pvectl/commands/get/handlers/vms.rbs +35 -0
- data/sig/pvectl/commands/get/handlers/volume.rbs +27 -0
- data/sig/pvectl/commands/get/resource_handler.rbs +13 -0
- data/sig/pvectl/commands/get/resource_registry.rbs +8 -0
- data/sig/pvectl/commands/get/watch_loop.rbs +33 -0
- data/sig/pvectl/commands/irreversible_command.rbs +32 -0
- data/sig/pvectl/commands/logs/command.rbs +35 -0
- data/sig/pvectl/commands/logs/handlers/journal.rbs +21 -0
- data/sig/pvectl/commands/logs/handlers/syslog.rbs +21 -0
- data/sig/pvectl/commands/logs/handlers/task_detail.rbs +21 -0
- data/sig/pvectl/commands/logs/handlers/task_logs.rbs +35 -0
- data/sig/pvectl/commands/logs/resource_handler.rbs +11 -0
- data/sig/pvectl/commands/logs/resource_registry.rbs +8 -0
- data/sig/pvectl/commands/migrate_command.rbs +45 -0
- data/sig/pvectl/commands/migrate_container.rbs +11 -0
- data/sig/pvectl/commands/migrate_vm.rbs +13 -0
- data/sig/pvectl/commands/move_disk_command.rbs +43 -0
- data/sig/pvectl/commands/move_disk_container.rbs +11 -0
- data/sig/pvectl/commands/move_disk_vm.rbs +13 -0
- data/sig/pvectl/commands/ping.rbs +39 -0
- data/sig/pvectl/commands/pull.rbs +33 -0
- data/sig/pvectl/commands/push.rbs +32 -0
- data/sig/pvectl/commands/reset.rbs +11 -0
- data/sig/pvectl/commands/resource_lifecycle_command.rbs +55 -0
- data/sig/pvectl/commands/resource_registry.rbs +19 -0
- data/sig/pvectl/commands/restart.rbs +11 -0
- data/sig/pvectl/commands/restart_container.rbs +9 -0
- data/sig/pvectl/commands/restore_backup.rbs +27 -0
- data/sig/pvectl/commands/resume.rbs +11 -0
- data/sig/pvectl/commands/rollback_snapshot.rbs +31 -0
- data/sig/pvectl/commands/sendkey_vm.rbs +25 -0
- data/sig/pvectl/commands/service.rbs +38 -0
- data/sig/pvectl/commands/set_container.rbs +13 -0
- data/sig/pvectl/commands/set_node.rbs +13 -0
- data/sig/pvectl/commands/set_resource_command.rbs +25 -0
- data/sig/pvectl/commands/set_vm.rbs +15 -0
- data/sig/pvectl/commands/set_volume.rbs +24 -0
- data/sig/pvectl/commands/shared_config_parsers.rbs +19 -0
- data/sig/pvectl/commands/shared_flags.rbs +10 -0
- data/sig/pvectl/commands/shutdown.rbs +11 -0
- data/sig/pvectl/commands/shutdown_container.rbs +9 -0
- data/sig/pvectl/commands/start.rbs +11 -0
- data/sig/pvectl/commands/start_container.rbs +9 -0
- data/sig/pvectl/commands/stop.rbs +11 -0
- data/sig/pvectl/commands/stop_container.rbs +9 -0
- data/sig/pvectl/commands/suspend.rbs +11 -0
- data/sig/pvectl/commands/template_command.rbs +21 -0
- data/sig/pvectl/commands/template_container.rbs +10 -0
- data/sig/pvectl/commands/template_vm.rbs +12 -0
- data/sig/pvectl/commands/top/command.rbs +31 -0
- data/sig/pvectl/commands/top/handlers/containers.rbs +21 -0
- data/sig/pvectl/commands/top/handlers/nodes.rbs +21 -0
- data/sig/pvectl/commands/top/handlers/vms.rbs +21 -0
- data/sig/pvectl/commands/top/resource_handler.rbs +11 -0
- data/sig/pvectl/commands/top/resource_registry.rbs +8 -0
- data/sig/pvectl/commands/unlink_disk_vm.rbs +27 -0
- data/sig/pvectl/commands/vm_lifecycle_command.rbs +25 -0
- data/sig/pvectl/commands/wakeonlan_node.rbs +21 -0
- data/sig/pvectl/config/errors.rbs +24 -0
- data/sig/pvectl/config/models/cluster.rbs +39 -0
- data/sig/pvectl/config/models/context.rbs +23 -0
- data/sig/pvectl/config/models/resolved_config.rbs +51 -0
- data/sig/pvectl/config/models/user.rbs +31 -0
- data/sig/pvectl/config/provider.rbs +40 -0
- data/sig/pvectl/config/service.rbs +65 -0
- data/sig/pvectl/config/store.rbs +14 -0
- data/sig/pvectl/config/wizard.rbs +48 -0
- data/sig/pvectl/config_serializer.rbs +121 -0
- data/sig/pvectl/connection/retry_handler.rbs +31 -0
- data/sig/pvectl/connection.rbs +35 -0
- data/sig/pvectl/console/terminal_session.rbs +63 -0
- data/sig/pvectl/editor_session.rbs +33 -0
- data/sig/pvectl/exit_codes.rbs +19 -0
- data/sig/pvectl/formatters/base.rbs +13 -0
- data/sig/pvectl/formatters/color_support.rbs +13 -0
- data/sig/pvectl/formatters/json.rbs +7 -0
- data/sig/pvectl/formatters/output_helper.rbs +9 -0
- data/sig/pvectl/formatters/registry.rbs +13 -0
- data/sig/pvectl/formatters/table.rbs +25 -0
- data/sig/pvectl/formatters/wide.rbs +15 -0
- data/sig/pvectl/formatters/yaml.rbs +7 -0
- data/sig/pvectl/manifest_serializer.rbs +18 -0
- data/sig/pvectl/models/apt_package.rbs +26 -0
- data/sig/pvectl/models/backup.rbs +31 -0
- data/sig/pvectl/models/base.rbs +11 -0
- data/sig/pvectl/models/capability.rbs +16 -0
- data/sig/pvectl/models/container.rbs +44 -0
- data/sig/pvectl/models/container_operation_result.rbs +9 -0
- data/sig/pvectl/models/dns_config.rbs +15 -0
- data/sig/pvectl/models/hosts_file.rbs +13 -0
- data/sig/pvectl/models/journal_entry.rbs +10 -0
- data/sig/pvectl/models/network_interface.rbs +20 -0
- data/sig/pvectl/models/node.rbs +47 -0
- data/sig/pvectl/models/node_operation_result.rbs +12 -0
- data/sig/pvectl/models/operation_result.rbs +21 -0
- data/sig/pvectl/models/physical_disk.rbs +35 -0
- data/sig/pvectl/models/service.rbs +18 -0
- data/sig/pvectl/models/snapshot.rbs +21 -0
- data/sig/pvectl/models/snapshot_description.rbs +18 -0
- data/sig/pvectl/models/storage.rbs +39 -0
- data/sig/pvectl/models/subscription.rbs +24 -0
- data/sig/pvectl/models/syslog_entry.rbs +10 -0
- data/sig/pvectl/models/task.rbs +22 -0
- data/sig/pvectl/models/task_entry.rbs +24 -0
- data/sig/pvectl/models/task_log_line.rbs +10 -0
- data/sig/pvectl/models/time_config.rbs +12 -0
- data/sig/pvectl/models/vm.rbs +32 -0
- data/sig/pvectl/models/vm_operation_result.rbs +9 -0
- data/sig/pvectl/models/volume.rbs +29 -0
- data/sig/pvectl/models/volume_operation_result.rbs +9 -0
- data/sig/pvectl/parsers/cloud_init_config.rbs +15 -0
- data/sig/pvectl/parsers/disk_config.rbs +19 -0
- data/sig/pvectl/parsers/lxc_mount_config.rbs +19 -0
- data/sig/pvectl/parsers/lxc_net_config.rbs +19 -0
- data/sig/pvectl/parsers/net_config.rbs +19 -0
- data/sig/pvectl/parsers/smart_text.rbs +7 -0
- data/sig/pvectl/plugin_loader.rbs +25 -0
- data/sig/pvectl/presenters/apt_package.rbs +19 -0
- data/sig/pvectl/presenters/backup.rbs +25 -0
- data/sig/pvectl/presenters/base.rbs +41 -0
- data/sig/pvectl/presenters/capability.rbs +19 -0
- data/sig/pvectl/presenters/config/context.rbs +17 -0
- data/sig/pvectl/presenters/container.rbs +78 -0
- data/sig/pvectl/presenters/container_operation_result.rbs +19 -0
- data/sig/pvectl/presenters/disk.rbs +31 -0
- data/sig/pvectl/presenters/dns_config.rbs +13 -0
- data/sig/pvectl/presenters/hosts_file.rbs +13 -0
- data/sig/pvectl/presenters/journal_entry.rbs +11 -0
- data/sig/pvectl/presenters/node.rbs +118 -0
- data/sig/pvectl/presenters/node_operation_result.rbs +11 -0
- data/sig/pvectl/presenters/operation_result.rbs +17 -0
- data/sig/pvectl/presenters/service.rbs +15 -0
- data/sig/pvectl/presenters/snapshot.rbs +35 -0
- data/sig/pvectl/presenters/snapshot_operation_result.rbs +27 -0
- data/sig/pvectl/presenters/storage.rbs +59 -0
- data/sig/pvectl/presenters/subscription.rbs +36 -0
- data/sig/pvectl/presenters/syslog_entry.rbs +11 -0
- data/sig/pvectl/presenters/task_entry.rbs +21 -0
- data/sig/pvectl/presenters/task_log_line.rbs +11 -0
- data/sig/pvectl/presenters/template.rbs +15 -0
- data/sig/pvectl/presenters/time_config.rbs +19 -0
- data/sig/pvectl/presenters/top_container.rbs +17 -0
- data/sig/pvectl/presenters/top_node.rbs +17 -0
- data/sig/pvectl/presenters/top_presenter.rbs +13 -0
- data/sig/pvectl/presenters/top_vm.rbs +17 -0
- data/sig/pvectl/presenters/vm.rbs +91 -0
- data/sig/pvectl/presenters/vm_operation_result.rbs +19 -0
- data/sig/pvectl/presenters/volume.rbs +23 -0
- data/sig/pvectl/presenters/volume_operation_result.rbs +11 -0
- data/sig/pvectl/repositories/apt.rbs +17 -0
- data/sig/pvectl/repositories/backup.rbs +27 -0
- data/sig/pvectl/repositories/base.rbs +23 -0
- data/sig/pvectl/repositories/capabilities.rbs +20 -0
- data/sig/pvectl/repositories/container.rbs +63 -0
- data/sig/pvectl/repositories/disk.rbs +17 -0
- data/sig/pvectl/repositories/dns.rbs +13 -0
- data/sig/pvectl/repositories/hosts.rbs +13 -0
- data/sig/pvectl/repositories/journal.rbs +7 -0
- data/sig/pvectl/repositories/node.rbs +68 -0
- data/sig/pvectl/repositories/service.rbs +27 -0
- data/sig/pvectl/repositories/snapshot.rbs +19 -0
- data/sig/pvectl/repositories/storage.rbs +37 -0
- data/sig/pvectl/repositories/subscription.rbs +17 -0
- data/sig/pvectl/repositories/syslog.rbs +7 -0
- data/sig/pvectl/repositories/task.rbs +19 -0
- data/sig/pvectl/repositories/task_list.rbs +7 -0
- data/sig/pvectl/repositories/task_log.rbs +11 -0
- data/sig/pvectl/repositories/time_config.rbs +13 -0
- data/sig/pvectl/repositories/vm.rbs +85 -0
- data/sig/pvectl/repositories/volume.rbs +43 -0
- data/sig/pvectl/selectors/base.rbs +37 -0
- data/sig/pvectl/selectors/container.rbs +19 -0
- data/sig/pvectl/selectors/disk.rbs +13 -0
- data/sig/pvectl/selectors/vm.rbs +19 -0
- data/sig/pvectl/selectors/volume.rbs +13 -0
- data/sig/pvectl/services/backup.rbs +27 -0
- data/sig/pvectl/services/clone_container.rbs +35 -0
- data/sig/pvectl/services/clone_vm.rbs +35 -0
- data/sig/pvectl/services/cloudinit.rbs +19 -0
- data/sig/pvectl/services/console.rbs +23 -0
- data/sig/pvectl/services/container_lifecycle.rbs +26 -0
- data/sig/pvectl/services/create_container.rbs +64 -0
- data/sig/pvectl/services/create_vm.rbs +72 -0
- data/sig/pvectl/services/edit_container.rbs +17 -0
- data/sig/pvectl/services/edit_dns.rbs +23 -0
- data/sig/pvectl/services/edit_hosts.rbs +13 -0
- data/sig/pvectl/services/edit_node.rbs +21 -0
- data/sig/pvectl/services/edit_vm.rbs +17 -0
- data/sig/pvectl/services/edit_volume.rbs +18 -0
- data/sig/pvectl/services/get/resource_service.rbs +23 -0
- data/sig/pvectl/services/move_disk.rbs +21 -0
- data/sig/pvectl/services/pull_config.rbs +18 -0
- data/sig/pvectl/services/push_config.rbs +37 -0
- data/sig/pvectl/services/resize_volume.rbs +47 -0
- data/sig/pvectl/services/resource_delete.rbs +27 -0
- data/sig/pvectl/services/resource_migration.rbs +29 -0
- data/sig/pvectl/services/sendkey.rbs +19 -0
- data/sig/pvectl/services/service_lifecycle.rbs +17 -0
- data/sig/pvectl/services/set_container.rbs +14 -0
- data/sig/pvectl/services/set_node.rbs +23 -0
- data/sig/pvectl/services/set_vm.rbs +14 -0
- data/sig/pvectl/services/set_volume.rbs +12 -0
- data/sig/pvectl/services/snapshot.rbs +35 -0
- data/sig/pvectl/services/task_listing.rbs +13 -0
- data/sig/pvectl/services/unlink_disk.rbs +17 -0
- data/sig/pvectl/services/vm_lifecycle.rbs +26 -0
- data/sig/pvectl/services/wakeonlan.rbs +17 -0
- data/sig/pvectl/utils/resource_resolver.rbs +17 -0
- data/sig/pvectl/wizards/create_container.rbs +21 -0
- data/sig/pvectl/wizards/create_vm.rbs +21 -0
- data/sig/pvectl.rbs +9 -0
- metadata +675 -0
data/CLAUDE.md
ADDED
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
# CLAUDE.md
|
|
2
|
+
|
|
3
|
+
Guidelines for Claude Code when working with this repository.
|
|
4
|
+
|
|
5
|
+
## Project Overview
|
|
6
|
+
|
|
7
|
+
**pvectl** is a Ruby CLI gem for managing Proxmox clusters with kubectl-like syntax. It wraps the Proxmox API, exposing familiar commands for VM/container management, node operations, storage, backups, and snapshots.
|
|
8
|
+
|
|
9
|
+
## Developer Commands
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
bin/setup # Install dependencies
|
|
13
|
+
rake test # Run tests (prefer /test-run)
|
|
14
|
+
bin/console # Interactive console
|
|
15
|
+
bundle exec exe/pvectl # Run CLI locally
|
|
16
|
+
bundle exec rake release # Release new version
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
**Ruby:** 3.3.0 (`.ruby-version`)
|
|
20
|
+
|
|
21
|
+
## Architecture
|
|
22
|
+
|
|
23
|
+
### Layer Diagram
|
|
24
|
+
|
|
25
|
+
Two data paths depending on operation type:
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
┌──────────────────────────────────┐
|
|
29
|
+
│ CLI Layer │
|
|
30
|
+
│ GLI::App (cli.rb) → PluginLoader │
|
|
31
|
+
│ → Commands (.register) │
|
|
32
|
+
└────────┬─────────────┬───────────┘
|
|
33
|
+
│ │
|
|
34
|
+
read-only │ │ mutating
|
|
35
|
+
(get,top,logs, │ │ (lifecycle,delete,
|
|
36
|
+
describe) │ │ clone,create,edit,
|
|
37
|
+
▼ ▼ migrate)
|
|
38
|
+
┌──────────┐ ┌─────────────────┐
|
|
39
|
+
│ Handlers │ │ Services │
|
|
40
|
+
│ +Registry│ │ (orchestration) │
|
|
41
|
+
└────┬─────┘ └───────┬─────────┘
|
|
42
|
+
│ │
|
|
43
|
+
└───────┬────────┘
|
|
44
|
+
▼
|
|
45
|
+
┌──────────────────────┐
|
|
46
|
+
│ Repositories │
|
|
47
|
+
│ → Models → Parsers │
|
|
48
|
+
│ → Connection │
|
|
49
|
+
└──────────┬───────────┘
|
|
50
|
+
▼
|
|
51
|
+
Proxmox API
|
|
52
|
+
|
|
53
|
+
Presentation (both paths):
|
|
54
|
+
Models → Presenters → Formatters → Output
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Module Layers (`lib/pvectl/`)
|
|
58
|
+
|
|
59
|
+
| Directory | Role |
|
|
60
|
+
|-----------|------|
|
|
61
|
+
| `commands/` | Self-registering command classes (`.register(cli)`), Template Method hierarchies, SharedFlags |
|
|
62
|
+
| `commands/*/handlers/` | Per-resource handlers for read-only commands (dispatched via Registry) |
|
|
63
|
+
| `services/` | Orchestration of complex operations (lifecycle, CRUD, migration, resource fetching) |
|
|
64
|
+
| `repositories/` | Proxmox API encapsulation, conversion to domain models |
|
|
65
|
+
| `models/` | Domain models (value objects) |
|
|
66
|
+
| `presenters/` | Column definitions and formatting per resource type |
|
|
67
|
+
| `formatters/` | Output strategies (table, json, yaml, wide) |
|
|
68
|
+
| `parsers/` | Proxmox config parsers (net, disk, cloud-init, LXC mount) |
|
|
69
|
+
| `selectors/` | Resource filtering by attributes (`-l status=running,tags=prod`) |
|
|
70
|
+
| `wizards/` | Interactive resource creators (step-by-step prompts) |
|
|
71
|
+
| `utils/` | Helper utilities (resource resolver) |
|
|
72
|
+
| `config/` | Loading, validation, saving multi-context configuration |
|
|
73
|
+
| `connection/` | API client with retry (exp. backoff) and timeout |
|
|
74
|
+
| `console/` | Interactive terminal session (WebSocket I/O, xtermjs protocol) |
|
|
75
|
+
| `plugin_loader.rb` | Command discovery and loading (built-in + gem/directory plugins) |
|
|
76
|
+
|
|
77
|
+
### Design Patterns
|
|
78
|
+
|
|
79
|
+
| Pattern | Usage |
|
|
80
|
+
|---------|-------|
|
|
81
|
+
| **Repository** | API encapsulation, conversion to domain models |
|
|
82
|
+
| **Presenter** | Column definitions and formatting per resource type |
|
|
83
|
+
| **Strategy** | Formatters (Table, JSON, YAML, Wide) |
|
|
84
|
+
| **Registry** | Base registry mapping resource name → handler; each read-only command inherits its own copy |
|
|
85
|
+
| **Handler** | Per-resource handlers in read-only commands, dispatched via Registry |
|
|
86
|
+
| **Template Method** | Base module defines flow, specializations (VM/Container) implement hooks — used in lifecycle, delete, create, edit, migrate |
|
|
87
|
+
| **Dependency Injection** | Repositories and services injected via constructor (testable with mocks) |
|
|
88
|
+
| **Self-Registration** | Each command class implements `.register(cli)` to define its flags/desc/action with GLI |
|
|
89
|
+
| **Plugin Discovery** | `PluginLoader` discovers commands from built-ins, gem plugins (`pvectl-plugin-*`), and directory plugins (`~/.pvectl/plugins/`) |
|
|
90
|
+
|
|
91
|
+
### Hybrid Module Include Pattern
|
|
92
|
+
|
|
93
|
+
Pattern used in Template Method specializations (VM/Container) for correct MRO with ClassMethods propagation:
|
|
94
|
+
|
|
95
|
+
```ruby
|
|
96
|
+
module VmSpecialization
|
|
97
|
+
include BaseTemplate # MRO: Specialization BEFORE Base in ancestors
|
|
98
|
+
|
|
99
|
+
def self.included(base)
|
|
100
|
+
base.extend(BaseTemplate::ClassMethods) # propagate class methods
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
**Note:** `self.included(base) { base.include(Base...) }` is **incorrect** — it places Base BEFORE Specialization in MRO, so template methods (NotImplementedError) mask implementations.
|
|
106
|
+
|
|
107
|
+
### Typed OperationResult Pattern
|
|
108
|
+
|
|
109
|
+
Mutating operations return a typed `OperationResult` with a subclass per resource type. Each type has a dedicated Presenter with resource-specific columns (e.g., VMID vs CTID). New resource type = new subclass + presenter.
|
|
110
|
+
|
|
111
|
+
## Configuration
|
|
112
|
+
|
|
113
|
+
### Config File Format (`~/.pvectl/config`)
|
|
114
|
+
|
|
115
|
+
```yaml
|
|
116
|
+
apiVersion: pvectl/v1
|
|
117
|
+
kind: Config
|
|
118
|
+
|
|
119
|
+
clusters:
|
|
120
|
+
- name: production
|
|
121
|
+
cluster:
|
|
122
|
+
server: https://pve1.example.com:8006
|
|
123
|
+
insecure-skip-tls-verify: false
|
|
124
|
+
|
|
125
|
+
users:
|
|
126
|
+
- name: admin-prod
|
|
127
|
+
user:
|
|
128
|
+
token-id: root@pam!pvectl
|
|
129
|
+
token-secret: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
130
|
+
|
|
131
|
+
contexts:
|
|
132
|
+
- name: prod
|
|
133
|
+
context:
|
|
134
|
+
cluster: production
|
|
135
|
+
user: admin-prod
|
|
136
|
+
default-node: pve1
|
|
137
|
+
|
|
138
|
+
current-context: prod
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
### Environment Variables (higher priority than config file)
|
|
142
|
+
|
|
143
|
+
| Variable | Description |
|
|
144
|
+
|----------|-------------|
|
|
145
|
+
| `PROXMOX_HOST` | Server URL |
|
|
146
|
+
| `PROXMOX_TOKEN_ID` | API token ID |
|
|
147
|
+
| `PROXMOX_TOKEN_SECRET` | Token secret |
|
|
148
|
+
| `PROXMOX_USER` / `PROXMOX_PASSWORD` | Alternative to token |
|
|
149
|
+
| `PROXMOX_VERIFY_SSL` | SSL verification |
|
|
150
|
+
| `PROXMOX_TIMEOUT` | Timeout (seconds) |
|
|
151
|
+
| `PVECTL_CONTEXT` | Context override |
|
|
152
|
+
| `PVECTL_CONFIG` | Alternative config path |
|
|
153
|
+
|
|
154
|
+
### Loading Hierarchy
|
|
155
|
+
|
|
156
|
+
```
|
|
157
|
+
Built-in defaults → Config file → ENV variables → CLI flags
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
## Conventions
|
|
161
|
+
|
|
162
|
+
### CLI (kubectl style)
|
|
163
|
+
|
|
164
|
+
Commands grouped by type:
|
|
165
|
+
|
|
166
|
+
| Group | Commands | Pattern |
|
|
167
|
+
|-------|----------|---------|
|
|
168
|
+
| **Read-only** | `get`, `describe`, `top`, `logs` | Handler + Registry |
|
|
169
|
+
| **Lifecycle** | `start`, `stop`, `shutdown`, `restart`, `reset`, `suspend`, `resume` | Template Method (VM/Container) |
|
|
170
|
+
| **CRUD (VM/CT)** | `create`, `delete`, `edit`, `migrate` | Template Method (VM/Container) |
|
|
171
|
+
| **Snapshot/Backup** | `create`/`delete` snapshot/backup, `rollback`, `restore` | Dedicated commands |
|
|
172
|
+
| **Standalone** | `clone`, `ping` | Dedicated commands per resource type |
|
|
173
|
+
| **Config** | `config <subcommand>` | Self-registration (`register_subcommand`) |
|
|
174
|
+
|
|
175
|
+
Syntax: `pvectl <command> <resource_type> [id...] [--flags]`
|
|
176
|
+
|
|
177
|
+
### Exit Codes
|
|
178
|
+
|
|
179
|
+
| Code | Meaning |
|
|
180
|
+
|------|---------|
|
|
181
|
+
| 0 | Success |
|
|
182
|
+
| 1 | General error |
|
|
183
|
+
| 2 | CLI usage error |
|
|
184
|
+
| 3 | Configuration error |
|
|
185
|
+
| 4 | API connection error |
|
|
186
|
+
| 5 | Resource not found |
|
|
187
|
+
| 6 | Permission denied |
|
|
188
|
+
| 130 | Interrupted (Ctrl+C) |
|
|
189
|
+
|
|
190
|
+
### Testing
|
|
191
|
+
|
|
192
|
+
Use `/test-run` instead of `rake test` directly — provides intelligent error analysis.
|
|
193
|
+
|
|
194
|
+
**Structure:** `test/unit/` mirrors `lib/pvectl/`, convention: `<class>_test.rb`
|
|
195
|
+
|
|
196
|
+
### Ruby Code Style
|
|
197
|
+
|
|
198
|
+
Follow the [Ruby Style Guide](https://rubystyle.guide). Write **idiomatic Ruby** — leverage the language's unique features (blocks, iterators, `attr_*`, `?`/`!`/`=` suffixes), don't translate patterns from other languages.
|
|
199
|
+
|
|
200
|
+
### Code Documentation (RDoc)
|
|
201
|
+
|
|
202
|
+
Required for classes, modules, and public methods:
|
|
203
|
+
- `@param`, `@return`, `@raise`, `@example`
|
|
204
|
+
|
|
205
|
+
## MCP Servers
|
|
206
|
+
|
|
207
|
+
| Server | Libraries (libraryId) |
|
|
208
|
+
|--------|------------------------|
|
|
209
|
+
| `context7` | `/davetron5000/gli`, `/piotrmurach/tty-table`, `/minitest/minitest`, `/L-Eugene/proxmox-api` |
|
|
210
|
+
|
|
211
|
+
**Configuration:** `.mcp.json`
|
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
+
nationality, personal appearance, race, caste, color, religion, or sexual
|
|
10
|
+
identity and orientation.
|
|
11
|
+
|
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
+
diverse, inclusive, and healthy community.
|
|
14
|
+
|
|
15
|
+
## Our Standards
|
|
16
|
+
|
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
|
18
|
+
community include:
|
|
19
|
+
|
|
20
|
+
* Demonstrating empathy and kindness toward other people
|
|
21
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
|
22
|
+
* Giving and gracefully accepting constructive feedback
|
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
24
|
+
and learning from the experience
|
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the overall
|
|
26
|
+
community
|
|
27
|
+
|
|
28
|
+
Examples of unacceptable behavior include:
|
|
29
|
+
|
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or advances of
|
|
31
|
+
any kind
|
|
32
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
33
|
+
* Public or private harassment
|
|
34
|
+
* Publishing others' private information, such as a physical or email address,
|
|
35
|
+
without their explicit permission
|
|
36
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
37
|
+
professional setting
|
|
38
|
+
|
|
39
|
+
## Enforcement Responsibilities
|
|
40
|
+
|
|
41
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
44
|
+
or harmful.
|
|
45
|
+
|
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
49
|
+
decisions when appropriate.
|
|
50
|
+
|
|
51
|
+
## Scope
|
|
52
|
+
|
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
|
54
|
+
an individual is officially representing the community in public spaces.
|
|
55
|
+
Examples of representing our community include using an official email address,
|
|
56
|
+
posting via an official social media account, or acting as an appointed
|
|
57
|
+
representative at an online or offline event.
|
|
58
|
+
|
|
59
|
+
## Enforcement
|
|
60
|
+
|
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
62
|
+
reported to the community leaders responsible for enforcement at
|
|
63
|
+
[INSERT CONTACT METHOD].
|
|
64
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
|
65
|
+
|
|
66
|
+
All community leaders are obligated to respect the privacy and security of the
|
|
67
|
+
reporter of any incident.
|
|
68
|
+
|
|
69
|
+
## Enforcement Guidelines
|
|
70
|
+
|
|
71
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
|
72
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
|
73
|
+
|
|
74
|
+
### 1. Correction
|
|
75
|
+
|
|
76
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
77
|
+
unprofessional or unwelcome in the community.
|
|
78
|
+
|
|
79
|
+
**Consequence**: A private, written warning from community leaders, providing
|
|
80
|
+
clarity around the nature of the violation and an explanation of why the
|
|
81
|
+
behavior was inappropriate. A public apology may be requested.
|
|
82
|
+
|
|
83
|
+
### 2. Warning
|
|
84
|
+
|
|
85
|
+
**Community Impact**: A violation through a single incident or series of
|
|
86
|
+
actions.
|
|
87
|
+
|
|
88
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
|
89
|
+
interaction with the people involved, including unsolicited interaction with
|
|
90
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
|
91
|
+
includes avoiding interactions in community spaces as well as external channels
|
|
92
|
+
like social media. Violating these terms may lead to a temporary or permanent
|
|
93
|
+
ban.
|
|
94
|
+
|
|
95
|
+
### 3. Temporary Ban
|
|
96
|
+
|
|
97
|
+
**Community Impact**: A serious violation of community standards, including
|
|
98
|
+
sustained inappropriate behavior.
|
|
99
|
+
|
|
100
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
|
101
|
+
communication with the community for a specified period of time. No public or
|
|
102
|
+
private interaction with the people involved, including unsolicited interaction
|
|
103
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
|
104
|
+
Violating these terms may lead to a permanent ban.
|
|
105
|
+
|
|
106
|
+
### 4. Permanent Ban
|
|
107
|
+
|
|
108
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
|
109
|
+
standards, including sustained inappropriate behavior, harassment of an
|
|
110
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
|
111
|
+
|
|
112
|
+
**Consequence**: A permanent ban from any sort of public interaction within the
|
|
113
|
+
community.
|
|
114
|
+
|
|
115
|
+
## Attribution
|
|
116
|
+
|
|
117
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
118
|
+
version 2.1, available at
|
|
119
|
+
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
|
120
|
+
|
|
121
|
+
Community Impact Guidelines were inspired by
|
|
122
|
+
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
|
123
|
+
|
|
124
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
|
125
|
+
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
|
|
126
|
+
[https://www.contributor-covenant.org/translations][translations].
|
|
127
|
+
|
|
128
|
+
[homepage]: https://www.contributor-covenant.org
|
|
129
|
+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
|
130
|
+
[Mozilla CoC]: https://github.com/mozilla/diversity
|
|
131
|
+
[FAQ]: https://www.contributor-covenant.org/faq
|
|
132
|
+
[translations]: https://www.contributor-covenant.org/translations
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Piotr Wojcieszonek
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
# pvectl
|
|
2
|
+
|
|
3
|
+
A command-line tool for managing Proxmox clusters with kubectl-like syntax.
|
|
4
|
+
|
|
5
|
+
**pvectl** wraps the Proxmox API as a Ruby gem, providing familiar commands for managing VMs, containers, nodes, storage, backups, and snapshots from the terminal.
|
|
6
|
+
|
|
7
|
+
> **Note:** This project is in active development. Some features may not yet be fully stable.
|
|
8
|
+
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- **kubectl-like syntax** — familiar commands: `get`, `describe`, `top`, `logs`
|
|
12
|
+
- **Multi-resource management** — VMs, containers, nodes, storage, snapshots, backups
|
|
13
|
+
- **Batch operations** — act on multiple resources with selectors: `-l status=running`
|
|
14
|
+
- **Multiple output formats** — table, wide, JSON, YAML
|
|
15
|
+
- **Watch mode** — auto-refreshing resource lists
|
|
16
|
+
- **Interactive wizards** — guided VM/container creation
|
|
17
|
+
- **Console access** — interactive terminal sessions via WebSocket
|
|
18
|
+
- **Multi-cluster contexts** — kubeconfig-style context switching
|
|
19
|
+
- **Plugin system** — extend with gem-based or directory-based plugins
|
|
20
|
+
- **Template management** — convert VMs/containers to templates, linked cloning
|
|
21
|
+
|
|
22
|
+
## Installation
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
gem install pvectl
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or add to your Gemfile:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
bundle add pvectl
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
**Requirements:** Ruby >= 3.0.0
|
|
35
|
+
|
|
36
|
+
## Quick Start
|
|
37
|
+
|
|
38
|
+
On first run, pvectl launches an interactive configuration wizard:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
$ pvectl get nodes
|
|
42
|
+
Proxmox server URL (e.g., https://pve.example.com:8006): https://pve.example.com:8006
|
|
43
|
+
Verify SSL certificate? (y/n) y
|
|
44
|
+
Authentication method:
|
|
45
|
+
1. API Token (recommended)
|
|
46
|
+
2. Username/Password
|
|
47
|
+
Enter number: 1
|
|
48
|
+
Token ID (e.g., root@pam!tokenid): root@pam!pvectl
|
|
49
|
+
Token Secret: ********
|
|
50
|
+
Context name: [default] production
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Once configured, explore your cluster:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
pvectl get nodes # List cluster nodes
|
|
57
|
+
pvectl get vms # List all VMs
|
|
58
|
+
pvectl get vms -o wide # Extended columns
|
|
59
|
+
pvectl get subscription # Show Proxmox subscription per node (key masked)
|
|
60
|
+
pvectl describe vm 100 # Detailed VM info
|
|
61
|
+
pvectl top nodes # Resource usage
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Commands
|
|
65
|
+
|
|
66
|
+
| Command | Description |
|
|
67
|
+
|---------|-------------|
|
|
68
|
+
| `get` | List resources (nodes, VMs, containers, storage, disks, volumes, snapshots, backups, tasks, dns, services, hosts, node-capabilities, subscription) |
|
|
69
|
+
| `describe` | Show detailed information about a resource (nodes, VMs, containers, storage, disks, volumes, snapshots) |
|
|
70
|
+
| `top` | Display resource usage metrics (CPU, memory, disk) |
|
|
71
|
+
| `logs` | Show logs and task history (syslog, journal, task detail) |
|
|
72
|
+
| `start` `stop` `shutdown` `restart` | Lifecycle management |
|
|
73
|
+
| `create` | Create VMs, containers, snapshots, or backups |
|
|
74
|
+
| `delete` | Delete resources |
|
|
75
|
+
| `clone` | Clone VMs or containers with optional config changes |
|
|
76
|
+
| `migrate` | Migrate resources between nodes (supports live migration) |
|
|
77
|
+
| `move disk` | Move VM disk / container volume between storages on the same node |
|
|
78
|
+
| `feature` | Query whether a feature (clone/snapshot/copy) is available for a VM/CT |
|
|
79
|
+
| `edit` | Edit resource configuration in $EDITOR (vm, container, node, volume, dns, hosts) |
|
|
80
|
+
| `set` | Set resource properties non-interactively with key=value pairs |
|
|
81
|
+
| `pull` | Export resource configuration as kubectl-like YAML manifests |
|
|
82
|
+
| `push` | Apply YAML manifests to cluster (create or update resources) |
|
|
83
|
+
| `template` | Convert VM/container to template |
|
|
84
|
+
| `unlink` | Unlink disk(s) from a VM (keep volume as `unused[n]` or delete with `--force`) |
|
|
85
|
+
| `rollback` | Rollback to a snapshot |
|
|
86
|
+
| `restore` | Restore from a backup |
|
|
87
|
+
| `console` | Interactive terminal session |
|
|
88
|
+
| `service` | Manage systemd services on Proxmox nodes (start, stop, restart, reload) |
|
|
89
|
+
| `apt` | Manage APT packages on Proxmox nodes (list, update, changelog, versions) |
|
|
90
|
+
| `cloudinit` | Manage cloud-init for VMs (`regenerate`, `pending`, `dump`) |
|
|
91
|
+
| `sendkey` | Send a QEMU monitor key event to a VM (e.g., `ctrl-alt-delete`) |
|
|
92
|
+
| `ping` | Check cluster connectivity |
|
|
93
|
+
| `wakeonlan` | Send Wake-on-LAN packet to a cluster node |
|
|
94
|
+
| `config` | Manage configuration (contexts, clusters, credentials) |
|
|
95
|
+
|
|
96
|
+
Use `pvectl help <command>` for detailed usage, examples, and options.
|
|
97
|
+
|
|
98
|
+
## Documentation
|
|
99
|
+
|
|
100
|
+
Full documentation is available in the [GitHub Wiki](https://github.com/pwojcieszonek/pvectl/wiki):
|
|
101
|
+
|
|
102
|
+
- **[Getting Started](https://github.com/pwojcieszonek/pvectl/wiki/Getting-Started)** — installation, configuration, first commands
|
|
103
|
+
- **[Configuration Guide](https://github.com/pwojcieszonek/pvectl/wiki/Configuration-Guide)** — contexts, auth methods, environment variables
|
|
104
|
+
- **[Command Reference](https://github.com/pwojcieszonek/pvectl/wiki/Command-Reference)** — detailed docs for every command
|
|
105
|
+
- **[Selectors & Filtering](https://github.com/pwojcieszonek/pvectl/wiki/Selectors-and-Filtering)** — filter resources with `-l` flag
|
|
106
|
+
- **[Output Formats](https://github.com/pwojcieszonek/pvectl/wiki/Output-Formats)** — table, wide, JSON, YAML
|
|
107
|
+
- **[Workflows](https://github.com/pwojcieszonek/pvectl/wiki/Workflows)** — common scenarios and best practices
|
|
108
|
+
- **[Plugin Development](https://github.com/pwojcieszonek/pvectl/wiki/Plugin-Development)** — extend pvectl with custom commands
|
|
109
|
+
- **[Troubleshooting](https://github.com/pwojcieszonek/pvectl/wiki/Troubleshooting)** — common issues and solutions
|
|
110
|
+
|
|
111
|
+
## Configuration
|
|
112
|
+
|
|
113
|
+
Configuration file: `~/.pvectl/config` (kubeconfig-style YAML)
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
pvectl config view # Show current config
|
|
117
|
+
pvectl config get-contexts # List contexts
|
|
118
|
+
pvectl config use-context production # Switch context
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
See the [Configuration Guide](https://github.com/pwojcieszonek/pvectl/wiki/Configuration-Guide) for details on multi-cluster setup, authentication methods, and environment variables.
|
|
122
|
+
|
|
123
|
+
## Plugins
|
|
124
|
+
|
|
125
|
+
pvectl supports plugins via gems (`pvectl-plugin-*`) and local files (`~/.pvectl/plugins/*.rb`). See [Plugin Development](https://github.com/pwojcieszonek/pvectl/wiki/Plugin-Development).
|
|
126
|
+
|
|
127
|
+
## Development
|
|
128
|
+
|
|
129
|
+
```bash
|
|
130
|
+
git clone https://github.com/pwojcieszonek/pvectl.git
|
|
131
|
+
cd pvectl
|
|
132
|
+
bin/setup
|
|
133
|
+
rake test
|
|
134
|
+
bundle exec exe/pvectl
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
## Contributing
|
|
138
|
+
|
|
139
|
+
Bug reports and pull requests are welcome on GitHub at [https://github.com/pwojcieszonek/pvectl](https://github.com/pwojcieszonek/pvectl).
|
|
140
|
+
|
|
141
|
+
## License
|
|
142
|
+
|
|
143
|
+
Released under the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
# Downloads and parses Proxmox VE API documentation into per-section JSON files.
|
|
3
|
+
# Output: docs/proxmox-api/*.json
|
|
4
|
+
#
|
|
5
|
+
# Usage: bash docs/proxmox-api-update.sh
|
|
6
|
+
|
|
7
|
+
set -euo pipefail
|
|
8
|
+
|
|
9
|
+
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
10
|
+
PROJECT_DIR="$(dirname "$SCRIPT_DIR")"
|
|
11
|
+
OUTDIR="$PROJECT_DIR/docs/proxmox-api"
|
|
12
|
+
TMPFILE="$(mktemp)"
|
|
13
|
+
URL="https://raw.githubusercontent.com/proxmox/pve-docs/master/api-viewer/apidata.js"
|
|
14
|
+
|
|
15
|
+
echo "Downloading apidata.js..."
|
|
16
|
+
curl -sL "$URL" -o "$TMPFILE"
|
|
17
|
+
|
|
18
|
+
echo "Parsing and splitting into per-section JSON files..."
|
|
19
|
+
mkdir -p "$OUTDIR"
|
|
20
|
+
rm -f "$OUTDIR"/*.json
|
|
21
|
+
|
|
22
|
+
ruby -e '
|
|
23
|
+
require "json"
|
|
24
|
+
|
|
25
|
+
raw = File.read(ARGV[0])
|
|
26
|
+
json_str = raw.sub(/\Aconst apiSchema = /, "").sub(/;\s*\z/, "")
|
|
27
|
+
data = JSON.parse(json_str)
|
|
28
|
+
outdir = ARGV[1]
|
|
29
|
+
|
|
30
|
+
def flatten_endpoints(node, result = [])
|
|
31
|
+
info = node.dup
|
|
32
|
+
children = info.delete("children")
|
|
33
|
+
result << info unless info["path"].nil?
|
|
34
|
+
(children || []).each { |child| flatten_endpoints(child, result) }
|
|
35
|
+
result
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def split_by_subpath(entries, depth)
|
|
39
|
+
groups = {}
|
|
40
|
+
entries.each do |ep|
|
|
41
|
+
parts = ep["path"].split("/")
|
|
42
|
+
key = parts[depth] || "root"
|
|
43
|
+
groups[key] ||= []
|
|
44
|
+
groups[key] << ep
|
|
45
|
+
end
|
|
46
|
+
groups
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
data.each do |top|
|
|
50
|
+
path = top["path"].sub("/", "")
|
|
51
|
+
|
|
52
|
+
if path == "nodes"
|
|
53
|
+
# Split /nodes by resource type (qemu, lxc, storage, etc.)
|
|
54
|
+
(top["children"] || []).each do |node_child|
|
|
55
|
+
(node_child["children"] || []).each do |resource|
|
|
56
|
+
key = resource["path"].split("/")[3] || "root"
|
|
57
|
+
endpoints = flatten_endpoints(resource)
|
|
58
|
+
|
|
59
|
+
# Further split large sections (qemu, lxc, cluster) by sub-resource
|
|
60
|
+
if endpoints.size > 20
|
|
61
|
+
sub_groups = split_by_subpath(endpoints, 5)
|
|
62
|
+
sub_groups.each do |sub_key, sub_eps|
|
|
63
|
+
outfile = File.join(outdir, "nodes-#{key}-#{sub_key}.json")
|
|
64
|
+
File.write(outfile, JSON.pretty_generate(sub_eps))
|
|
65
|
+
end
|
|
66
|
+
else
|
|
67
|
+
outfile = File.join(outdir, "nodes-#{key}.json")
|
|
68
|
+
File.write(outfile, JSON.pretty_generate(endpoints))
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
# Root node info
|
|
72
|
+
info = node_child.dup
|
|
73
|
+
info.delete("children")
|
|
74
|
+
File.write(File.join(outdir, "nodes-root.json"), JSON.pretty_generate([info]))
|
|
75
|
+
end
|
|
76
|
+
elsif path == "cluster"
|
|
77
|
+
# Split /cluster by sub-section
|
|
78
|
+
endpoints = flatten_endpoints(top)
|
|
79
|
+
sub_groups = split_by_subpath(endpoints, 2)
|
|
80
|
+
sub_groups.each do |key, eps|
|
|
81
|
+
outfile = File.join(outdir, "cluster-#{key}.json")
|
|
82
|
+
File.write(outfile, JSON.pretty_generate(eps))
|
|
83
|
+
end
|
|
84
|
+
else
|
|
85
|
+
endpoints = flatten_endpoints(top)
|
|
86
|
+
outfile = File.join(outdir, "#{path}.json")
|
|
87
|
+
File.write(outfile, JSON.pretty_generate(endpoints))
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
' "$TMPFILE" "$OUTDIR"
|
|
91
|
+
|
|
92
|
+
rm -f "$TMPFILE"
|
|
93
|
+
|
|
94
|
+
count=$(ls -1 "$OUTDIR"/*.json 2>/dev/null | wc -l | tr -d ' ')
|
|
95
|
+
total_size=$(du -sh "$OUTDIR" | cut -f1)
|
|
96
|
+
echo "Done: $count files, $total_size total in $OUTDIR"
|