github.com/containerd/Containerd@v1.4.13/defaults/defaults_windows.go (about) 1 // +build windows 2 3 /* 4 Copyright The containerd Authors. 5 6 Licensed under the Apache License, Version 2.0 (the "License"); 7 you may not use this file except in compliance with the License. 8 You may obtain a copy of the License at 9 10 http://www.apache.org/licenses/LICENSE-2.0 11 12 Unless required by applicable law or agreed to in writing, software 13 distributed under the License is distributed on an "AS IS" BASIS, 14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 See the License for the specific language governing permissions and 16 limitations under the License. 17 */ 18 19 package defaults 20 21 import ( 22 "os" 23 "path/filepath" 24 ) 25 26 var ( 27 // DefaultRootDir is the default location used by containerd to store 28 // persistent data 29 DefaultRootDir = filepath.Join(os.Getenv("ProgramData"), "containerd", "root") 30 // DefaultStateDir is the default location used by containerd to store 31 // transient data 32 DefaultStateDir = filepath.Join(os.Getenv("ProgramData"), "containerd", "state") 33 ) 34 35 const ( 36 // DefaultAddress is the default winpipe address 37 DefaultAddress = `\\.\pipe\containerd-containerd` 38 // DefaultDebugAddress is the default winpipe address for pprof data 39 DefaultDebugAddress = `\\.\pipe\containerd-debug` 40 // DefaultFIFODir is the default location used by client-side cio library 41 // to store FIFOs. Unused on Windows. 42 DefaultFIFODir = "" 43 // DefaultRuntime is the default windows runtime 44 DefaultRuntime = "io.containerd.runhcs.v1" 45 )