diff --git a/pkg/deploy/assets/gateway-production.json b/pkg/deploy/assets/gateway-production.json index 9e1ca37c7e0..40853596420 100644 --- a/pkg/deploy/assets/gateway-production.json +++ b/pkg/deploy/assets/gateway-production.json @@ -228,9 +228,9 @@ }, "storageProfile": { "imageReference": { - "publisher": "RedHat", - "offer": "RHEL", - "sku": "8-LVM", + "publisher": "MicrosoftCBLMariner", + "offer": "cbl-mariner", + "sku": "cbl-mariner-2-gen2-fips", "version": "latest" }, "osDisk": { diff --git a/pkg/deploy/assets/rp-production.json b/pkg/deploy/assets/rp-production.json index 00b235cfca2..3e2b4bef27a 100644 --- a/pkg/deploy/assets/rp-production.json +++ b/pkg/deploy/assets/rp-production.json @@ -378,9 +378,9 @@ }, "storageProfile": { "imageReference": { - "publisher": "RedHat", - "offer": "RHEL", - "sku": "8-LVM", + "publisher": "MicrosoftCBLMariner", + "offer": "cbl-mariner", + "sku": "cbl-mariner-2-fips", "version": "latest" }, "osDisk": { diff --git a/pkg/deploy/generator/resources_gateway.go b/pkg/deploy/generator/resources_gateway.go index 47b75dda6f6..3bde84b1156 100644 --- a/pkg/deploy/generator/resources_gateway.go +++ b/pkg/deploy/generator/resources_gateway.go @@ -289,9 +289,9 @@ func (g *generator) gatewayVMSS() *arm.Resource { }, StorageProfile: &mgmtcompute.VirtualMachineScaleSetStorageProfile{ ImageReference: &mgmtcompute.ImageReference{ - Publisher: to.StringPtr("RedHat"), - Offer: to.StringPtr("RHEL"), - Sku: to.StringPtr("8-LVM"), + Publisher: to.StringPtr("MicrosoftCBLMariner"), + Offer: to.StringPtr("cbl-mariner"), + Sku: to.StringPtr("cbl-mariner-2-gen2-fips"), Version: to.StringPtr("latest"), }, OsDisk: &mgmtcompute.VirtualMachineScaleSetOSDisk{ diff --git a/pkg/deploy/generator/resources_rp.go b/pkg/deploy/generator/resources_rp.go index b7a49bec62c..c9deaa8b90b 100644 --- a/pkg/deploy/generator/resources_rp.go +++ b/pkg/deploy/generator/resources_rp.go @@ -489,9 +489,9 @@ func (g *generator) rpVMSS() *arm.Resource { }, StorageProfile: &mgmtcompute.VirtualMachineScaleSetStorageProfile{ ImageReference: &mgmtcompute.ImageReference{ - Publisher: to.StringPtr("RedHat"), - Offer: to.StringPtr("RHEL"), - Sku: to.StringPtr("8-LVM"), + Publisher: to.StringPtr("MicrosoftCBLMariner"), + Offer: to.StringPtr("cbl-mariner"), + Sku: to.StringPtr("cbl-mariner-2-fips"), Version: to.StringPtr("latest"), }, OsDisk: &mgmtcompute.VirtualMachineScaleSetOSDisk{