From 0322a29b9ef8806aaa4b45dc9d9a2ebcf0244bf4 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 4 Dec 2023 13:44:21 +0100 Subject: [PATCH] WIP: set minimum API version Signed-off-by: Sebastiaan van Stijn --- daemon/config/config.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/daemon/config/config.go b/daemon/config/config.go index 761f242fd3a03..84ec47d19d329 100644 --- a/daemon/config/config.go +++ b/daemon/config/config.go @@ -247,6 +247,9 @@ type CommonConfig struct { // CDISpecDirs is a list of directories in which CDI specifications can be found. CDISpecDirs []string `json:"cdi-spec-dirs,omitempty"` + + // The minimum supported API version. + MinAPIVersion string `json:"-"` } // Proxies holds the proxies that are configured for the daemon.