7
7
"strings"
8
8
9
9
"github.com/Microsoft/hcsshim"
10
+ "github.com/Microsoft/hcsshim/osversion"
10
11
"github.com/docker/docker/api/types"
11
12
containertypes "github.com/docker/docker/api/types/container"
12
13
"github.com/docker/docker/container"
@@ -126,8 +127,7 @@ func verifyPlatformContainerResources(resources *containertypes.Resources, isHyp
126
127
return warnings , fmt .Errorf ("range of CPUs is from 0.01 to %d.00, as there are only %d CPUs available" , sysinfo .NumCPU (), sysinfo .NumCPU ())
127
128
}
128
129
129
- osv := system .GetOSVersion ()
130
- if resources .NanoCPUs > 0 && isHyperv && osv .Build < 16175 {
130
+ if resources .NanoCPUs > 0 && isHyperv && osversion .Build () < osversion .RS3 {
131
131
leftoverNanoCPUs := resources .NanoCPUs % 1e9
132
132
if leftoverNanoCPUs != 0 && resources .NanoCPUs > 1e9 {
133
133
resources .NanoCPUs = ((resources .NanoCPUs + 1e9 / 2 ) / 1e9 ) * 1e9
@@ -196,14 +196,13 @@ func verifyPlatformContainerSettings(daemon *Daemon, hostConfig *containertypes.
196
196
if hostConfig == nil {
197
197
return nil , nil
198
198
}
199
- osv := system .GetOSVersion ()
200
199
hyperv := daemon .runAsHyperVContainer (hostConfig )
201
200
202
201
// On RS5, we allow (but don't strictly support) process isolation on Client SKUs.
203
202
// Prior to RS5, we don't allow process isolation on Client SKUs.
204
203
// @engine maintainers. This block should not be removed. It partially enforces licensing
205
204
// restrictions on Windows. Ping Microsoft folks if there are concerns or PRs to change this.
206
- if ! hyperv && system .IsWindowsClient () && osv .Build < 17763 {
205
+ if ! hyperv && system .IsWindowsClient () && osversion .Build () < osversion . RS5 {
207
206
return warnings , fmt .Errorf ("Windows client operating systems earlier than version 1809 can only run Hyper-V containers" )
208
207
}
209
208
@@ -225,7 +224,7 @@ func checkSystem() error {
225
224
if osv .MajorVersion < 10 {
226
225
return fmt .Errorf ("This version of Windows does not support the docker daemon" )
227
226
}
228
- if osv .Build < 14393 {
227
+ if osversion .Build () < osversion . RS1 {
229
228
return fmt .Errorf ("The docker daemon requires build 14393 or later of Windows Server 2016 or Windows 10" )
230
229
}
231
230
@@ -425,26 +424,15 @@ func initBridgeDriver(controller libnetwork.NetworkController, config *config.Co
425
424
winlibnetwork .NetworkName : runconfig .DefaultDaemonNetworkMode ().NetworkName (),
426
425
}
427
426
428
- var ipamOption libnetwork.NetworkOption
429
- var subnetPrefix string
430
-
427
+ subnetPrefix := defaultNetworkSpace
431
428
if config .BridgeConfig .FixedCIDR != "" {
432
429
subnetPrefix = config .BridgeConfig .FixedCIDR
433
- } else {
434
- // TP5 doesn't support properly detecting subnet
435
- osv := system .GetOSVersion ()
436
- if osv .Build < 14360 {
437
- subnetPrefix = defaultNetworkSpace
438
- }
439
430
}
440
431
441
- if subnetPrefix != "" {
442
- ipamV4Conf := libnetwork.IpamConf {}
443
- ipamV4Conf .PreferredPool = subnetPrefix
444
- v4Conf := []* libnetwork.IpamConf {& ipamV4Conf }
445
- v6Conf := []* libnetwork.IpamConf {}
446
- ipamOption = libnetwork .NetworkOptionIpam ("default" , "" , v4Conf , v6Conf , nil )
447
- }
432
+ ipamV4Conf := libnetwork.IpamConf {PreferredPool : subnetPrefix }
433
+ v4Conf := []* libnetwork.IpamConf {& ipamV4Conf }
434
+ v6Conf := []* libnetwork.IpamConf {}
435
+ ipamOption := libnetwork .NetworkOptionIpam ("default" , "" , v4Conf , v6Conf , nil )
448
436
449
437
_ , err := controller .NewNetwork (string (runconfig .DefaultDaemonNetworkMode ()), runconfig .DefaultDaemonNetworkMode ().NetworkName (), "" ,
450
438
libnetwork .NetworkOptionGeneric (options.Generic {
@@ -602,7 +590,6 @@ func (daemon *Daemon) stats(c *container.Container) (*types.StatsJSON, error) {
602
590
// daemon to run in. This is only applicable on Windows
603
591
func (daemon * Daemon ) setDefaultIsolation () error {
604
592
daemon .defaultIsolation = containertypes .Isolation ("process" )
605
- osv := system .GetOSVersion ()
606
593
607
594
// On client SKUs, default to Hyper-V. @engine maintainers. This
608
595
// should not be removed. Ping Microsoft folks is there are PRs to
@@ -626,7 +613,7 @@ func (daemon *Daemon) setDefaultIsolation() error {
626
613
daemon .defaultIsolation = containertypes .Isolation ("hyperv" )
627
614
}
628
615
if containertypes .Isolation (val ).IsProcess () {
629
- if system .IsWindowsClient () && osv .Build < 17763 {
616
+ if system .IsWindowsClient () && osversion .Build () < osversion . RS5 {
630
617
// On RS5, we allow (but don't strictly support) process isolation on Client SKUs.
631
618
// @engine maintainers. This block should not be removed. It partially enforces licensing
632
619
// restrictions on Windows. Ping Microsoft folks if there are concerns or PRs to change this.
0 commit comments