Upgrade APPC to use common mariadb galera charts
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-music / resources / config / startup.sh
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 OUT=$(curl -o /dev/null -s -w "%{http_code}\n"  \
16   http://localhost:8080/MUSIC/rest/v2/admin/onboardAppWithMusic \
17   -H 'Cache-Control: no-cache' \
18   -H 'Content-Type: application/json' \
19   -H 'Postman-Token: 705d4a9d-aaf2-40b4-914a-e0ce1a79534c' \
20   -d '{
21    "appname": "conductor",
22    "userId" : "conductor",
23    "isAAF"  : false,
24    "password" : "c0nduct0r"
25 }
26 ')
27
28 if [ ${OUT} = "200" ]; then
29     echo "Success"
30     echo 1 > /tmp/onboarded
31     exit 0;
32 else
33     echo "Failure"
34     exit 1;
35 fi