Issue #260: Sanity test 'compile' failing because of positional args. (#261)

* Issue #260: Sanity test 'compile' failing because of positional args.

* Issue #260: Run integration tests on older Python 3.6 still.

* Issue #260: Add changelog fragment.
This commit is contained in:
Jeff Geerling
2020-10-09 10:17:52 -05:00
committed by GitHub
parent 9ff259c638
commit cbd3a2554e
3 changed files with 8 additions and 3 deletions

View File

@@ -277,7 +277,7 @@ class KubernetesModule(K8sAnsibleMixin):
argument_spec['template'] = dict(type='raw', default=None)
return argument_spec
def __init__(self, *args, k8s_kind=None, **kwargs):
def __init__(self, k8s_kind=None, *args, **kwargs):
mutually_exclusive = [
('resource_definition', 'src'),
('merge_type', 'apply'),