Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
coutoPL committed Nov 21, 2023
1 parent 8e058aa commit 0f93680
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 20 deletions.
4 changes: 1 addition & 3 deletions common/scripts/createScenarioAndDeploy.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#!/usr/bin/env bash

set -ex
#!/bin/bash -ex

# This script allows to create and import scenario and at the end to deploy

Expand Down
2 changes: 2 additions & 0 deletions common/tests/testK8sStreaming.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ set -a; source ../../k8s-helm/.env; set +a

source ../scripts/utils.sh

curl -v -u admin:admin http://localhost:8081/api/app/healthCheck"
../scripts/waitForOkFromUrl.sh "api/app/healthCheck" "Checking Nussknacker Health Check API response.." "Nussknacker not started" "designer"
./testStreaming.sh "$(fullPath "../../k8s-helm/scenarios/DetectLargeTransactionsLite.json")"
8 changes: 4 additions & 4 deletions docker/streaming/scripts/continuouslySendTransactions.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
unset RELEASE
set -e
#!/bin/bash -e

cd "$(dirname $0)"
unset RELEASE || true

cd "$(dirname "$0")"
../../../common/scripts/continuouslySendTransactions.sh $@
7 changes: 3 additions & 4 deletions docker/streaming/scripts/createSchemas.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/bin/bash
unset RELEASE
set -e
#!/bin/bash -e
unset RELEASE || true

cd "$(dirname $0)"
cd "$(dirname "$0")"
../../../common/schemas/createSchemas.sh $@
8 changes: 4 additions & 4 deletions docker/streaming/scripts/sendTestTransactions.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
unset RELEASE
set -e
#!/bin/bash -e

cd "$(dirname $0)"
unset RELEASE || true

cd "$(dirname "$0")"
../../../common/scripts/sendTestTransactions.sh $@
8 changes: 4 additions & 4 deletions docker/streaming/scripts/sendToKafka.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
unset RELEASE
set -e
#!/bin/bash -e

cd "$(dirname $0)"
unset RELEASE || true

cd "$(dirname "$0")"
../../../common/scripts/sendToKafka.sh $@
2 changes: 1 addition & 1 deletion k8s-helm/scripts/sendLoanRequest.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/bash -e
#!/bin/bash -e

cd "$(dirname "$0")"

Expand Down

0 comments on commit 0f93680

Please sign in to comment.