github.com/demonoid81/containerd@v1.3.4/api/types/platform.proto (about)

     1  syntax = "proto3";
     2  
     3  package containerd.types;
     4  
     5  import weak "gogoproto/gogo.proto";
     6  
     7  option go_package = "github.com/containerd/containerd/api/types;types";
     8  
     9  // Platform follows the structure of the OCI platform specification, from
    10  // descriptors.
    11  message Platform {
    12  	string os = 1 [(gogoproto.customname) = "OS"];
    13  	string architecture = 2;
    14  	string variant = 3;
    15  }