Skip to main content

Command-line client for CompShare GPU compute

Project description

CompShare CLI

在终端管理优云智算 GPU 实例、镜像、云盘、US3 挂载和团队资源。

  • 交互式创建实例,实时查询规格、库存和价格
  • 支持批量生命周期操作、等待状态和跨地域查询
  • 支持社区/自定义镜像、云盘、团队额度与账单
  • 默认中文帮助,可切换英文;所有命令支持 JSON 输出
  • 可通过 compshare ask 查询产品使用和计费知识
  • 可通过 compshare feedback 反馈 CLI 问题和建议
  • 基于官方 ucloud-sdk-python3

当前版本:0.3.0,要求 Python 3.9 或更高版本。

安装

pip install compshare-cli
compshare -h

本地开发:

git clone https://github.com/BennielAllan/compshare-cli.git
cd compshare-cli
python -m venv .venv
source .venv/bin/activate
python -m pip install -e '.[dev]'

Windows 激活虚拟环境时使用:

.\.venv\Scripts\Activate.ps1

配置

compshare config --name default

凭证保存在 ~/.config/compshare/config.json,支持多个配置:

compshare config list
compshare config use production
compshare --profile production instance list

也可以使用环境变量:

export COMPSHARE_PUBLIC_KEY='...'
export COMPSHARE_PRIVATE_KEY='...'

快速开始

# 查规格、库存和实例
compshare instance search --region cn-sh2 --zone cn-sh2-02
compshare instance search --region cn-sh2 --zone cn-sh2-02 \
  --gpu 4090 --image IMAGE_ID --available
compshare instance list --all

# 交互式创建
compshare instance create

# 批量操作与等待
compshare instance stop INSTANCE_1 INSTANCE_2
compshare instance start INSTANCE_1 INSTANCE_2
compshare instance wait INSTANCE_1 INSTANCE_2 --state Running

# SSH
compshare instance ssh INSTANCE_ID
# 默认自动填写 API 返回的密码;需要手动输入时可关闭
compshare instance ssh INSTANCE_ID --no-auto-password
# 自动登录后执行远程命令;远程参数用 -- 与 CLI 选项分隔
compshare instance ssh INSTANCE_ID -- nvidia-smi --query-gpu=name
compshare instance ssh INSTANCE_ID -- 'cd /workspace && python train.py'
# 上传本地文件或目录,目录会自动递归复制
compshare instance scp INSTANCE_ID ./model.bin /workspace/model.bin
compshare instance scp INSTANCE_ID ./dataset /workspace/dataset

# 产品问答
compshare ask "按量实例关机以后,云硬盘还收费吗?"

自动化创建示例:

compshare instance create \
  --region cn-sh2 \
  --zone cn-sh2-02 \
  --gpu 4090 \
  --count 1 \
  --cpu 16 \
  --memory 64GiB \
  --image IMAGE_ID \
  --disk 100GiB \
  --charge Postpay \
  --max-price 20 \
  --yes

使用 --dry-run 只检查库存、价格和请求,不创建资源。

功能入口

compshare instance   GPU 实例、规格、库存、价格和生命周期
compshare image      平台、自定义、社区及共享镜像
compshare storage    云盘和 US3 挂载
compshare team       团队、邀请、成员额度、账单和审计
compshare doctor     配置、鉴权、网络与 SSH 环境诊断
compshare ask        产品使用和计费问答
compshare feedback   反馈 CLI 问题或建议

产品问答

compshare ask "按量实例关机以后,云硬盘还收费吗?"
compshare --json ask "如何创建自定义镜像?"

普通输出显示答案和引用资料标题;--json 返回完整的答案、引用、请求 ID 和检索元数据。 命令只向内置问答服务发送 question 字段,不会附带 API 凭证、配置文件或其他命令上下文。

反馈

compshare feedback bug "创建实例时发生错误"
compshare feedback suggest "希望支持保存默认创建规格"

反馈会直接发送到内置的 CompShare Insights 服务地址。开发环境可使用 COMPSHARE_INSIGHTS_URL=http://127.0.0.1:18080 覆盖服务地址。

