Skip to content

Latest commit

 

History

History
60 lines (46 loc) · 2.19 KB

File metadata and controls

60 lines (46 loc) · 2.19 KB

Deployer

These tasks are useful to interact with OpenServerless Admin Api Builder

There are some tasks to interact with OpenServerless internal registry too.

Available tasks

task: Available tasks for this project:

* builder:cleanjobs:           Clean up old jobs
* builder:delete-image:        Delete an image from the registry
* builder:get-image:           Get an image from the registry
* builder:list-catalogs:       List catalogs in the registry
* builder:list-images:         List images in a specific catalog
* builder:logs:                Show logs of the last build job
* builder:send:                Send the build to the server
* builder:updatetoml:          Update the buildkitd.toml file config map

Examples

Build a custom runtime

task builder:send SOURCE=apache/openserverless-runtime-python:v3.13-2506091954 TARGET=devel:python3.13-custom KIND=python REQUIREMENTS=$(base64 -i deploy/samples/requirements.txt)

List images for the user

task builder:list-images CATALOG=devel

Delete an image for the user

task builder:delete-image IMAGE=devel:alpine

Useful Links