chore: Updating Debian 11 to 13 - #2333
m-strzelczyk wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the default Debian image family from debian-11 to debian-13 in both create_instance.php and create_instance_with_encryption_key.php. The reviewer points out that Debian 13 is currently a testing distribution and may not be fully supported or stable in Google Cloud Compute Engine yet. It is recommended to use the current stable version, Debian 12 (debian-12), instead.
| string $instanceName, | ||
| string $machineType = 'n1-standard-1', | ||
| string $sourceImage = 'projects/debian-cloud/global/images/family/debian-11', | ||
| string $sourceImage = 'projects/debian-cloud/global/images/family/debian-13', |
There was a problem hiding this comment.
Debian 13 (Trixie) is currently the testing distribution and is not yet officially released as a stable version. Using debian-13 as the default image family may result in failures or instability because the image family might not be available or fully supported in Google Cloud Compute Engine yet. It is recommended to use the current stable version, Debian 12 (debian-12), instead.
string $sourceImage = 'projects/debian-cloud/global/images/family/debian-12',| string $key, | ||
| string $machineType = 'n1-standard-1', | ||
| string $sourceImage = 'projects/debian-cloud/global/images/family/debian-11', | ||
| string $sourceImage = 'projects/debian-cloud/global/images/family/debian-13', |
There was a problem hiding this comment.
Debian 13 (Trixie) is currently the testing distribution and is not yet officially released as a stable version. Using debian-13 as the default image family may result in failures or instability because the image family might not be available or fully supported in Google Cloud Compute Engine yet. It is recommended to use the current stable version, Debian 12 (debian-12), instead.
string $sourceImage = 'projects/debian-cloud/global/images/family/debian-12',
No description provided.