mirror of
https://github.com/openshift/community.okd.git
synced 2026-03-26 19:03:14 +00:00
Fix sanity failure (#77)
* Fix sanity failure This fixes a sanity test failure for newer versions of ansible-test. It was falsely flagging the key parameter for TLS configuration as sensitive. This parameter is just the path to a key file. * Restrict molecule version This is needed to address a breaking change in molecule 3.3.0. * Add changelog fragment
This commit is contained in:
@@ -367,7 +367,7 @@ class OpenShiftRoute(K8sAnsibleMixin):
|
||||
ca_certificate=dict(type='str'),
|
||||
certificate=dict(type='str'),
|
||||
destination_ca_certificate=dict(type='str'),
|
||||
key=dict(type='str'),
|
||||
key=dict(type='str', no_log=False),
|
||||
insecure_policy=dict(type='str', choices=['allow', 'redirect', 'disallow'], default='disallow'),
|
||||
))
|
||||
spec['termination'] = dict(choices=['edge', 'passthrough', 'reencrypt', 'insecure'], default='insecure')
|
||||
|
||||
Reference in New Issue
Block a user