kcl mod push
上传一个 kcl 包到 kcl mod registry。
使用
kcl mod push [options][kpm_registry]
介绍
kcl mod push
将会上传一个 kcl 包到 kcl mod registry。
选项
--tar_path
指定上传的 *.tar
文件路径。
--help, -h
展示 kcl mod push
命令的帮助信息。
示例
上传当前 kcl 包到 kcl mod registry
你可以在 kcl 包的根目录下使用 kcl mod push
命令上传一个 kcl 包到 kcl mod registry。
# 创建一个 kcl 包
kcl mod init <package_name>
# 进入 kcl 包目录
cd <package_name>
# 上传 kcl 包到 kcl mod registry
kcl mod push <oci_url>
上传一个 *.tar
文件到 kcl mod registry
你也可以使用 kcl mod push
命令上传一个 *.tar
文件到 kcl mod registry。
kcl mod push --tar_path <tar_path> <oci_url>
命令参数
This command pushes kcl modules to the registry.
Usage:
kcl mod push [flags]
Examples:
# Push the current module to the registry
kcl mod push
# Push the current module to the registry in the vendor mode
kcl mod push --vendor
Flags:
-h, --help help for push
--tar_path string packaged target path that will be pushed
--vendor run in vendor mode (default: false)
Global Flags:
-q, --quiet Set the quiet mode (no output)