File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change
1
+ CREATE ROLE opentp;
2
+ CREATE DATABASE opentp;
3
+ ALTER USER opentp WITH PASSWORD 'password';
4
+ ALTER USER opentp WITH LOGIN;
5
+ \c opentp
6
+
7
+
8
+
1
9
--
2
10
-- PostgreSQL database dump
3
11
--
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ if [ -z "$VERSION" ]; then
23
23
echo " installing latest Open Trading Platform ci build" ;
24
24
DOCKERREPO=" ettec/opentp-ci-build:"
25
25
TAG=" "
26
+ VERSION=" cibuild"
26
27
else
27
28
echo " installing Open Trading Platform version $VERSION " ;
28
29
fi
@@ -91,7 +92,7 @@ kubectl exec -it --namespace=kafka cmdlineclient -- /bin/bash -c "kafka-topics -
91
92
echo installing Open Trading Platform...
92
93
93
94
94
- helm install --wait --timeout 1200s otp-v1 ../helm-otp-chart/ --set dockerRepo=${DOCKERREPO} --set dockerTag=${TAG}
95
+ helm install --wait --timeout 1200s otp-${VERSION} ../helm-otp-chart/ --set dockerRepo=${DOCKERREPO} --set dockerTag=${TAG}
95
96
96
97
# Instructions to start client
97
98
OTPPORT=$( kubectl get svc --namespace=envoy -o go-template=' {{range .items}}{{range.spec.ports}}{{if .nodePort}}{{.nodePort}}{{"\n"}}{{end}}{{end}}{{end}}' )
You can’t perform that action at this time.
0 commit comments