File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
Expand file tree Collapse file tree 4 files changed +7
-6
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
Original file line number Diff line number Diff line change 203203 worker_replicas : " {{ workers_short_running }}"
204204 # Short-running tasks are just interactions with different services.
205205 # They should not require a lot of memory/cpu.
206- worker_requests_memory : " 320Mi "
206+ worker_requests_memory : " 768Mi "
207207 worker_requests_cpu : " 80m"
208- worker_limits_memory : " 640Mi "
208+ worker_limits_memory : " 2048Mi "
209209 worker_limits_cpu : " 2"
210210 ansible.builtin.include_tasks : k8s.yml
211211 loop :
You can’t perform that action at this time.
0 commit comments