mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-21 00:19:09 -07:00
New module: GCP Container Clusters (#37324)
This commit is contained in:
parent
609b1827e1
commit
18b463e17b
5 changed files with 1099 additions and 0 deletions
2
test/integration/targets/gcp_container_cluster/aliases
Normal file
2
test/integration/targets/gcp_container_cluster/aliases
Normal file
|
@ -0,0 +1,2 @@
|
|||
cloud/gcp
|
||||
unsupported
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
# defaults file
|
||||
resource_name: '{{resource_prefix}}'
|
142
test/integration/targets/gcp_container_cluster/tasks/main.yml
Normal file
142
test/integration/targets/gcp_container_cluster/tasks/main.yml
Normal file
|
@ -0,0 +1,142 @@
|
|||
---
|
||||
# ----------------------------------------------------------------------------
|
||||
#
|
||||
# *** 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: delete a cluster
|
||||
gcp_container_cluster:
|
||||
name: "{{ resource_name }}"
|
||||
initial_node_count: 2
|
||||
master_auth:
|
||||
username: "cluster_admin"
|
||||
password: "my-secret-password"
|
||||
node_config:
|
||||
machine_type: "n1-standard-4"
|
||||
disk_size_gb: 500
|
||||
zone: 'us-central1-a'
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
scopes:
|
||||
- https://www.googleapis.com/auth/cloud-platform
|
||||
state: absent
|
||||
#----------------------------------------------------------
|
||||
- name: create a cluster
|
||||
gcp_container_cluster:
|
||||
name: "{{ resource_name }}"
|
||||
initial_node_count: 2
|
||||
master_auth:
|
||||
username: "cluster_admin"
|
||||
password: "my-secret-password"
|
||||
node_config:
|
||||
machine_type: "n1-standard-4"
|
||||
disk_size_gb: 500
|
||||
zone: 'us-central1-a'
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
scopes:
|
||||
- https://www.googleapis.com/auth/cloud-platform
|
||||
state: present
|
||||
register: result
|
||||
- name: assert changed is true
|
||||
assert:
|
||||
that:
|
||||
- result.changed == true
|
||||
- name: verify that cluster was created
|
||||
shell: |
|
||||
gcloud container clusters describe --project="{{ gcp_project}}" --zone=us-central1-a "{{ resource_name }}"
|
||||
register: results
|
||||
- name: verify that command succeeded
|
||||
assert:
|
||||
that:
|
||||
- results.rc == 0
|
||||
# ----------------------------------------------------------------------------
|
||||
- name: create a cluster that already exists
|
||||
gcp_container_cluster:
|
||||
name: "{{ resource_name }}"
|
||||
initial_node_count: 2
|
||||
master_auth:
|
||||
username: "cluster_admin"
|
||||
password: "my-secret-password"
|
||||
node_config:
|
||||
machine_type: "n1-standard-4"
|
||||
disk_size_gb: 500
|
||||
zone: 'us-central1-a'
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
scopes:
|
||||
- https://www.googleapis.com/auth/cloud-platform
|
||||
state: present
|
||||
register: result
|
||||
- name: assert changed is false
|
||||
assert:
|
||||
that:
|
||||
- result.changed == false
|
||||
#----------------------------------------------------------
|
||||
- name: delete a cluster
|
||||
gcp_container_cluster:
|
||||
name: "{{ resource_name }}"
|
||||
initial_node_count: 2
|
||||
master_auth:
|
||||
username: "cluster_admin"
|
||||
password: "my-secret-password"
|
||||
node_config:
|
||||
machine_type: "n1-standard-4"
|
||||
disk_size_gb: 500
|
||||
zone: 'us-central1-a'
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
scopes:
|
||||
- https://www.googleapis.com/auth/cloud-platform
|
||||
state: absent
|
||||
register: result
|
||||
- name: assert changed is true
|
||||
assert:
|
||||
that:
|
||||
- result.changed == true
|
||||
- name: verify that cluster was deleted
|
||||
shell: |
|
||||
gcloud container clusters describe --project="{{ gcp_project}}" --zone=us-central1-a "{{ resource_name }}"
|
||||
register: results
|
||||
failed_when: results.rc == 0
|
||||
- name: verify that command succeeded
|
||||
assert:
|
||||
that:
|
||||
- results.rc == 1
|
||||
- "\"No cluster named '{{ resource_name }}' in {{ gcp_project }}.\" in results.stderr"
|
||||
# ----------------------------------------------------------------------------
|
||||
- name: delete a cluster that does not exist
|
||||
gcp_container_cluster:
|
||||
name: "{{ resource_name }}"
|
||||
initial_node_count: 2
|
||||
master_auth:
|
||||
username: "cluster_admin"
|
||||
password: "my-secret-password"
|
||||
node_config:
|
||||
machine_type: "n1-standard-4"
|
||||
disk_size_gb: 500
|
||||
zone: 'us-central1-a'
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
scopes:
|
||||
- https://www.googleapis.com/auth/cloud-platform
|
||||
state: absent
|
||||
register: result
|
||||
- name: assert changed is false
|
||||
assert:
|
||||
that:
|
||||
- result.changed == false
|
Loading…
Add table
Add a link
Reference in a new issue