|
@@ -147,6 +147,12 @@ options:
|
|
|
required: false
|
|
|
default: haproxy-router
|
|
|
aliases: []
|
|
|
+ extended_validation:
|
|
|
+ description:
|
|
|
+ - If true, configure the router to perform extended validation on routes before admitting them.
|
|
|
+ required: false
|
|
|
+ default: True
|
|
|
+ aliases: []
|
|
|
external_host:
|
|
|
description:
|
|
|
- If the underlying router implementation connects with an external host, this is the external host's hostname.
|
|
@@ -247,8 +253,8 @@ EXAMPLES = '''
|
|
|
action: put
|
|
|
- key: spec.template.spec.containers[0].env
|
|
|
value:
|
|
|
- name: EXTENDED_VALIDATION
|
|
|
- value: 'false'
|
|
|
+ name: ROUTER_MAX_CONNECTIONS
|
|
|
+ value: "10000"
|
|
|
action: update
|
|
|
register: router_out
|
|
|
run_once: True
|
|
@@ -2844,6 +2850,16 @@ class Router(OpenShiftCLI):
|
|
|
'''modify the deployment config'''
|
|
|
# We want modifications in the form of edits coming in from the module.
|
|
|
# Let's apply these here
|
|
|
+
|
|
|
+ # If extended validation is enabled, set the corresponding environment
|
|
|
+ # variable.
|
|
|
+ if self.config.config_options['extended_validation']['value']:
|
|
|
+ if not deploymentconfig.exists_env_key('EXTENDED_VALIDATION'):
|
|
|
+ deploymentconfig.add_env_value('EXTENDED_VALIDATION', "true")
|
|
|
+ else:
|
|
|
+ deploymentconfig.update_env_var('EXTENDED_VALIDATION', "true")
|
|
|
+
|
|
|
+ # Apply any edits.
|
|
|
edit_results = []
|
|
|
for edit in self.config.config_options['edits'].get('value', []):
|
|
|
if edit['action'] == 'put':
|
|
@@ -3077,6 +3093,7 @@ class Router(OpenShiftCLI):
|
|
|
'service_account': {'value': params['service_account'], 'include': True},
|
|
|
'router_type': {'value': params['router_type'], 'include': False},
|
|
|
'host_network': {'value': params['host_network'], 'include': True},
|
|
|
+ 'extended_validation': {'value': params['extended_validation'], 'include': False},
|
|
|
'external_host': {'value': params['external_host'], 'include': True},
|
|
|
'external_host_vserver': {'value': params['external_host_vserver'],
|
|
|
'include': True},
|
|
@@ -3192,6 +3209,7 @@ def main():
|
|
|
service_account=dict(default='router', type='str'),
|
|
|
router_type=dict(default='haproxy-router', type='str'),
|
|
|
host_network=dict(default=True, type='bool'),
|
|
|
+ extended_validation=dict(default=True, type='bool'),
|
|
|
# external host options
|
|
|
external_host=dict(default=None, type='str'),
|
|
|
external_host_vserver=dict(default=None, type='str'),
|