From e80c9da1fa0116ba41461aee8a3ad5bf89acedb5 Mon Sep 17 00:00:00 2001 From: Naomi Pentrel <5212232+npentrel@users.noreply.github.com> Date: Tue, 26 Nov 2024 21:12:30 +0100 Subject: [PATCH] DOCS-3128: Add platform tags --- docs/cli.md | 6 ++++-- docs/how-tos/upload-module.md | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/cli.md b/docs/cli.md index 122fcac64f..a5ffebdc67 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -643,7 +643,7 @@ viam module build local --module= [arguments...] viam module build list [command options] [arguments...] viam module build logs --id= [...named args] viam module reload [...named args] -viam module upload --version= --platform= [--org-id= | --public-namespace=] [--module=] +viam module upload --version= --platform= [--org-id= | --public-namespace=] [--module=] --tags= ``` Examples: @@ -680,7 +680,8 @@ viam module build logs --wait --id=$(viam module build start --version "0.1.2") viam module reload --restart-only --id viam:python-example-module # upload a new or updated custom module to the Viam Registry: -viam module upload --version=1.0.0 --platform=darwin/arm64 packaged-module.tar.gz +viam module upload --version=1.0.0 --platform=darwin/arm64 packaged-module.tar.gz --tags=distro:ubuntu,os_version:20.04,codename:focal,cuda:true,cuda_version:11,jetpack:5 + ``` #### Command options @@ -717,6 +718,7 @@ viam module upload --version=1.0.0 --platform=darwin/arm64 packaged-module.tar.g | `--org-id` | The organization ID to associate the module to. See [Using the `--org-id` argument](#using-the---org-id-and---public-namespace-arguments) | `create`, `upload` | **Required** | | `--public-namespace` | The [namespace](/cloud/organizations/#create-a-namespace-for-your-organization) to associate the module to. See [Using the `--public-namespace` argument](#using-the---org-id-and---public-namespace-arguments) | `create`, `upload` | **Required** | | `--platform` | The architecture of your module binary. See [Using the `--platform` argument](#using-the---platform-argument) | `upload`, `build logs` | **Required** | +| `--tags` | Comma-serparated list of platform tags that determine to which this binary can be deployed. Examples: `distro:debian,distro:ubuntu, os_version:22.04,os_codename:jammy`. For a machine to use an uploaded binary, all tags must be satisfied as well as the `--platform` field.
  • `distro`: Distribution. You can find this in `/etc/os-release`. `"debian"` or `"ubuntu"`.
  • `os_version`: Operating System version. On Linux, you can find this in `/etc/os-release`. Example for linux: `22.04`. On Mac, run `sw_vers --productVersion` and use the major version only. Example for mac: `14`.
  • `codename`: The operating system codename. Find this in `/etc/os-release`. For example: `"bullseye"`, `"bookworm"`, or `"jammy"`.
  • `cuda`: Whether using CUDA compiler. Run `nvcc --version`. For example: `"true"`.
  • `cuda_version`: The CUDA compiler version. Run `nvcc --version`. For example: `"11"` or `"12"`.
  • `jetpack`: Version of the NVIDIA JetPack SDK. Run `apt-cache show nvidia-jetpack`. For example: `"5"`.
  • `pi`: Version of the raspberry pi: `"4"` or `"5"`.
  • `pifull`: Compute module or model number, for example `cm5p` or `5B`.
| `upload` | Optional | | `--version` | The version of your module to set for this upload. See [Using the `--version` argument](#using-the---version-argument) | `upload` | **Required** | | `--wait` | Wait for the build to finish before outputting any logs | `build logs` | Optional | diff --git a/docs/how-tos/upload-module.md b/docs/how-tos/upload-module.md index d7811bfce1..284316ef7e 100644 --- a/docs/how-tos/upload-module.md +++ b/docs/how-tos/upload-module.md @@ -252,7 +252,7 @@ Run `viam module upload` to upload your custom module to the Viam Registry. Specify the path to the file, directory, or compressed archive (with `.tar.gz` or `.tgz` extension) that contains your custom module code: ```sh {id="terminal-prompt" class="command-line" data-prompt="$"} -viam module upload --version --platform +viam module upload --version --platform --tags= ``` where: @@ -264,6 +264,7 @@ where: You can only provide one `platform` argument at a time to the `viam module upload` command. See [Using the `--platform` argument](/cli/#using-the---platform-argument) for the full list of supported architectures. - `module-path`: provide the path to the file, directory, or compressed archive (with `.tar.gz` or `.tgz` extension) that contains your custom module code. +- `tags`: provide a comma-serparated list of platform tags that determine to which this binary can be deployed. See [`viam module upload`](/cli/#module/). {{% alert title="Important" color="note" %}} The `viam module upload` command only supports one `platform` argument at a time.