summaryrefslogtreecommitdiffstats
path: root/kubernetes/pomba/charts/pomba-contextaggregator/resources
diff options
context:
space:
mode:
authorNorm Traxler <normant@amdocs.com>2019-03-19 22:12:50 +0100
committerNorm Traxler <normant@amdocs.com>2019-03-19 22:13:00 +0100
commitf6af090ab2a66108d7323472ed85923d1ea0e709 (patch)
treebdb9d378f6a0d1ad50149853ea13f94b3fdc883d /kubernetes/pomba/charts/pomba-contextaggregator/resources
parentbb26706ffcfbbe412a43a2c04a5e127f4a21b5d4 (diff)
Remove pre-start curl script
Issue-ID: LOG-849 Change-Id: Iabe3c4abdf23e48104e284c7e333e51b27779b86 Signed-off-by: Norm Traxler <normant@amdocs.com>
Diffstat (limited to 'kubernetes/pomba/charts/pomba-contextaggregator/resources')
-rw-r--r--kubernetes/pomba/charts/pomba-contextaggregator/resources/bin/pre_start.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/kubernetes/pomba/charts/pomba-contextaggregator/resources/bin/pre_start.sh b/kubernetes/pomba/charts/pomba-contextaggregator/resources/bin/pre_start.sh
deleted file mode 100644
index 8a76cdd929..0000000000
--- a/kubernetes/pomba/charts/pomba-contextaggregator/resources/bin/pre_start.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-# Get the list of topic from curl ressult
-dmaap_mr_host=message-router
-dmaap_mr_port=3904
-temp_output_file=".tmpoutput"
-curl -X GET http://$dmaap_mr_host:$dmaap_mr_port/topics > $temp_output_file
-
-# Test topic POA-AUDIT-INIT, POA-AUDIT-RESULT, POA-RULE-VALIDATION
-TOPICS="POA-AUDIT-INIT POA-RULE-VALIDATION POA-AUDIT-RESULT"
-for i_topic in $TOPICS
-do
- echo "Looping ... topic: $i_topic"
- if grep -iFq "$i_topic" $temp_output_file
- then
- # code if found
- echo "$i_topic found."
- else
- # code if not found
- echo "$i_topic NOT found."
- curl -X POST -H "content-type: application/json" --data '{"event":"create topic"}' http://$dmaap_mr_host:$dmaap_mr_port/events/$i_topic
- fi
-done
-
-# remove the temp file
-rm -f $temp_output_file