We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4360008 commit afe30a8Copy full SHA for afe30a8
1 file changed
protect/control/v1/control.proto
@@ -641,7 +641,13 @@ message SnoopControlPacket {
641
// for moving tags) instead of resolving from the local cache.
642
// Set `want_metadata` to receive the OCI manifest/config in the final reply.
643
message PullImageRequest {
644
- string image = 1;
+ // The image to pull, given either as a literal OCI reference or as a named
645
+ // kernel variant OCI alias the daemon resolves from its `[zone.kernel-variants]`
646
+ // mapping in daemon.toml.
647
+ oneof source {
648
+ string image = 1;
649
+ string kernel_variant = 7;
650
+ }
651
OciImageFormat format = 2;
652
bool overwrite_cache = 3;
653
bool update = 4;
0 commit comments