Fix timeouts (#37)

* Fix other timeout default settings

* Add storage-only YAML output

* Bump version
This commit is contained in:
cybermaggedon 2024-08-25 23:57:30 +01:00 committed by GitHub
parent a83c623ca3
commit cea8562ecf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 754 additions and 224 deletions

View file

@ -1,6 +1,6 @@
# VERSION=$(shell git describe | sed 's/^v//')
VERSION=0.7.12
VERSION=0.7.13
DOCKER=podman
@ -44,6 +44,13 @@ tg-launch-%.yaml: templates/%.jsonnet templates/components/version.jsonnet
jsonnet -S ${@:tg-launch-%.yaml=templates/%.jsonnet} > $@
update-templates: set-version
for graph in ${GRAPHS}; do \
cm=$${graph},pulsar,milvus,grafana; \
input=templates/main.jsonnet; \
output=tg-storage-$${graph}.yaml; \
echo $${graph} '->' $${output}; \
jsonnet --ext-str options=$${cm} -S $${input} > $${output}; \
done
for model in ${MODELS}; do \
for graph in ${GRAPHS}; do \
cm=$${graph},pulsar,milvus,grafana,trustgraph,$${model}; \