From fb258ababa2136634c5baf45d9f15865f1607f44 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Thu, 2 May 2024 16:23:08 +0200 Subject: [PATCH] Add insecure_registry property to coe_cluster_templates This property was missing from API documentation while being supported for quite some time. Change-Id: Idc1e1d78cb33f3183af00ee19446ccfd1f00f266 --- plugins/modules/coe_cluster_template.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/plugins/modules/coe_cluster_template.py b/plugins/modules/coe_cluster_template.py index ecc3a688..7217a8b4 100644 --- a/plugins/modules/coe_cluster_template.py +++ b/plugins/modules/coe_cluster_template.py @@ -80,6 +80,10 @@ options: - Magnum's default value for I(is_registry_enabled) is C(false). type: bool aliases: ['registry_enabled'] + insecure_registry: + description: + - The URL pointing to users own private insecure docker registry. + type: str is_tls_disabled: description: - Indicates whether the TLS should be disabled. @@ -342,6 +346,7 @@ class COEClusterTemplateModule(OpenStackModule): keypair_id=dict(), labels=dict(type='raw'), master_flavor_id=dict(), + insecure_registry=dict(), is_master_lb_enabled=dict(type='bool', default=False, aliases=['master_lb_enabled']), is_public=dict(type='bool', aliases=['public']), @@ -412,6 +417,7 @@ class COEClusterTemplateModule(OpenStackModule): 'fixed_subnet', 'flavor_id', 'http_proxy', 'https_proxy', 'image_id', + 'insecure_registry', 'is_floating_ip_enabled', 'is_master_lb_enabled', 'is_public', 'is_registry_enabled', @@ -458,7 +464,7 @@ class COEClusterTemplateModule(OpenStackModule): 'external_network_id', 'fixed_network', 'fixed_subnet', 'flavor_id', 'http_proxy', 'https_proxy', 'image_id', - 'is_floating_ip_enabled', + 'insecure_registry', 'is_floating_ip_enabled', 'is_master_lb_enabled', 'is_public', 'is_registry_enabled', 'is_tls_disabled', 'keypair_id', 'master_flavor_id', 'name',