Adding support for ip_allocation_policy->stack_type

This commit is contained in:
Samir Faci 2023-03-10 11:45:12 -05:00 committed by Yusuke Tsutsumi
parent cd35f3bce6
commit 86e0cef208
2 changed files with 17 additions and 4 deletions

View file

@ -9,7 +9,7 @@ namespace: google
name: cloud name: cloud
# The version of the collection. Must be compatible with semantic versioning # The version of the collection. Must be compatible with semantic versioning
version: "1.1.4" version: "1.1.3"
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection # The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md readme: README.md
@ -17,8 +17,9 @@ readme: README.md
# A list of the collection's content authors. Can be just the name or in the format 'Full Name <email> (url) # A list of the collection's content authors. Can be just the name or in the format 'Full Name <email> (url)
# @nicks:irc/im.site#channel' # @nicks:irc/im.site#channel'
authors: authors:
- Google <alexstephen@google.com> - Google <alexstephen@google.com>
- Google <yusuketsutsumi@google.com> - Google <yusuketsutsumi@google.com>
### OPTIONAL but strongly recommended ### OPTIONAL but strongly recommended
@ -28,7 +29,7 @@ description: The Google Cloud Platform collection.
# Either a single license or a list of licenses for content inside of a collection. Ansible Galaxy currently only # Either a single license or a list of licenses for content inside of a collection. Ansible Galaxy currently only
# accepts L(SPDX,https://spdx.org/licenses/) licenses. This key is mutually exclusive with 'license_file' # accepts L(SPDX,https://spdx.org/licenses/) licenses. This key is mutually exclusive with 'license_file'
license: license:
- GPL-2.0-or-later - GPL-2.0-or-later
# The path to the license file for the collection. This path is relative to the root of the collection. This key is # The path to the license file for the collection. This path is relative to the root of the collection. This key is
# mutually exclusive with 'license' # mutually exclusive with 'license'

View file

@ -552,6 +552,11 @@ options:
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask. - Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
required: false required: false
type: str type: str
stack_type:
description:
- The IP stack type of the cluster, possible values: (STACK_TYPE_UNSPECIFIED, IPV4, IPV4_IPV6)
required: false
type: str
initial_cluster_version: initial_cluster_version:
description: description:
- The software version of the master endpoint and kubelets used in the cluster - The software version of the master endpoint and kubelets used in the cluster
@ -1257,6 +1262,11 @@ ipAllocationPolicy:
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask. - Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
returned: success returned: success
type: str type: str
stackType:
description:
- The IP stack type of the cluster, possible values: (STACK_TYPE_UNSPECIFIED, IPV4, IPV4_IPV6)
type: str
returned: success
endpoint: endpoint:
description: description:
- The IP address of this cluster's master endpoint. - The IP address of this cluster's master endpoint.
@ -1564,6 +1574,7 @@ def main():
node_ipv4_cidr_block=dict(type='str'), node_ipv4_cidr_block=dict(type='str'),
services_ipv4_cidr_block=dict(type='str'), services_ipv4_cidr_block=dict(type='str'),
tpu_ipv4_cidr_block=dict(type='str'), tpu_ipv4_cidr_block=dict(type='str'),
stack_type=dict(type='str'),
), ),
), ),
initial_cluster_version=dict(type='str'), initial_cluster_version=dict(type='str'),
@ -2253,6 +2264,7 @@ class ClusterIpallocationpolicy(object):
u'nodeIpv4CidrBlock': self.request.get('node_ipv4_cidr_block'), u'nodeIpv4CidrBlock': self.request.get('node_ipv4_cidr_block'),
u'servicesIpv4CidrBlock': self.request.get('services_ipv4_cidr_block'), u'servicesIpv4CidrBlock': self.request.get('services_ipv4_cidr_block'),
u'tpuIpv4CidrBlock': self.request.get('tpu_ipv4_cidr_block'), u'tpuIpv4CidrBlock': self.request.get('tpu_ipv4_cidr_block'),
u'stackType': self.request.get('stack_type'),
} }
) )