Get one tag of a system template
Get one tag of this template, and the version it points at, in the shape the tag listing returns. Requires no role: the catalogue belongs to the platform, and every caller reads it.
Get one tag of this template, and the version it points at, in the shape the tag listing returns. Requires no role: the catalogue belongs to the platform, and every caller reads it.
Authorization
apiKey API key starting with tektona_. Create one at app-dev.tektona.ai under API Keys.
In: header
Path Parameters
Template name
length <= 80Tag name
length <= 128Response Body
application/json
application/problem+json
curl -X GET "https://example.com/v1/system-templates/string/tags/string"{ "tag": "string", "version": { "archived_at": "2019-08-24T14:15:22Z", "archived_by": "user", "base_image": { "digest": "sha256:9f0b7c1e2d3a4b5c6d7e8f90a1b2c3d4e5f60718293a4b5c6d7e8f90a1b2c3d4", "ref": "ghcr.io/tektona-ai/sandbox-base:0.5.0" }, "build_id": "01K2S8VVQ9F3M6WQ2S0S2Z9J4R", "creatable": true, "create_refused_by": "template", "created_at": "2019-08-24T14:15:22Z", "id": "string", "image_bytes": 0, "pending_rule": "archive", "pending_rule_at": "2019-08-24T14:15:22Z", "sandbox": { "default_resources": { "cpu": 2, "disk": 10, "memory": 2 }, "env": [ { "name": "string", "value": "string" } ], "user": "dev", "workdir": "/workspace" }, "state": "string", "tags": [ "default", "stable" ] }}{ "detail": "Property foo is required but is missing.", "errors": [ { "location": "string", "message": "string", "value": null } ], "instance": "https://example.com/error-log/abc123", "status": 400, "title": "Bad Request", "type": "https://example.com/errors/example"}Get one tag of a project template GET
Get one tag of this template, and the version it points at, in the shape the tag listing returns. Requires read access to the project.
List an organization template's tags GET
List the template's tags, in name order. A tag names the version a reference like go-dev:stable resolves to. Every tag carries that version in full, so a caller reads the state and the base image behind each name without listing the versions as well. `q` matches the start of a tag, or of the version id it points at. Send `q` with every page of a filtered list: the cursor carries the position, not the filter. Requires organization membership.