* simv2: wip * simulation: exec adapter start/stop * simulation: add node status to exec adapter * simulation: initial simulation code * simulation: exec adapter, configure path to executable * simulation: initial docker adapter * simulation: wip kubernetes adapter * simulation: kubernetes adapter proxy * simulation: implement GetAll/StartAll/StopAll * simulation: kuberentes adapter - set env vars and resource limits * simulation: discovery test * simulation: remove port definitions within docker adapter * simulation: simplify wait for healthy loop * simulation: get nat ip addr from interface * simulation: pull docker images automatically * simulation: NodeStatus -> NodeInfo * simulation: move discovery test to example dir * simulation: example snapshot usage * simulation: add goclient specific simulation * simulation: add peer connections to snapshot * simulation: close rpc client * simulation: don't export kubernetes proxy server * simulation: merge simulation code * simulation: don't export nodemap * simulation: rename SimulationSnapshot -> Snapshot * simulation: linting fixes * simulation: add k8s available helper func * simulation: vendor * simulation: fix 'no non-test Go files' when building * simulation: remove errors from interface methods where non were returned * simulation: run getHealthInfo check in parallel
24 lines
794 B
Go
24 lines
794 B
Go
package osversion
|
|
|
|
const (
|
|
// RS1 (version 1607, codename "Redstone 1") corresponds to Windows Server
|
|
// 2016 (ltsc2016) and Windows 10 (Anniversary Update).
|
|
RS1 = 14393
|
|
|
|
// RS2 (version 1703, codename "Redstone 2") was a client-only update, and
|
|
// corresponds to Windows 10 (Creators Update).
|
|
RS2 = 15063
|
|
|
|
// RS3 (version 1709, codename "Redstone 3") corresponds to Windows Server
|
|
// 1709 (Semi-Annual Channel (SAC)), and Windows 10 (Fall Creators Update).
|
|
RS3 = 16299
|
|
|
|
// RS4 (version 1803, codename "Redstone 4") corresponds to Windows Server
|
|
// 1803 (Semi-Annual Channel (SAC)), and Windows 10 (April 2018 Update).
|
|
RS4 = 17134
|
|
|
|
// RS5 (version 1809, codename "Redstone 5") corresponds to Windows Server
|
|
// 2019 (ltsc2019), and Windows 10 (October 2018 Update).
|
|
RS5 = 17763
|
|
)
|