Merge pull request #11858 from owncloud/test/include-apisearch2-pipeline-in-k8s

[tests-only][full-ci] test: test: run search2 pipeline over k8s
This commit is contained in:
nirajacharya2
2025-12-05 11:50:32 +05:45
committed by GitHub
2 changed files with 4 additions and 2 deletions

View File

@@ -174,7 +174,7 @@ config = {
],
"tikaNeeded": True,
"skip": False,
"k8s": False,
"k8s": True,
},
"sharingNg1": {
"suites": [
@@ -3918,6 +3918,8 @@ def tikaServiceK8s():
"type": "docker",
"image": OC_CI_ALPINE,
"commands": [
"until test -f %s/ocis-charts/charts/ocis/templates/search/deployment.yaml; do sleep 1s; done" % dirs["base"],
"cp -r %s/tests/config/drone/k8s/tika %s/ocis-charts/charts/ocis/templates/" % (dirs["base"], dirs["base"]),
"sed -i '/^[[:space:]]*storagesystem:/i\\\\ search:\\\n extractor:\\\n type: \"tika\"\\\n tika:\\\n url: \"http://tika:9998\"\\\n persistence:\\\n enabled: true\\\n accessModes:\\\n - ReadWriteOnce' %s/tests/config/drone/k8s/values.yaml" % dirs["base"],
],
}]