File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11# https://ansible-lint.readthedocs.io/en/latest/configuring.html
22
3+ profile: basic
4+
35skip_list:
46 - yaml # clashes with prettier
57
@@ -14,7 +16,6 @@ mock_modules:
1416 # Ansible 2.9.27 in F35 still contains the k8s module so we can ignore the error until F36,
1517 # where we can switch to kubernetes.core.k8s as ansible-5.x in F36 contains it.
1618 - k8s
17- - kubernetes.core.k8s
1819 # Ignore until F36, where these are in community.crypto collection (part of ansible-5.x rpm).
1920 - openssh_keypair
2021 - openssl_certificate
Original file line number Diff line number Diff line change 1515
1616 post_tasks :
1717 - name : Delete test project namespace if already exist
18- kubernetes.core. k8s :
18+ k8s :
1919 name : " {{ test_project_name }}"
2020 api_version : v1
2121 kind : Namespace
Original file line number Diff line number Diff line change 4242 changed_when : false
4343
4444 - name : Delete test project namespace if already exist
45- kubernetes.core. k8s :
45+ k8s :
4646 name : " {{ test_project_name }}"
4747 api_version : v1
4848 kind : Namespace
4949 state : absent
5050
5151 - name : Create test project namespace
52- kubernetes.core. k8s :
52+ k8s :
5353 name : " {{ test_project_name }}"
5454 api_version : v1
5555 kind : Namespace
You can’t perform that action at this time.
0 commit comments