Skip to content

Commit

Permalink
Remove RHEL8/php-73 which is EOL
Browse files Browse the repository at this point in the history
Signed-off-by: Petr "Stone" Hracek <[email protected]>
  • Loading branch information
phracek committed Jun 10, 2024
1 parent 4988054 commit 139d23e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion deploy-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@
- rhel8-nodejs-ex-18-minimal
- rhel8-nodejs-ex-20
- rhel8-nodejs-ex-20-minimal
- rhel8-cakephp-ex-73
- rhel8-cakephp-ex-74
#- rhel8-cakephp-ex-80 It looks like no prepared for PHP-8.0
#- rhel8-cakephp-ex-81 It looks like no prepared for PHP-8.0
Expand Down
2 changes: 1 addition & 1 deletion files/check_pod_running.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ for i in {1..10}; do
exit 1
fi
done <<< "${POD_STATUS}"
sleep 10
sleep 30
done
exit 1
2 changes: 1 addition & 1 deletion tasks/openshift_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
register: route_cmd
until: route_cmd.rc == 0
retries: 30
delay: 5
delay: 10
when: (deploy_cmd.rc == 0) and (cluster_name.rc == 0)

- debug: var=route_cmd
Expand Down
4 changes: 2 additions & 2 deletions tasks/openshift_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

- name: Check if curl command is working
script: "./files/check_oc_exec_output.sh 'curl {{ service_ip.stdout | trim }}:8080' '{{ cluster_name.stdout | trim }}' '{{ stuff.check_curl_output }}'"
retries: 5
retries: 10
delay: 20
register: curl_output
ignore_errors: yes
until: curl_output.rc == 0
until: (curl_output.rc == 0) and ("Connection refused" not in curl_output["stderr"])
# - name: Check curl command is working
# uri:
# url: "http://{{ route_cmd.stdout }}"
Expand Down

0 comments on commit 139d23e

Please sign in to comment.