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
|
cloud/gcp
|
||||||
unsupported
|
unsupported
|
|
@ -15,9 +15,9 @@
|
||||||
# Pre-test setup
|
# Pre-test setup
|
||||||
- name: create a disk
|
- name: create a disk
|
||||||
google.cloud.gcp_compute_disk:
|
google.cloud.gcp_compute_disk:
|
||||||
name: disk-instance
|
name: "{{ resource_prefix }}"
|
||||||
size_gb: 50
|
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
|
zone: us-central1-a
|
||||||
project: "{{ gcp_project }}"
|
project: "{{ gcp_project }}"
|
||||||
auth_kind: "{{ gcp_cred_kind }}"
|
auth_kind: "{{ gcp_cred_kind }}"
|
||||||
|
@ -26,10 +26,11 @@
|
||||||
register: disk
|
register: disk
|
||||||
- name: create a network
|
- name: create a network
|
||||||
google.cloud.gcp_compute_network:
|
google.cloud.gcp_compute_network:
|
||||||
name: network-instance
|
name: "{{ resource_prefix }}"
|
||||||
project: "{{ gcp_project }}"
|
project: "{{ gcp_project }}"
|
||||||
auth_kind: "{{ gcp_cred_kind }}"
|
auth_kind: "{{ gcp_cred_kind }}"
|
||||||
service_account_file: "{{ gcp_cred_file }}"
|
service_account_file: "{{ gcp_cred_file }}"
|
||||||
|
auto_create_subnetworks: true
|
||||||
state: present
|
state: present
|
||||||
register: network
|
register: network
|
||||||
- name: create a address
|
- name: create a address
|
||||||
|
@ -55,7 +56,6 @@
|
||||||
initialize_params:
|
initialize_params:
|
||||||
disk_type: local-ssd
|
disk_type: local-ssd
|
||||||
metadata:
|
metadata:
|
||||||
startup-script-url: gs:://graphite-playground/bootstrap.sh
|
|
||||||
cost-center: '12345'
|
cost-center: '12345'
|
||||||
labels:
|
labels:
|
||||||
environment: production
|
environment: production
|
||||||
|
@ -80,12 +80,11 @@
|
||||||
boot: 'true'
|
boot: 'true'
|
||||||
source: "{{ disk }}"
|
source: "{{ disk }}"
|
||||||
- auto_delete: 'true'
|
- auto_delete: 'true'
|
||||||
interface: NVME
|
interface: SCS
|
||||||
type: SCRATCH
|
type: SCRATCH
|
||||||
initialize_params:
|
initialize_params:
|
||||||
disk_type: local-ssd
|
disk_type: local-ssd
|
||||||
metadata:
|
metadata:
|
||||||
startup-script-url: gs:://graphite-playground/bootstrap.sh
|
|
||||||
cost-center: '12345'
|
cost-center: '12345'
|
||||||
labels:
|
labels:
|
||||||
environment: production
|
environment: production
|
||||||
|
@ -135,7 +134,6 @@
|
||||||
initialize_params:
|
initialize_params:
|
||||||
disk_type: local-ssd
|
disk_type: local-ssd
|
||||||
metadata:
|
metadata:
|
||||||
startup-script-url: gs:://graphite-playground/bootstrap.sh
|
|
||||||
cost-center: '12345'
|
cost-center: '12345'
|
||||||
labels:
|
labels:
|
||||||
environment: production
|
environment: production
|
||||||
|
@ -170,7 +168,6 @@
|
||||||
initialize_params:
|
initialize_params:
|
||||||
disk_type: local-ssd
|
disk_type: local-ssd
|
||||||
metadata:
|
metadata:
|
||||||
startup-script-url: gs:://graphite-playground/bootstrap.sh
|
|
||||||
cost-center: '12345'
|
cost-center: '12345'
|
||||||
labels:
|
labels:
|
||||||
environment: production
|
environment: production
|
||||||
|
@ -220,7 +217,6 @@
|
||||||
initialize_params:
|
initialize_params:
|
||||||
disk_type: local-ssd
|
disk_type: local-ssd
|
||||||
metadata:
|
metadata:
|
||||||
startup-script-url: gs:://graphite-playground/bootstrap.sh
|
|
||||||
cost-center: '12345'
|
cost-center: '12345'
|
||||||
labels:
|
labels:
|
||||||
environment: production
|
environment: production
|
||||||
|
@ -255,16 +251,17 @@
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
- name: delete a network
|
- name: delete a network
|
||||||
google.cloud.gcp_compute_network:
|
google.cloud.gcp_compute_network:
|
||||||
name: network-instance
|
name: "{{ resource_prefix }}"
|
||||||
project: "{{ gcp_project }}"
|
project: "{{ gcp_project }}"
|
||||||
auth_kind: "{{ gcp_cred_kind }}"
|
auth_kind: "{{ gcp_cred_kind }}"
|
||||||
service_account_file: "{{ gcp_cred_file }}"
|
service_account_file: "{{ gcp_cred_file }}"
|
||||||
|
auto_create_subnetworks: true
|
||||||
state: absent
|
state: absent
|
||||||
register: network
|
register: network
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
- name: delete a disk
|
- name: delete a disk
|
||||||
google.cloud.gcp_compute_disk:
|
google.cloud.gcp_compute_disk:
|
||||||
name: disk-instance
|
name: "{{ resource_prefix }}"
|
||||||
size_gb: 50
|
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-1604-lts
|
||||||
zone: us-central1-a
|
zone: us-central1-a
|
||||||
|
|
Loading…
Add table
Reference in a new issue