Update and manage modules you created
After you create and deploy a module, you may need to update or delete it.
For information on pinning module deployments to versions, see Module versioning.
Update an existing module
You can update an existing module in the Viam Registry in one of two ways:
- Upload new versions of your module manually using the Viam CLI.
- Automatically upload new versions of your module on release as part of a continuous integration (CI) workflow, using a GitHub action.
Updating your module manually is appropriate for smaller projects, especially those with only one contributor. Updating your module automatically using CI is better suited for larger, ongoing projects, especially those with multiple contributors.
Update an existing module using the Viam CLI
To update an existing module in the Viam Registry manually, you can use the Viam CLI.
Tip
If you intend to make frequent code changes to your module, want to support a variety of platforms, or otherwise want to streamline your module development workflow, consider using a GitHub action to update your module instead.
Edit your custom module code with the changes you’d like to make.
Update your custom module’s
meta.json
file with any needed changes. For example, if you have altered your model’s description, or adjusted the endpoint name, you’ll need to updatemeta.json
with these changes.For modules written in Python, you should package your module files as an archive first, before uploading. Other languages can proceed to the next step to upload their module directly. To package a module written in Python, run the following command from the same directory as your
meta.json
file:tar -czf module.tar.gz <PATH-TO-EXECUTABLE>
where
<PATH-TO-EXECUTABLE>
is the packaged executable.tar -czf module.tar.gz run.sh requirements.txt src
Where
run.sh
is your executable file,requirements.txt
is your pip dependency list file, andsrc
is the directory that contains the source code of your module.Supply the path to the resulting archive file in the next step.
Run
viam module upload
to upload your custom module to the Viam Registry:viam module upload --version <version> --platform <platform> <module-path>
For example, the following command uploads a module compressed as an archive named
my-module.tar.gz
to the Viam Registry, and increments theversion
of the module to version1.0.1
:viam module upload --version 1.0.1 --platform darwin/arm64 my-module.tar.gz
When you
upload
a module, the command performs basic validation of your module to check for common errors.
For more information, see the viam module
command.
Update an existing module using a GitHub action
To update an existing module in the Viam Registry using continuous integration (CI), you can use one of two GitHub actions.
You can only use these GitHub actions if you have already created the module by running viam module create
and viam module update
.
For most use cases, we recommend the build-action
GitHub action which provides a simple cross-platform build setup for multiple platforms: x86, ARM Linux, and MacOS.
However, if you already have your own CI with access to arm runners or only intend to build on x86
or mac
, you may also use the upload-module
GitHub action instead which allows you to define the exact build steps.
Edit your custom module with the changes you’d like to make.
Navigate to the Actions tab of the GitHub repository you are using for your module code. If you have already created GitHub actions for this repository, click the New workflow button to create a new one. If you have not yet created any GitHub actions, click the Set up a workflow yourself link. See the GitHub actions documentation for more information.
Paste one of the following action templates into the edit window, depending on whether you are using the
build-action
orupload-module
action:
# see https://github.com/viamrobotics/build-action for help
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+" # the build-action will trigger on tags with the format 1.0.0
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: viamrobotics/build-action@v1
with:
# note: you can replace this line with 'version: ""' if
# you want to test the build process without deploying
version: ${{ github.ref_name }}
ref: ${{ github.sha }}
key-id: ${{ secrets.viam_key_id }}
key-value: ${{ secrets.viam_key_value }}
token: ${{ github.token }} # only required for private git repos
The build-action
GitHub action relies on a build command that you need to specify in the
{
"module_id": "example-module",
...
"build": {
"setup": "./setup.sh", // optional - command to install your build dependencies
"build": "./build.sh", // command that will build your module
"path" : "dist/archive.tar.gz", // optional - path to your built module
"arch" : ["linux/amd64", "linux/arm64"] // architecture(s) to build for
}
}
You can test this build configuration by running the Viam CLI’s build local
command on your development machine:
viam module build local
The command will run your build instructions locally without running a cloud build job.
For more details, see the build-action
GitHub Action documentation, or take a look through one of the following example repositories that show how to package and deploy modules using the Viam SDKs:
on:
push:
release:
types: [released]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build
run: echo "your build command goes here" && false # <-- replace this with the command that builds your module's tar.gz
- uses: viamrobotics/upload-module@v1
# if: github.event_name == 'release' # <-- once the action is working, uncomment this so you only upload on release
with:
module-path: module.tar.gz
platform: linux/amd64 # <-- replace with your target architecture, or your module will not deploy
version: ${{ github.event_name == 'release' && github.ref_name || format('0.0.0-{0}.{1}', github.ref_name, github.run_number) }} # <-- see 'Versioning' section below for explanation
key-id: ${{ secrets.viam_key_id }}
key-value: ${{ secrets.viam_key_value }}
Edit the copied code to include the configuration specific to your module.
Each item marked with a <--
comment requires that you edit the configuration values accordingly.
Set run
to the command you use to build and package your module, such as invoking a makefile or running a shell script.
When you are ready to test the action, uncomment if: github.event_name == 'release'
to enable the action to trigger a run when you issue a release.
For guidance on configuring the other parameters, see the documentation for each:
org-id
: Not required if your module is public.platform
: You can only upload one platform at a time.version
: Also see Using the –version argument for more details on the types of versioning supported.
For more details, see the upload-module
GitHub Action documentation, or take a look through one of the following example repositories that show how to package and deploy modules using the Viam SDKs:
Create an organization API key with the owner role, which the GitHub action will use to authenticate to the Viam platform, using one of the following methods:
Use the Viam CLI to create an organization API key, which includes the owner role by default:
viam organizations api-key create --org-id <org-id> --name <key-name>
Use the organizations page on the Viam app to generate a new organization API key. Make sure your organization API key is set to Role: Owner, or the GitHub action will not be able to successfully authenticate during runs. If you are using an existing organization API key which is not set to Role: Owner, you can change an API key’s permissions from the Viam app on the organizations page by clicking the Show details link next to your API key. The operator role cannot be used to authenticate GitHub action runs. For more information see Manage organizations.
Both methods return a
key id
and akey value
which together comprise your organization API key.Then, configure your GitHub repository to use your organization API key to authenticate during GitHub action runs, following the steps below:
In the GitHub repository for your project, select Settings, then Secrets and variables, then Actions.
Click the green New repository secret button, enter
viam_key_id
as the NAME, paste the value forkey id
from above into the Secret text field, then click Add secret.Then, click the green New repository secret button, enter
viam_key_value
as the NAME, paste the value forkey value
from above into the Secret text field, then click Add secret.
For more information on GitHub secrets, see the GitHub documentation for creating secrets for a repository.
Push a tag to your repo or create a new release. The specific step to take to release your software depends on your CI workflow, your GitHub configuration, and the
run
step you defined earlier. Once complete, your module will upload to the Viam Registry with the appropriate version automatically.
For more details, see the upload-module
GitHub Action documentation, or take a look through one of the following example repositories that show how to package and deploy modules using the Viam SDKs:
Change a module from public to private
You can change the visibility of a module from public to private if:
- you are an owner in the organization that owns the module, AND
- no machines outside of the organization that owns the module have the module configured (no other orgs are using it).
To change the visibility, navigate to its page in the REGISTRY section of the Viam app, hover to the right of the visibility indicator near the right side of the page until an Edit button appears, and click it to make changes.
You can also edit the visibility by editing the
viam module update
Delete a module
You can delete a module if:
- you are an owner in the organization that owns the module, AND
- no machines have the module configured.
To delete a module, navigate to its page in the REGISTRY section of the Viam app, click the … menu in the upper-right corner of the page, and click Delete.
Note
If you need to delete a module and the delete option is unavailable to you, please contact our support team for assistance.
Delete just one version of a module
Deleting a version of a module requires the same org owner permissions as deleting the entire module, and similarly, you cannot delete a version if any machines are using it. To delete just one version of a module:
- Navigate to its page in the REGISTRY section of the Viam app
- Click Show previous versions under the Latest version heading.
- Click the trash can icon next to the version you’d like to delete.
Versions are immutable, meaning that you cannot upload a new file with the same version number as the deleted one. To upload another version, you must increment the version number to a later version number.
Next steps
Have questions, or want to meet other people working on robots? Join our Community Discord.
If you notice any issues with the documentation, feel free to file an issue or edit this file.
Was this page helpful?
Glad to hear it! If you have any other feedback please let us know:
We're sorry about that. To help us improve, please tell us what we can do better:
Thank you!