blob: bb535815052fd935f4d9406ddc9aa1cf575e466a [file] [log] [blame]
Lorenz Brun901c7322023-07-13 20:10:37 +02001syntax = "proto3";
2
3package monogon.metropolis.pkg.localregistry;
4
Tim Windelschmidt9f21f532024-05-07 15:14:20 +02005option go_package = "source.monogon.dev/metropolis/test/localregistry/spec";
Lorenz Brun901c7322023-07-13 20:10:37 +02006
Lorenz Brun901c7322023-07-13 20:10:37 +02007// Single image metadata
8message Image {
9 // Name of the image (no domain or tag, just slash-separated path)
10 string name = 1;
Tim Windelschmidt0974b222024-01-16 14:04:15 +010011 // Path to the image
12 string path = 2;
Lorenz Brun901c7322023-07-13 20:10:37 +020013}
14
15// Main message
16message Manifest {
17 // List of images for the local registry
18 repeated Image images = 1;
19}