mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
minor improvement in gcp_compute_instance
The test does not yet pass due to a discovered change, but some progress was made. - updating disk image to an existing, non-EOL image. - updating subnetwork configuration.
This commit is contained in:
parent
6f1ee2b2b4
commit
7cd653e50d
2 changed files with 9 additions and 12 deletions
|
@ -1,2 +1,2 @@
|
|||
cloud/gcp
|
||||
unsupported
|
||||
unsupported
|
|
@ -15,9 +15,9 @@
|
|||
# Pre-test setup
|
||||
- name: create a disk
|
||||
google.cloud.gcp_compute_disk:
|
||||
name: disk-instance
|
||||
name: "{{ resource_prefix }}"
|
||||
size_gb: 50
|
||||
source_image: projects/ubuntu-os-cloud/global/images/family/ubuntu-1604-lts
|
||||
source_image: projects/ubuntu-os-cloud/global/images/family/ubuntu-minimal-2204-lts
|
||||
zone: us-central1-a
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
|
@ -26,10 +26,11 @@
|
|||
register: disk
|
||||
- name: create a network
|
||||
google.cloud.gcp_compute_network:
|
||||
name: network-instance
|
||||
name: "{{ resource_prefix }}"
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
auto_create_subnetworks: true
|
||||
state: present
|
||||
register: network
|
||||
- name: create a address
|
||||
|
@ -55,7 +56,6 @@
|
|||
initialize_params:
|
||||
disk_type: local-ssd
|
||||
metadata:
|
||||
startup-script-url: gs:://graphite-playground/bootstrap.sh
|
||||
cost-center: '12345'
|
||||
labels:
|
||||
environment: production
|
||||
|
@ -80,12 +80,11 @@
|
|||
boot: 'true'
|
||||
source: "{{ disk }}"
|
||||
- auto_delete: 'true'
|
||||
interface: NVME
|
||||
interface: SCS
|
||||
type: SCRATCH
|
||||
initialize_params:
|
||||
disk_type: local-ssd
|
||||
metadata:
|
||||
startup-script-url: gs:://graphite-playground/bootstrap.sh
|
||||
cost-center: '12345'
|
||||
labels:
|
||||
environment: production
|
||||
|
@ -135,7 +134,6 @@
|
|||
initialize_params:
|
||||
disk_type: local-ssd
|
||||
metadata:
|
||||
startup-script-url: gs:://graphite-playground/bootstrap.sh
|
||||
cost-center: '12345'
|
||||
labels:
|
||||
environment: production
|
||||
|
@ -170,7 +168,6 @@
|
|||
initialize_params:
|
||||
disk_type: local-ssd
|
||||
metadata:
|
||||
startup-script-url: gs:://graphite-playground/bootstrap.sh
|
||||
cost-center: '12345'
|
||||
labels:
|
||||
environment: production
|
||||
|
@ -220,7 +217,6 @@
|
|||
initialize_params:
|
||||
disk_type: local-ssd
|
||||
metadata:
|
||||
startup-script-url: gs:://graphite-playground/bootstrap.sh
|
||||
cost-center: '12345'
|
||||
labels:
|
||||
environment: production
|
||||
|
@ -255,16 +251,17 @@
|
|||
ignore_errors: true
|
||||
- name: delete a network
|
||||
google.cloud.gcp_compute_network:
|
||||
name: network-instance
|
||||
name: "{{ resource_prefix }}"
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
auto_create_subnetworks: true
|
||||
state: absent
|
||||
register: network
|
||||
ignore_errors: true
|
||||
- name: delete a disk
|
||||
google.cloud.gcp_compute_disk:
|
||||
name: disk-instance
|
||||
name: "{{ resource_prefix }}"
|
||||
size_gb: 50
|
||||
source_image: projects/ubuntu-os-cloud/global/images/family/ubuntu-1604-lts
|
||||
zone: us-central1-a
|
||||
|
|
Loading…
Add table
Reference in a new issue