2022-03-15 15:27:34 +00:00
|
|
|
/**
|
|
|
|
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
**/
|
|
|
|
|
|
|
|
package config
|
|
|
|
|
|
|
|
// RuntimeConfig stores the config options for the NVIDIA Container Runtime
|
|
|
|
type RuntimeConfig struct {
|
2022-05-09 11:56:26 +00:00
|
|
|
DebugFilePath string `toml:"debug"`
|
2022-03-11 15:37:41 +00:00
|
|
|
// LogLevel defines the logging level for the application
|
2022-05-09 11:56:26 +00:00
|
|
|
LogLevel string `toml:"log-level"`
|
2022-05-04 12:39:14 +00:00
|
|
|
// Runtimes defines the candidates for the low-level runtime
|
2022-05-09 12:13:42 +00:00
|
|
|
Runtimes []string `toml:"runtimes"`
|
|
|
|
Mode string `toml:"mode"`
|
|
|
|
Modes modesConfig `toml:"modes"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// modesConfig defines (optional) per-mode configs
|
|
|
|
type modesConfig struct {
|
|
|
|
CSV csvModeConfig `toml:"csv"`
|
2022-07-11 13:10:19 +00:00
|
|
|
CDI cdiModeConfig `toml:"cdi"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type cdiModeConfig struct {
|
|
|
|
// SpecDirs allows for the default spec dirs for CDI to be overridden
|
|
|
|
SpecDirs []string `toml:"spec-dirs"`
|
2023-03-06 11:30:40 +00:00
|
|
|
// DefaultKind sets the default kind to be used when constructing fully-qualified CDI device names
|
|
|
|
DefaultKind string `toml:"default-kind"`
|
2023-03-23 18:18:22 +00:00
|
|
|
// AnnotationPrefixes sets the allowed prefixes for CDI annotation-based device injection
|
|
|
|
AnnotationPrefixes []string `toml:"annotation-prefixes"`
|
2022-05-09 12:13:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type csvModeConfig struct {
|
|
|
|
MountSpecPath string `toml:"mount-spec-path"`
|
2022-05-09 11:56:26 +00:00
|
|
|
}
|
|
|
|
|
2022-04-06 14:04:38 +00:00
|
|
|
// GetDefaultRuntimeConfig defines the default values for the config
|
2023-03-13 13:22:18 +00:00
|
|
|
func GetDefaultRuntimeConfig() (*RuntimeConfig, error) {
|
2023-06-30 10:47:19 +00:00
|
|
|
cfg, err := getDefault()
|
2023-03-13 13:22:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2022-03-15 15:27:34 +00:00
|
|
|
}
|
|
|
|
|
2023-03-13 13:22:18 +00:00
|
|
|
return &cfg.NVIDIAContainerRuntimeConfig, nil
|
2022-03-15 15:27:34 +00:00
|
|
|
}
|