Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compute/instances/src/create_instance.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function create_instance(
string $zone,
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',

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

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 $networkName = 'global/networks/default'
) {
// Set the machine type using the specified zone.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function create_instance_with_encryption_key(
string $instanceName,
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',

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

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 $networkName = 'global/networks/default'
) {
// Set the machine type using the specified zone.
Expand Down