git: e872a4013fc3 - main - releng-gce: Advertise the availability of gVNIC support in GCE images.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 12 Jan 2024 05:38:18 UTC
The branch main has been updated by delphij:
URL: https://cgit.FreeBSD.org/src/commit/?id=e872a4013fc325460924772f935b599151bd3d25
commit e872a4013fc325460924772f935b599151bd3d25
Author: Xin LI <delphij@FreeBSD.org>
AuthorDate: 2024-01-12 05:38:04 +0000
Commit: Xin LI <delphij@FreeBSD.org>
CommitDate: 2024-01-12 05:38:04 +0000
releng-gce: Advertise the availability of gVNIC support in GCE images.
This marks FreeBSD GCE images as gVNIC capable by adding the
--guest-os-features=GVNIC flag at creation time as suggested in GCE
documentation[1]. This allows Generation 3 and newer GCE instances
to leverage advanced networking capabilities and performance
enhancements provided by gVNIC. Users will benefit from these
improvements without needing to create custom images.
[1] https://cloud.google.com/compute/docs/networking/using-gvnic#create_a_vm_with_gvnic_support
Reviewed by: cperciva
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D43411
---
release/Makefile.gce | 1 +
1 file changed, 1 insertion(+)
diff --git a/release/Makefile.gce b/release/Makefile.gce
index e84b2df809a9..f244e6c89640 100644
--- a/release/Makefile.gce
+++ b/release/Makefile.gce
@@ -73,6 +73,7 @@ gce-do-upload-${_FS}:
gs://${GCE_BUCKET}/
/usr/local/bin/gcloud compute images create ${GCE_TARGET_${_FS}} \
--family=${GCE_FAMILY}${GCE_FAMILY_SUFX} ${GCE_LICENSE} \
+ --guest-os-features=GVNIC \
--source-uri gs://${GCE_BUCKET}/${GCE_TARGET_${_FS}}.tar.gz
touch ${.OBJDIR}/${.TARGET}
.endfor