git: 0efd9e1c6b86 - stable/14 - releng-gce: Advertise the availability of gVNIC support in GCE images.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 15 Jan 2024 00:28:58 UTC
The branch stable/14 has been updated by delphij:
URL: https://cgit.FreeBSD.org/src/commit/?id=0efd9e1c6b86461d8719341ab95560a9d309a576
commit 0efd9e1c6b86461d8719341ab95560a9d309a576
Author: Xin LI <delphij@FreeBSD.org>
AuthorDate: 2024-01-12 05:38:04 +0000
Commit: Xin LI <delphij@FreeBSD.org>
CommitDate: 2024-01-15 00:28:35 +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
Differential Revision: https://reviews.freebsd.org/D43411
(cherry picked from commit e872a4013fc325460924772f935b599151bd3d25)
---
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