Remove no_log in CI tests (#11702)

We always want to see the logs in the CI.
This commit is contained in:
Max Gautier
2024-11-11 04:54:44 +01:00
committed by GitHub
parent 06ae6cfe8a
commit 69201662df
5 changed files with 0 additions and 15 deletions

View File

@@ -49,7 +49,6 @@
command: "{{ bin_dir }}/kubectl -n {{ netcheck_namespace }} describe pod -l app={{ item }}"
run_once: true
delegate_to: "{{ groups['kube_control_plane'][0] }}"
no_log: false
with_items:
- netchecker-agent
- netchecker-agent-hostnet
@@ -72,7 +71,6 @@
agents.content[0] == '{' and
agents.content | from_json | length >= groups['k8s_cluster'] | intersect(ansible_play_hosts) | length * 2
failed_when: false
no_log: false
- name: Check netchecker status
uri:
@@ -86,7 +84,6 @@
delay: "{{ agent_report_interval }}"
until: connectivity_check.content | length > 0 and
connectivity_check.content[0] == '{'
no_log: false
failed_when: false
when:
- agents.content != '{}'
@@ -97,7 +94,6 @@
- name: Get kube-proxy logs
command: "{{ bin_dir }}/kubectl -n kube-system logs -l k8s-app=kube-proxy"
no_log: false
when:
- inventory_hostname == groups['kube_control_plane'][0]
- not connectivity_check is success
@@ -107,7 +103,6 @@
when:
- inventory_hostname == groups['kube_control_plane'][0]
- not connectivity_check is success
no_log: false
with_items:
- kube-router
- flannel