how do i update a GCP image using a CI.CD pipeline?
currently this is what i do
1. I use packer to build and customize the vmdk on my mac laptop
2. upload the vmdk to cloud bucker with gsutil
3. import the image to library:
gcloud compute images import rocky-linux9-custom-date-xxx \
--source-file=gs://xxxxxx/RockyLinux-disk001.vmdk
4. delete the old image
any idea?