From 00cb3b96bfd9d84ace3b569d3d716a76978e482d Mon Sep 17 00:00:00 2001 From: Sunil Muthuswamy Date: Mon, 24 Nov 2025 22:31:19 -0800 Subject: [PATCH] cwcow: Use the right VM version VM version 12 is the minimum version that supports the various SNP features. Signed-off-by: Sunil Muthuswamy --- internal/uvm/create_wcow.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/uvm/create_wcow.go b/internal/uvm/create_wcow.go index 8e28ce0a5e..3e9c1e044e 100644 --- a/internal/uvm/create_wcow.go +++ b/internal/uvm/create_wcow.go @@ -415,8 +415,9 @@ func prepareSecurityConfigDoc(ctx context.Context, uvm *UtilityVM, opts *Options } doc.SchemaVersion = schemaversion.SchemaV25() + // VM Version 12 is the min version that supports the various SNP features. doc.VirtualMachine.Version = &hcsschema.Version{ - Major: 11, + Major: 12, Minor: 0, }