From dabaed7f8e64e04cd2adeb1f84ad6dff3dbbf7ac Mon Sep 17 00:00:00 2001 From: James Jenkins Date: Fri, 19 May 2023 14:57:49 -0400 Subject: [PATCH] Generate proto files Generate proto files to add new comment for runtimeoptions. Signed-off-by: James Jenkins --- pkg/runtimeoptions/v1/api.pb.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkg/runtimeoptions/v1/api.pb.go b/pkg/runtimeoptions/v1/api.pb.go index eb0d66ee56a9..b2b47dca7afb 100644 --- a/pkg/runtimeoptions/v1/api.pb.go +++ b/pkg/runtimeoptions/v1/api.pb.go @@ -32,8 +32,10 @@ type Options struct { // ConfigPath specifies the filesystem location of the config file // used by the runtime. ConfigPath string `protobuf:"bytes,2,opt,name=config_path,json=configPath,proto3" json:"config_path,omitempty"` - // Blob specifies an in-memory TOML blob passed from containerd's configuration section - // for this runtime. This will be used if config_path is not specified. + // Blob specifies an in-memory blob passed from containerd's configuration section + // for this runtime. If the typeurl is specified, this will be a JSON blob which can be + // interpreted as the type represented by the typeurl. Otherwise, this will be a TOML + // blob. This will be used if config_path is not specified. ConfigBody []byte `protobuf:"bytes,3,opt,name=config_body,json=configBody,proto3" json:"config_body,omitempty"` }