mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-07-08 22:30:13 -07:00
ansible node group
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
86cba60a8d
commit
563fb4cf96
69 changed files with 920 additions and 120 deletions
2
tests/integration/targets/gcp_compute_node_group/aliases
Normal file
2
tests/integration/targets/gcp_compute_node_group/aliases
Normal file
|
@ -0,0 +1,2 @@
|
|||
cloud/gcp
|
||||
unsupported
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
resource_name: "{{ resource_prefix }}"
|
|
@ -0,0 +1,148 @@
|
|||
---
|
||||
# ----------------------------------------------------------------------------
|
||||
#
|
||||
# *** AUTO GENERATED CODE *** AUTO GENERATED CODE ***
|
||||
#
|
||||
# ----------------------------------------------------------------------------
|
||||
#
|
||||
# This file is automatically generated by Magic Modules and manual
|
||||
# changes will be clobbered when the file is regenerated.
|
||||
#
|
||||
# Please read more about how to change this file at
|
||||
# https://www.github.com/GoogleCloudPlatform/magic-modules
|
||||
#
|
||||
# ----------------------------------------------------------------------------
|
||||
# Pre-test setup
|
||||
- name: create a node template
|
||||
google.cloud.gcp_compute_node_template:
|
||||
name: "{{ resource_name }}"
|
||||
region: us-central1
|
||||
node_type: n1-node-96-624
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
state: present
|
||||
register: node_template
|
||||
- name: delete a node group
|
||||
google.cloud.gcp_compute_node_group:
|
||||
name: "{{ resource_name }}"
|
||||
zone: us-central1-a
|
||||
description: example group for ansible
|
||||
size: 1
|
||||
node_template: "{{ node_template }}"
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
state: absent
|
||||
#----------------------------------------------------------
|
||||
- name: create a node group
|
||||
google.cloud.gcp_compute_node_group:
|
||||
name: "{{ resource_name }}"
|
||||
zone: us-central1-a
|
||||
description: example group for ansible
|
||||
size: 1
|
||||
node_template: "{{ node_template }}"
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
state: present
|
||||
register: result
|
||||
- name: assert changed is true
|
||||
assert:
|
||||
that:
|
||||
- result.changed == true
|
||||
- name: verify that node_group was created
|
||||
google.cloud.gcp_compute_node_group_info:
|
||||
filters:
|
||||
- name = {{ resource_name }}
|
||||
zone: us-central1-a
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
scopes:
|
||||
- https://www.googleapis.com/auth/compute
|
||||
register: results
|
||||
- name: verify that command succeeded
|
||||
assert:
|
||||
that:
|
||||
- results['resources'] | length == 1
|
||||
# ----------------------------------------------------------------------------
|
||||
- name: create a node group that already exists
|
||||
google.cloud.gcp_compute_node_group:
|
||||
name: "{{ resource_name }}"
|
||||
zone: us-central1-a
|
||||
description: example group for ansible
|
||||
size: 1
|
||||
node_template: "{{ node_template }}"
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
state: present
|
||||
register: result
|
||||
- name: assert changed is false
|
||||
assert:
|
||||
that:
|
||||
- result.changed == false
|
||||
#----------------------------------------------------------
|
||||
- name: delete a node group
|
||||
google.cloud.gcp_compute_node_group:
|
||||
name: "{{ resource_name }}"
|
||||
zone: us-central1-a
|
||||
description: example group for ansible
|
||||
size: 1
|
||||
node_template: "{{ node_template }}"
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
state: absent
|
||||
register: result
|
||||
- name: assert changed is true
|
||||
assert:
|
||||
that:
|
||||
- result.changed == true
|
||||
- name: verify that node_group was deleted
|
||||
google.cloud.gcp_compute_node_group_info:
|
||||
filters:
|
||||
- name = {{ resource_name }}
|
||||
zone: us-central1-a
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
scopes:
|
||||
- https://www.googleapis.com/auth/compute
|
||||
register: results
|
||||
- name: verify that command succeeded
|
||||
assert:
|
||||
that:
|
||||
- results['resources'] | length == 0
|
||||
# ----------------------------------------------------------------------------
|
||||
- name: delete a node group that does not exist
|
||||
google.cloud.gcp_compute_node_group:
|
||||
name: "{{ resource_name }}"
|
||||
zone: us-central1-a
|
||||
description: example group for ansible
|
||||
size: 1
|
||||
node_template: "{{ node_template }}"
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
state: absent
|
||||
register: result
|
||||
- name: assert changed is false
|
||||
assert:
|
||||
that:
|
||||
- result.changed == false
|
||||
#---------------------------------------------------------
|
||||
# Post-test teardown
|
||||
# If errors happen, don't crash the playbook!
|
||||
- name: delete a node template
|
||||
google.cloud.gcp_compute_node_template:
|
||||
name: "{{ resource_name }}"
|
||||
region: us-central1
|
||||
node_type: n1-node-96-624
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
state: absent
|
||||
register: node_template
|
||||
ignore_errors: true
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
- include_tasks: autogen.yml
|
Loading…
Add table
Add a link
Reference in a new issue