From e3b510253beb3c0bca50ead7974dd2a5bbbe664c Mon Sep 17 00:00:00 2001 From: Guillaume Fieni Date: Thu, 4 Jul 2024 07:37:52 +0200 Subject: [PATCH] feat: Update std environment image to Debian 11 --- README.md | 4 ++-- driver/driver.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7da8e8d..7a28655 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ export PATH=$PATH:$GOPATH/bin | `--g5k-password` | `G5K_PASSWORD` | | | `--g5k-site` | `G5K_SITE` | | | `--g5k-walltime` | `G5K_WALLTIME` | "1:00:00" | -| `--g5k-image` | `G5K_IMAGE` | "debian10-x64-std" | +| `--g5k-image` | `G5K_IMAGE` | "debian11-std" | | `--g5k-resource-properties` | `G5K_RESOURCE_PROPERTIES` | | | `--g5k-make-resource-reservation` | `G5K_MAKE_RESOURCE_RESERVATION` | | | `--g5k-use-resource-reservation` | `G5K_USE_RESOURCE_RESERVATION` | | @@ -106,7 +106,7 @@ This can be used as safeguard to protect from deallocating the resource when you More information about the resources reservation are available on the [Grid'5000 Wiki](https://www.grid5000.fr/w/Grid5000:UsagePolicy#Resources_reservation). #### Grid'5000 reference environment reuse -You can reuse the Grid'5000 reference environment (debian 10, buster) instead of redeploying the machine. +You can gain time by reusing the Grid'5000 reference environment instead of redeploying the machine. Doing so will skip the node deployment phase and will save a lot of time at the machine creation. If you don't need a tweaked environment or rely on Grid'5000 services (NFS for example), you should use this option. **Please note that, in this mode, if you reboot the machine by any mean, the reserved resource will be released and the node will be redeployed with the reference environment.** diff --git a/driver/driver.go b/driver/driver.go index 8a0721a..417af8d 100644 --- a/driver/driver.go +++ b/driver/driver.go @@ -17,7 +17,7 @@ import ( ) // g5kReferenceEnvironment is the name of the reference environment automatically deployed on the node by Grid'5000 -const g5kReferenceEnvironmentName string = "debian10-x64-std" +const g5kReferenceEnvironmentName string = "debian11-std" // Driver parameters type Driver struct {