diff options
| author | Samuel Littley <samuel.littley@toastwaffle.com> | 2022-03-15 19:47:07 +0000 |
|---|---|---|
| committer | Samuel Littley <samuel.littley@toastwaffle.com> | 2022-03-15 19:47:07 +0000 |
| commit | e33f9b1e83670e1497268e95edf6c894c51dff2c (patch) | |
| tree | 12ff70ccd0b7a8b9716a28963c44e43d0798fc0b | |
| parent | 79c47d072d15bf5ded4c8317abbb87b54f080b17 (diff) | |
| download | compute-archlinux-image-builder-e33f9b1e83670e1497268e95edf6c894c51dff2c.tar.xz | |
Add a list of current images
Fixes #36
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | current-images.txt | 7 | ||||
| -rw-r--r-- | maintaining.md | 5 |
3 files changed, 14 insertions, 0 deletions
@@ -53,6 +53,8 @@ $ gcloud compute instances create INSTANCE_NAME \ --image-project=arch-linux-gce --image-family=arch ``` +For older images, see the current_images.txt file. + ## Build Your Own Image You can build the Arch Linux image yourself with the following procedure: diff --git a/current-images.txt b/current-images.txt new file mode 100644 index 0000000..4c56161 --- /dev/null +++ b/current-images.txt @@ -0,0 +1,7 @@ +NAME PROJECT FAMILY DEPRECATED STATUS +arch-v20200516 arch-linux-gce arch READY +arch-v20200824 arch-linux-gce arch READY +arch-v20210102 arch-linux-gce arch READY +arch-v20210123 arch-linux-gce arch READY +arch-v20210124 arch-linux-gce arch READY +arch-v20220315 arch-linux-gce arch READY diff --git a/maintaining.md b/maintaining.md index 1cdc070..f164df1 100644 --- a/maintaining.md +++ b/maintaining.md @@ -37,6 +37,11 @@ $ gcloud compute instances delete "arch-v${DATE}-test" $ gcloud compute images add-iam-policy-binding "arch-v${DATE}" \ --member='allAuthenticatedUsers' \ --role='roles/compute.imageUser' + +$ gcloud compute images list \ + --project=arch-linux-gce \ + --no-standard-images \ + > current-images.txt ``` ## Managing the Pacman repo |
