This is an automated email from the ASF dual-hosted git repository.
kichan pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/trafficserver-ingress-controller.git
The following commit(s) were added to refs/heads/master by this push:
new e321e32 Add ATS caching policy role and binding to tests (#305)
e321e32 is described below
commit e321e32b18a190313e2cd16c5dfbf67db6655715
Author: Kit Chan <[email protected]>
AuthorDate: Fri Sep 12 09:11:52 2025 -0500
Add ATS caching policy role and binding to tests (#305)
* Add ATS caching policy role and binding to tests
Added kubectl apply commands for ATS caching policy role and binding.
* Optimize test_ingress.py by removing unnecessary commands
---
tests/suite/test_ingress.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/suite/test_ingress.py b/tests/suite/test_ingress.py
index 81e7f4f..d0d19b3 100644
--- a/tests/suite/test_ingress.py
+++ b/tests/suite/test_ingress.py
@@ -44,8 +44,8 @@ def setup_module(module):
kubectl_apply('data/setup/apps/')
kubectl_apply('data/setup/ingresses/')
time.sleep(90)
- kubectl_apply('../ats_caching/crd-atscachingpolicy.yaml')
- kubectl_apply('../ats_caching/atscachingpolicy.yaml')
+ kubectl_apply('../ats_caching/ats-cachingpolicy-role.yaml')
+ kubectl_apply('../ats_caching/ats-cachingpolicy-binding.yaml')
time.sleep(5)
misc_command('kubectl get all -A')
misc_command('kubectl get pod -A -o wide')