gpt4 book ai didi

python - Ansible gce 模块 : create instance with customize disk size

转载 作者:太空宇宙 更新时间:2023-11-03 12:05:10 25 4
gpt4 key购买 nike

我想创建带有 100 GB 磁盘的 ansible gce 模块的谷歌计算实例。但是 gce 模块中没有用于设置 gce 模块中实例的磁盘大小的配置。

我知道我们可以通过使用 gce_pd 模块创建磁盘然后附加到新实例来解决这个问题,但是有什么合适的方法可以做到这一点吗?

支持它很简单,因为lib cloud lib已经支持这个参数。

最佳答案

似乎不能直接使用,但 gce 模块使用 disks 中的第一项作为引导镜像(参见 code )。

因此您可以如下创建自定义启动盘:

- name: Create custom boot disk
gce_pd:
name: "{{ instance_name }}"
image: "{{ instance_image }}"
size_gb: "{{ disk_size }}"
zone: "{{ zone }"

- name: Launch instance with custom boot disk
gce:
name: "{{ instance_name }}"
image: "{{ instance_image }}"
zone: "{{ zone }}"
disks:
- name: "{{ instance_name }}"
mode: READ_WRITE

关于python - Ansible gce 模块 : create instance with customize disk size,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34411974/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com