Google Cloud Storage 中的 daisy-bkt 存储桶是什么?
What is the daisy-bkt bucket in Google Cloud Storage?
我刚刚注意到在我的 google 云存储项目中创建了一个新存储桶。我不知道它为什么在那里或是谁创造的。而且,它占用了 2.6 GB!
如果我执行gsutil du -h gs://PROJECT_NAME-daisy-bkt-us-central1
我得到:
5.72 KiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/logs/daisy.log
111.72 KiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/logs/inst-importer-inflate-7y6j3-serial-port1.log
117.44 KiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/logs/
10.51 KiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/sources/import_image.sh
2.58 GiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/sources/source_disk_file
2.58 GiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/sources/
2.58 GiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/
2.58 GiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/
我可以看到它是在 2021 年 5 月 14 日创建的。
有人知道这是什么吗?而且,删除安全吗?
我自己想出来了。事实证明,就像 John Hanley 友善地指出的那样,我导入了一个虚拟机。我猜这个桶是作为导入的一部分创建的。
我导入它的原因是尝试按照此处的指南在 VM 上设置 Meilisearch:https://docs.meilisearch.com/create/how_to/gcp.html
由于没有使用美力搜索,我最终删除了虚拟机,但我想这个桶被留下了。
我要删除它,因为我什至没有留下 VM,也想不出我需要那个存储桶的原因。 (如果结果证明这是一个糟糕的主意并且一切都失败了,我一定会回到这里并post讨论它)
当您导入 VM 映像时会出现此存储桶。为了解释什么是 Daisy,它是一个实现图像管理工作流程的开源项目。该工具基本上在 GCE 中运行导入工作流。
如果存储桶在导入过程中被删除,将会出现问题,因为它当前正在使用。导入过程完成后可以安全删除,只需确保您不再使用该 VM。
有关进一步的解释或详细信息,请查看此 link。
https://googlecloudplatform.github.io/compute-image-tools/daisy.html
我刚刚注意到在我的 google 云存储项目中创建了一个新存储桶。我不知道它为什么在那里或是谁创造的。而且,它占用了 2.6 GB!
如果我执行gsutil du -h gs://PROJECT_NAME-daisy-bkt-us-central1
我得到:
5.72 KiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/logs/daisy.log
111.72 KiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/logs/inst-importer-inflate-7y6j3-serial-port1.log
117.44 KiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/logs/
10.51 KiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/sources/import_image.sh
2.58 GiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/sources/source_disk_file
2.58 GiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/sources/
2.58 GiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/daisy-inflate-20210514-10:18:44-7y6j3/
2.58 GiB gs://PROJECT_NAME-daisy-bkt-us-central1/gce-image-import-2021-05-14T10:18:42Z-prqjy/
我可以看到它是在 2021 年 5 月 14 日创建的。
有人知道这是什么吗?而且,删除安全吗?
我自己想出来了。事实证明,就像 John Hanley 友善地指出的那样,我导入了一个虚拟机。我猜这个桶是作为导入的一部分创建的。
我导入它的原因是尝试按照此处的指南在 VM 上设置 Meilisearch:https://docs.meilisearch.com/create/how_to/gcp.html
由于没有使用美力搜索,我最终删除了虚拟机,但我想这个桶被留下了。
我要删除它,因为我什至没有留下 VM,也想不出我需要那个存储桶的原因。 (如果结果证明这是一个糟糕的主意并且一切都失败了,我一定会回到这里并post讨论它)
当您导入 VM 映像时会出现此存储桶。为了解释什么是 Daisy,它是一个实现图像管理工作流程的开源项目。该工具基本上在 GCE 中运行导入工作流。
如果存储桶在导入过程中被删除,将会出现问题,因为它当前正在使用。导入过程完成后可以安全删除,只需确保您不再使用该 VM。
有关进一步的解释或详细信息,请查看此 link。 https://googlecloudplatform.github.io/compute-image-tools/daisy.html