We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f756e commit f5ef8c5Copy full SHA for f5ef8c5
Makefile
@@ -36,6 +36,11 @@ ingest:
36
@command -v bash >/dev/null 2>&1 || { echo "bash is required but not installed"; exit 1; }
37
@./ingest.sh || { echo "Ingestion failed."; exit 1; }
38
39
+tests:
40
+ @echo "Running tests."
41
+ @command -v helm >/dev/null 2>&1 || { echo "helm is required but not installed"; exit 1; }
42
+ @helm unittest helm-chart/eoapi -f 'tests/*.yaml' -v helm-chart/eoapi/test-helm-values.yaml
43
+
44
help:
45
@echo "Makefile commands:"
46
@echo " make deploy - Install eoAPI on a cluster kubectl is connected to."
0 commit comments