mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
adding new fields to container clusters (#363)
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
aabadcfa7f
commit
beab56c1e1
2 changed files with 275 additions and 0 deletions
|
@ -436,6 +436,80 @@ options:
|
|||
- Constraint enforced on the max num of pods per node.
|
||||
required: false
|
||||
type: str
|
||||
ip_allocation_policy:
|
||||
description:
|
||||
- Configuration for controlling how IPs are allocated in the cluster.
|
||||
required: false
|
||||
type: dict
|
||||
version_added: 2.9
|
||||
suboptions:
|
||||
use_ip_aliases:
|
||||
description:
|
||||
- Whether alias IPs will be used for pod IPs in the cluster.
|
||||
required: false
|
||||
type: bool
|
||||
create_subnetwork:
|
||||
description:
|
||||
- Whether a new subnetwork will be created automatically for the cluster.
|
||||
required: false
|
||||
type: bool
|
||||
subnetwork_name:
|
||||
description:
|
||||
- A custom subnetwork name to be used if createSubnetwork is true.
|
||||
- If this field is empty, then an automatic name will be chosen for the new
|
||||
subnetwork.
|
||||
required: false
|
||||
type: str
|
||||
cluster_secondary_range_name:
|
||||
description:
|
||||
- The name of the secondary range to be used for the cluster CIDR block. The
|
||||
secondary range will be used for pod IP addresses.
|
||||
- This must be an existing secondary range associated with the cluster subnetwork
|
||||
.
|
||||
required: false
|
||||
type: str
|
||||
services_secondary_range_name:
|
||||
description:
|
||||
- The name of the secondary range to be used as for the services CIDR block.
|
||||
The secondary range will be used for service ClusterIPs. This must be an
|
||||
existing secondary range associated with the cluster subnetwork.
|
||||
required: false
|
||||
type: str
|
||||
cluster_ipv4_cidr_block:
|
||||
description:
|
||||
- The IP address range for the cluster pod IPs. If this field is set, then
|
||||
cluster.cluster_ipv4_cidr must be left blank.
|
||||
- This field is only applicable when useIpAliases is true.
|
||||
- Set to blank to have a range chosen with the default size.
|
||||
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
|
||||
required: false
|
||||
type: str
|
||||
node_ipv4_cidr_block:
|
||||
description:
|
||||
- The IP address range of the instance IPs in this cluster.
|
||||
- This is applicable only if createSubnetwork is true.
|
||||
- Set to blank to have a range chosen with the default size.
|
||||
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
|
||||
required: false
|
||||
type: str
|
||||
services_ipv4_cidr_block:
|
||||
description:
|
||||
- The IP address range of the services IPs in this cluster. If blank, a range
|
||||
will be automatically chosen with the default size.
|
||||
- This field is only applicable when useIpAliases is true.
|
||||
- Set to blank to have a range chosen with the default size.
|
||||
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
|
||||
required: false
|
||||
type: str
|
||||
tpu_ipv4_cidr_block:
|
||||
description:
|
||||
- The IP address range of the Cloud TPUs in this cluster. If unspecified,
|
||||
a range will be automatically chosen with the default size.
|
||||
- This field is only applicable when useIpAliases is true.
|
||||
- If unspecified, the range will use the default size.
|
||||
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
|
||||
required: false
|
||||
type: str
|
||||
enable_tpu:
|
||||
description:
|
||||
- Enable the ability to use Cloud TPUs in this cluster.
|
||||
|
@ -893,6 +967,79 @@ defaultMaxPodsConstraint:
|
|||
- Constraint enforced on the max num of pods per node.
|
||||
returned: success
|
||||
type: str
|
||||
ipAllocationPolicy:
|
||||
description:
|
||||
- Configuration for controlling how IPs are allocated in the cluster.
|
||||
returned: success
|
||||
type: complex
|
||||
contains:
|
||||
useIpAliases:
|
||||
description:
|
||||
- Whether alias IPs will be used for pod IPs in the cluster.
|
||||
returned: success
|
||||
type: bool
|
||||
createSubnetwork:
|
||||
description:
|
||||
- Whether a new subnetwork will be created automatically for the cluster.
|
||||
returned: success
|
||||
type: bool
|
||||
subnetworkName:
|
||||
description:
|
||||
- A custom subnetwork name to be used if createSubnetwork is true.
|
||||
- If this field is empty, then an automatic name will be chosen for the new
|
||||
subnetwork.
|
||||
returned: success
|
||||
type: str
|
||||
clusterSecondaryRangeName:
|
||||
description:
|
||||
- The name of the secondary range to be used for the cluster CIDR block. The
|
||||
secondary range will be used for pod IP addresses.
|
||||
- This must be an existing secondary range associated with the cluster subnetwork
|
||||
.
|
||||
returned: success
|
||||
type: str
|
||||
servicesSecondaryRangeName:
|
||||
description:
|
||||
- The name of the secondary range to be used as for the services CIDR block.
|
||||
The secondary range will be used for service ClusterIPs. This must be an existing
|
||||
secondary range associated with the cluster subnetwork.
|
||||
returned: success
|
||||
type: str
|
||||
clusterIpv4CidrBlock:
|
||||
description:
|
||||
- The IP address range for the cluster pod IPs. If this field is set, then cluster.cluster_ipv4_cidr
|
||||
must be left blank.
|
||||
- This field is only applicable when useIpAliases is true.
|
||||
- Set to blank to have a range chosen with the default size.
|
||||
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
|
||||
returned: success
|
||||
type: str
|
||||
nodeIpv4CidrBlock:
|
||||
description:
|
||||
- The IP address range of the instance IPs in this cluster.
|
||||
- This is applicable only if createSubnetwork is true.
|
||||
- Set to blank to have a range chosen with the default size.
|
||||
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
|
||||
returned: success
|
||||
type: str
|
||||
servicesIpv4CidrBlock:
|
||||
description:
|
||||
- The IP address range of the services IPs in this cluster. If blank, a range
|
||||
will be automatically chosen with the default size.
|
||||
- This field is only applicable when useIpAliases is true.
|
||||
- Set to blank to have a range chosen with the default size.
|
||||
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
|
||||
returned: success
|
||||
type: str
|
||||
tpuIpv4CidrBlock:
|
||||
description:
|
||||
- The IP address range of the Cloud TPUs in this cluster. If unspecified, a
|
||||
range will be automatically chosen with the default size.
|
||||
- This field is only applicable when useIpAliases is true.
|
||||
- If unspecified, the range will use the default size.
|
||||
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
|
||||
returned: success
|
||||
type: str
|
||||
endpoint:
|
||||
description:
|
||||
- The IP address of this cluster's master endpoint.
|
||||
|
@ -1074,6 +1221,20 @@ def main():
|
|||
legacy_abac=dict(type='dict', options=dict(enabled=dict(type='bool'))),
|
||||
network_policy=dict(type='dict', options=dict(provider=dict(type='str'), enabled=dict(type='bool'))),
|
||||
default_max_pods_constraint=dict(type='dict', options=dict(max_pods_per_node=dict(type='str'))),
|
||||
ip_allocation_policy=dict(
|
||||
type='dict',
|
||||
options=dict(
|
||||
use_ip_aliases=dict(type='bool'),
|
||||
create_subnetwork=dict(type='bool'),
|
||||
subnetwork_name=dict(type='str'),
|
||||
cluster_secondary_range_name=dict(type='str'),
|
||||
services_secondary_range_name=dict(type='str'),
|
||||
cluster_ipv4_cidr_block=dict(type='str'),
|
||||
node_ipv4_cidr_block=dict(type='str'),
|
||||
services_ipv4_cidr_block=dict(type='str'),
|
||||
tpu_ipv4_cidr_block=dict(type='str'),
|
||||
),
|
||||
),
|
||||
enable_tpu=dict(type='bool'),
|
||||
tpu_ipv4_cidr_block=dict(type='str'),
|
||||
location=dict(required=True, type='str', aliases=['zone']),
|
||||
|
@ -1149,6 +1310,7 @@ def resource_to_request(module):
|
|||
u'legacyAbac': ClusterLegacyabac(module.params.get('legacy_abac', {}), module).to_request(),
|
||||
u'networkPolicy': ClusterNetworkpolicy(module.params.get('network_policy', {}), module).to_request(),
|
||||
u'defaultMaxPodsConstraint': ClusterDefaultmaxpodsconstraint(module.params.get('default_max_pods_constraint', {}), module).to_request(),
|
||||
u'ipAllocationPolicy': ClusterIpallocationpolicy(module.params.get('ip_allocation_policy', {}), module).to_request(),
|
||||
u'enableTpu': module.params.get('enable_tpu'),
|
||||
u'tpuIpv4CidrBlock': module.params.get('tpu_ipv4_cidr_block'),
|
||||
}
|
||||
|
@ -1235,6 +1397,7 @@ def response_to_hash(module, response):
|
|||
u'legacyAbac': ClusterLegacyabac(response.get(u'legacyAbac', {}), module).from_response(),
|
||||
u'networkPolicy': ClusterNetworkpolicy(response.get(u'networkPolicy', {}), module).from_response(),
|
||||
u'defaultMaxPodsConstraint': ClusterDefaultmaxpodsconstraint(response.get(u'defaultMaxPodsConstraint', {}), module).from_response(),
|
||||
u'ipAllocationPolicy': ClusterIpallocationpolicy(response.get(u'ipAllocationPolicy', {}), module).from_response(),
|
||||
u'endpoint': response.get(u'endpoint'),
|
||||
u'initialClusterVersion': response.get(u'initialClusterVersion'),
|
||||
u'currentMasterVersion': response.get(u'currentMasterVersion'),
|
||||
|
@ -1672,6 +1835,45 @@ class ClusterDefaultmaxpodsconstraint(object):
|
|||
return remove_nones_from_dict({u'maxPodsPerNode': self.request.get(u'maxPodsPerNode')})
|
||||
|
||||
|
||||
class ClusterIpallocationpolicy(object):
|
||||
def __init__(self, request, module):
|
||||
self.module = module
|
||||
if request:
|
||||
self.request = request
|
||||
else:
|
||||
self.request = {}
|
||||
|
||||
def to_request(self):
|
||||
return remove_nones_from_dict(
|
||||
{
|
||||
u'useIpAliases': self.request.get('use_ip_aliases'),
|
||||
u'createSubnetwork': self.request.get('create_subnetwork'),
|
||||
u'subnetworkName': self.request.get('subnetwork_name'),
|
||||
u'clusterSecondaryRangeName': self.request.get('cluster_secondary_range_name'),
|
||||
u'servicesSecondaryRangeName': self.request.get('services_secondary_range_name'),
|
||||
u'clusterIpv4CidrBlock': self.request.get('cluster_ipv4_cidr_block'),
|
||||
u'nodeIpv4CidrBlock': self.request.get('node_ipv4_cidr_block'),
|
||||
u'servicesIpv4CidrBlock': self.request.get('services_ipv4_cidr_block'),
|
||||
u'tpuIpv4CidrBlock': self.request.get('tpu_ipv4_cidr_block'),
|
||||
}
|
||||
)
|
||||
|
||||
def from_response(self):
|
||||
return remove_nones_from_dict(
|
||||
{
|
||||
u'useIpAliases': self.request.get(u'useIpAliases'),
|
||||
u'createSubnetwork': self.request.get(u'createSubnetwork'),
|
||||
u'subnetworkName': self.request.get(u'subnetworkName'),
|
||||
u'clusterSecondaryRangeName': self.request.get(u'clusterSecondaryRangeName'),
|
||||
u'servicesSecondaryRangeName': self.request.get(u'servicesSecondaryRangeName'),
|
||||
u'clusterIpv4CidrBlock': self.request.get(u'clusterIpv4CidrBlock'),
|
||||
u'nodeIpv4CidrBlock': self.request.get(u'nodeIpv4CidrBlock'),
|
||||
u'servicesIpv4CidrBlock': self.request.get(u'servicesIpv4CidrBlock'),
|
||||
u'tpuIpv4CidrBlock': self.request.get(u'tpuIpv4CidrBlock'),
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
class ClusterConditionsArray(object):
|
||||
def __init__(self, request, module):
|
||||
self.module = module
|
||||
|
|
|
@ -470,6 +470,79 @@ resources:
|
|||
- Constraint enforced on the max num of pods per node.
|
||||
returned: success
|
||||
type: str
|
||||
ipAllocationPolicy:
|
||||
description:
|
||||
- Configuration for controlling how IPs are allocated in the cluster.
|
||||
returned: success
|
||||
type: complex
|
||||
contains:
|
||||
useIpAliases:
|
||||
description:
|
||||
- Whether alias IPs will be used for pod IPs in the cluster.
|
||||
returned: success
|
||||
type: bool
|
||||
createSubnetwork:
|
||||
description:
|
||||
- Whether a new subnetwork will be created automatically for the cluster.
|
||||
returned: success
|
||||
type: bool
|
||||
subnetworkName:
|
||||
description:
|
||||
- A custom subnetwork name to be used if createSubnetwork is true.
|
||||
- If this field is empty, then an automatic name will be chosen for the
|
||||
new subnetwork.
|
||||
returned: success
|
||||
type: str
|
||||
clusterSecondaryRangeName:
|
||||
description:
|
||||
- The name of the secondary range to be used for the cluster CIDR block.
|
||||
The secondary range will be used for pod IP addresses.
|
||||
- This must be an existing secondary range associated with the cluster subnetwork
|
||||
.
|
||||
returned: success
|
||||
type: str
|
||||
servicesSecondaryRangeName:
|
||||
description:
|
||||
- The name of the secondary range to be used as for the services CIDR block.
|
||||
The secondary range will be used for service ClusterIPs. This must be
|
||||
an existing secondary range associated with the cluster subnetwork.
|
||||
returned: success
|
||||
type: str
|
||||
clusterIpv4CidrBlock:
|
||||
description:
|
||||
- The IP address range for the cluster pod IPs. If this field is set, then
|
||||
cluster.cluster_ipv4_cidr must be left blank.
|
||||
- This field is only applicable when useIpAliases is true.
|
||||
- Set to blank to have a range chosen with the default size.
|
||||
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
|
||||
returned: success
|
||||
type: str
|
||||
nodeIpv4CidrBlock:
|
||||
description:
|
||||
- The IP address range of the instance IPs in this cluster.
|
||||
- This is applicable only if createSubnetwork is true.
|
||||
- Set to blank to have a range chosen with the default size.
|
||||
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
|
||||
returned: success
|
||||
type: str
|
||||
servicesIpv4CidrBlock:
|
||||
description:
|
||||
- The IP address range of the services IPs in this cluster. If blank, a
|
||||
range will be automatically chosen with the default size.
|
||||
- This field is only applicable when useIpAliases is true.
|
||||
- Set to blank to have a range chosen with the default size.
|
||||
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
|
||||
returned: success
|
||||
type: str
|
||||
tpuIpv4CidrBlock:
|
||||
description:
|
||||
- The IP address range of the Cloud TPUs in this cluster. If unspecified,
|
||||
a range will be automatically chosen with the default size.
|
||||
- This field is only applicable when useIpAliases is true.
|
||||
- If unspecified, the range will use the default size.
|
||||
- Set to /netmask (e.g. /14) to have a range chosen with a specific netmask.
|
||||
returned: success
|
||||
type: str
|
||||
endpoint:
|
||||
description:
|
||||
- The IP address of this cluster's master endpoint.
|
||||
|
|
Loading…
Add table
Reference in a new issue