CLI 会异步统计指令使用情况,且仅发送指令名称、CLI 版本、操作系统和发生时间;不会发送 命令参数、凭证、资源 ID 或命令输出。

查看完整命令和参数:

compshare -h
compshare instance -h
compshare instance create -h

脚本调用

--json--profile--show-sensitive 是全局选项,必须放在子命令前:

compshare --json instance list --status Running --all
compshare --profile production image list --source community --region cn-sh2 --zone cn-sh2-02
compshare --json --show-sensitive instance show uhost-xxxxxxxx

JSON 模式不会启动交互向导。生命周期操作可使用 --wait--no-wait--timeout 控制等待行为;部分批量操作失败时,CLI 返回非零退出码。默认输出会递归隐藏 密码、IP、访问 URL 和登录命令;只有显式指定 --show-sensitive 才会输出原值。

Region 和 Zone 是资源参数,放在对应子命令后:

compshare instance list --region cn-sh2
compshare instance create --region cn-sh2 --zone cn-sh2-02
compshare image list --source custom --region cn-sh2 --zone cn-sh2-02

CLI 不保存或自动注入默认 Region/Zone。非交互式地域资源操作需要显式传入;按实例 ID 执行的生命周期操作使用 DescribeCompShareInstance 响应中的 Region 和 Zone;响应缺少任一 字段时会停止操作,不会从 Zone 推导或用请求 Region 补齐。

语言

compshare lang en
compshare lang zh
compshare lang       # 查看当前语言

也可以通过 COMPSHARE_LANG=en 临时覆盖。

安全说明

  • 配置目录和文件分别使用 07000600 权限。
  • API 私钥不会出现在命令输出中。
  • 默认使用 *** 隐藏密码、私钥、IP、访问 URL、令牌和登录命令,包括嵌套 JSON 字段。
  • instance ssh 在支持的交互式终端中通过伪终端自动填写登录密码,不会打印密码或将其放入进程参数。
  • 自动登录会接受首次出现的 SSH 主机密钥;已记录主机的密钥发生变化时仍会拒绝连接。
  • instance ssh INSTANCE_ID -- COMMAND 可非交互执行远程命令,透传命令输出和退出码。
  • instance scp INSTANCE_ID LOCAL_PATH REMOTE_PATH 可自动认证并上传本地文件或目录。
  • --show-sensitive 会恢复这些字段的原始值;请勿在共享终端、CI 日志或 Agent 会话中使用。
  • 删除、关机、重启、重装和改配等操作默认要求确认。

开发校验

ruff check .
ruff format --check .
pytest

公开 API 覆盖范围和版本变化见 CHANGELOG.md,维护者发布流程见 RELEASING.md

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

compshare_cli-0.3.0.tar.gz (80.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

compshare_cli-0.3.0-py3-none-any.whl (71.0 kB view details)

Uploaded Python 3

File details

Details for the file compshare_cli-0.3.0.tar.gz.

File metadata

  • Download URL: compshare_cli-0.3.0.tar.gz
  • Upload date:
  • Size: 80.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for compshare_cli-0.3.0.tar.gz
Algorithm Hash digest
SHA256 fb50ebf5a5918d653f7301f1d9b8fa31504bc5f72d5d0325410bcfa67ab98b61
MD5 e55b914fd68c24ae40af429910d275fe
BLAKE2b-256 c736369833b42850d81de38530f6d3f27fce55ab736ce8bd7e3fbe2205658689

See more details on using hashes here.

Provenance

The following attestation bundles were made for compshare_cli-0.3.0.tar.gz:

Publisher: release.yml on BennielAllan/compshare-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file compshare_cli-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: compshare_cli-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 71.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for compshare_cli-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 294312c15d05bdf2e1282ad1c48859537456f2f2b4e1811d5d5ac91c5e7b3107
MD5 54db8010921410310409544defb8a236
BLAKE2b-256 be7541d3940588962fe905f9598b1beff77583c6bdf92d6880984d50ce25ede3

See more details on using hashes here.

Provenance

The following attestation bundles were made for compshare_cli-0.3.0-py3-none-any.whl:

Publisher: release.yml on BennielAllan/compshare-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page