k8s test fixes (#713)
Publish / Build and publish (push) Successful in 51s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m2s
Details
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Failing after 1m3s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m34s
Details
Smoke Test / Run basic test suite (push) Successful in 3m48s
Details
Publish / Build and publish (push) Successful in 51s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m2s
Details
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Failing after 1m3s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m34s
Details
Smoke Test / Run basic test suite (push) Successful in 3m48s
Details
* Add cgroup setup, increase test timeouts * Trigger from test script or CI job changes toopull/718/head v1.1.0-b7f215d-202401282321
parent
eca52b10b7
commit
b7f215d9bf
|
|
@ -6,6 +6,8 @@ on:
|
|||
paths:
|
||||
- '!**'
|
||||
- '.gitea/workflows/triggers/test-k8s-deploy'
|
||||
- '.gitea/workflows/test-k8s-deploy.yml'
|
||||
- 'tests/k8s-deploy/run-deploy-test.sh'
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
|
@ -39,4 +41,7 @@ jobs:
|
|||
- name: "Install Kubectl"
|
||||
run: ./tests/scripts/install-kubectl.sh
|
||||
- name: "Run k8s deployment test"
|
||||
run: ./tests/k8s-deploy/run-deploy-test.sh
|
||||
run: |
|
||||
source /opt/bash-utils/cgroup-helper.sh
|
||||
join_cgroup
|
||||
./tests/k8s-deploy/run-deploy-test.sh
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ fi
|
|||
|
||||
# Helper functions: TODO move into a separate file
|
||||
wait_for_pods_started () {
|
||||
for i in {1..5}
|
||||
for i in {1..50}
|
||||
do
|
||||
local ps_output=$( $TEST_TARGET_SO deployment --dir $test_deployment_dir ps )
|
||||
|
||||
|
|
@ -27,7 +27,7 @@ wait_for_pods_started () {
|
|||
}
|
||||
|
||||
wait_for_log_output () {
|
||||
for i in {1..5}
|
||||
for i in {1..50}
|
||||
do
|
||||
|
||||
local log_output=$( $TEST_TARGET_SO deployment --dir $test_deployment_dir logs )
|
||||
|
|
|
|||
Loading…
Reference in New Issue