| syntax = "proto3"; | |
| package monogon.metropolis.pkg.localregistry; | |
| option go_package = "source.monogon.dev/metropolis/test/localregistry/spec"; | |
| // Single image metadata | |
| message Image { | |
| // Name of the image (no domain or tag, just slash-separated path) | |
| string name = 1; | |
| // Path to the image | |
| string path = 2; | |
| } | |
| // Main message | |
| message Manifest { | |
| // List of images for the local registry | |
| repeated Image images = 1; | |
| } |