123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- {
- "$schema": "https://raw.githubusercontent.com/elyra-ai/elyra/master/elyra/metadata/schemas/meta-schema.json",
- "$id": "https://raw.githubusercontent.com/elyra-ai/elyra/master/elyra/metadata/schemas/runtime-image.json",
- "title": "Runtime Image",
- "name": "runtime-image",
- "schemaspace": "runtime-images",
- "schemaspace_id": "119c9740-d73f-48c6-a97a-599d3acaf41d",
- "uihints": {
- "icon": "elyra:container",
- "title": "Runtime Images",
- "reference_url": "https://elyra.readthedocs.io/en/v3.8.0/user_guide/runtime-image-conf.html"
- },
- "properties": {
- "schema_name": {
- "title": "Schema Name",
- "description": "The schema associated with this instance",
- "type": "string",
- "const": "runtime-image"
- },
- "display_name": {
- "title": "Display Name",
- "description": "The display name of the Runtime Image",
- "type": "string",
- "minLength": 1
- },
- "metadata": {
- "description": "Additional data specific to this Runtime Image",
- "type": "object",
- "properties": {
- "description": {
- "title": "Description",
- "description": "The description of this Runtime Image instance",
- "type": "string"
- },
- "tags": {
- "title": "Tags",
- "description": "Tags for categorizing runtime images",
- "uniqueItems": true,
- "type": "array",
- "items": {
- "allOf": [
- { "minLength": 1 },
- { "pattern": "^[^ \t]+" },
- { "pattern": "[^ \t]+$" }
- ]
- },
- "uihints": {
- "field_type": "tags"
- }
- },
- "image_name": {
- "title": "Image Name",
- "description": "The image name (including optional tag)",
- "type": "string",
- "minLength": 1,
- "uihints": {
- "placeholder": "registry/owner/image:tag",
- "category": "Source"
- }
- },
- "pull_policy": {
- "title": "Image Pull Policy",
- "description": "The pull policy to use when selecting this image",
- "type": "string",
- "enum": ["Always", "IfNotPresent", "Never"],
- "uihints": {
- "field_type": "dropdown",
- "category": "Source"
- }
- },
- "pull_secret": {
- "title": "Image Pull Secret",
- "description": "Kubernetes secret name containing the container registry credentials, if anonymous pull access is forbidden.",
- "type": "string",
- "pattern": "^[a-z0-9][a-z0-9-.]*[a-z0-9]$",
- "maxLength": 253,
- "uihints": {
- "category": "Source",
- "secure": true
- }
- }
- },
- "required": ["image_name"]
- }
- },
- "required": ["schema_name", "display_name", "metadata"]
- }
|