From ddf9db0e720ac1532288e43e42919e88217e4ff8 Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Wed, 14 Feb 2024 17:33:36 -0600 Subject: [PATCH 1/2] Fix K8s test --- tests/k8s-deploy/run-deploy-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/k8s-deploy/run-deploy-test.sh b/tests/k8s-deploy/run-deploy-test.sh index ef257008..e482a5b7 100755 --- a/tests/k8s-deploy/run-deploy-test.sh +++ b/tests/k8s-deploy/run-deploy-test.sh @@ -103,7 +103,7 @@ if [ ! "$create_file_content" == "create-command-output-data" ]; then fi # Add a config file to be picked up by the ConfigMap before starting. -echo "dbfc7a4d-44a7-416d-b5f3-29842cc47650" > $test_deployment_dir/configmap/test-config/test_config +echo "dbfc7a4d-44a7-416d-b5f3-29842cc47650" > $test_deployment_dir/configmaps/test-config/test_config echo "deploy create output file test: passed" # Try to start the deployment -- 2.45.2 From 752e6575e3b7b616f46bffac93899c6320f47720 Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Wed, 14 Feb 2024 17:41:57 -0600 Subject: [PATCH 2/2] Enable k8s test on PR --- .gitea/workflows/test-k8s-deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/test-k8s-deploy.yml b/.gitea/workflows/test-k8s-deploy.yml index 50315363..7df39132 100644 --- a/.gitea/workflows/test-k8s-deploy.yml +++ b/.gitea/workflows/test-k8s-deploy.yml @@ -1,6 +1,8 @@ name: K8s Deploy Test on: + pull_request: + branches: '*' push: branches: '*' paths: -- 2.45.2