diff --git a/tests/testcases/030_check-network.yml b/tests/testcases/030_check-network.yml index aa4595898fa..19ec80b0882 100644 --- a/tests/testcases/030_check-network.yml +++ b/tests/testcases/030_check-network.yml @@ -79,53 +79,47 @@ command: cmd: "{{ bin_dir }}/kubectl apply -f -" stdin: | - apiVersion: v1 - kind: Pod + apiVersion: apps/v1 + kind: Deployment metadata: - name: {{ item }} - namespace: test + name: agnhost spec: - containers: - - name: agnhost - image: {{ test_image_repo }}:{{ test_image_tag }} - command: ['/agnhost', 'netexec', '--http-port=8080'] - securityContext: - allowPrivilegeEscalation: false - capabilities: - drop: ['ALL'] - runAsUser: 1000 - runAsNonRoot: true - seccompProfile: - type: RuntimeDefault + replicas: 2 + selector: + matchLabels: + app: agnhost + template: + metadata: + labels: + app: agnhost + spec: + containers: + - name: agnhost + image: {{ test_image_repo }}:{{ test_image_tag }} + command: ['/agnhost', 'netexec', '--http-port=8080'] + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: ['ALL'] + runAsUser: 1000 + runAsNonRoot: true + seccompProfile: + type: RuntimeDefault changed_when: false - loop: - - agnhost1 - - agnhost2 - import_role: # noqa name[missing] name: cluster-dump - name: Check that all pods are running and ready - command: "{{ bin_dir }}/kubectl get pods --namespace test --no-headers -o yaml" - changed_when: false - register: run_pods_log - until: - # Check that all pods are running - - '(run_pods_log.stdout | from_yaml)["items"] | map(attribute = "status.phase") | unique | list == ["Running"]' - # Check that all pods are ready - - '(run_pods_log.stdout | from_yaml)["items"] | map(attribute = "status.containerStatuses") | map("map", attribute = "ready") | map("min") | min' - retries: 18 - delay: 10 - failed_when: false - - - name: Get pod names - command: "{{ bin_dir }}/kubectl get pods -n test -o json" - changed_when: false - register: pods - - - debug: # noqa name[missing] - msg: "{{ pods.stdout.split('\n') }}" - failed_when: not run_pods_log is success + block: + - name: Check Deployment is ready + command: "{{ bin_dir }}/kubectl rollout status deploy --namespace test agnhost --timeout=180" + changed_when: false + rescue: + - name: Get pod names + command: "{{ bin_dir }}/kubectl get pods -n test -o json" + changed_when: false + register: pods - name: Get hostnet pods command: "{{ bin_dir }}/kubectl get pods -n test -o