Implement Set() for the crio implementation of engine.Interface

Signed-off-by: Christopher Desiniotis <cdesiniotis@nvidia.com>
This commit is contained in:
Christopher Desiniotis 2023-12-04 15:27:35 -08:00
parent 527248ef5b
commit d7a3d93024

View File

@ -101,8 +101,12 @@ func (c *Config) RemoveRuntime(name string) error {
return nil return nil
} }
// Set is not supported for cri-o configs. // Set sets the specified cri-o option.
func (c *Config) Set(key string, value interface{}) {} func (c *Config) Set(key string, value interface{}) {
config := (toml.Tree)(*c)
config.Set(key, value)
*c = (Config)(config)
}
// Save writes the config to the specified path // Save writes the config to the specified path
func (c Config) Save(path string) (int64, error) { func (c Config) Save(path string) (int64, error) {