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.1,要求 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 PowerShell 中可先激活虚拟环境,再直接调用 compshare

.\.venv\Scripts\Activate.ps1
compshare -h
compshare config --name default

不激活虚拟环境时,使用 PowerShell 调用运算符 & 直接执行虚拟环境内的入口:

& '.\.venv\Scripts\compshare.exe' -h
& '.\.venv\Scripts\compshare.exe' config --name default

PowerShell 会把单引号中的路径解析为字符串,所以带参数执行时不能省略 &。路径包含空格时必须保留引号;从当前目录运行可执行文件时要使用 .\ 前缀。若 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.1.tar.gz (81.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.1-py3-none-any.whl (71.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: compshare_cli-0.3.1.tar.gz
  • Upload date:
  • Size: 81.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.1.tar.gz
Algorithm Hash digest
SHA256 d94c79e77d898970648885c7a95fc17ab0193acde73c4c8b07d4e4aaa256720f
MD5 22a0ff8d6c1ad82ca4b0851f80f04782
BLAKE2b-256 088013d3ae906043b944deb9a21c3db23dc312ff6c3c16c9b3f7a478c7e6b912

See more details on using hashes here.

Provenance

The following attestation bundles were made for compshare_cli-0.3.1.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.1-py3-none-any.whl.

File metadata

  • Download URL: compshare_cli-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 71.4 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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a035e1739524e5ed389ec8c2b923124add4229096c7ed25e4966ba88132615f8
MD5 a22539a8798d013369bb3d19316f8b14
BLAKE2b-256 9a4722f52b58a7b90be92c262f9539e77051e39c8923459bb1bb28d2fc71053d

See more details on using hashes here.

Provenance

The following attestation bundles were made for compshare_cli-0.3.1-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