harbor/tests/testprepare.sh

21 lines
745 B
Bash
Raw Normal View History

2016-08-08 10:40:14 +02:00
#!/bin/bash
2017-01-12 11:29:02 +01:00
set -e
2016-10-19 08:32:00 +02:00
cp tests/docker-compose.test.yml make/.
mkdir -p core
cp make/common/config/core/private_key.pem /etc/core/
2016-06-07 06:19:48 +02:00
mkdir src/core/conf
cp make/common/config/core/app.conf src/core/conf/
if [ "$(uname)" == "Darwin" ]; then
IP=`ifconfig en0 | grep "inet " | grep -Fv 127.0.0.1 | awk '{print $2}'`
else
IP=`ip addr s eth0 |grep "inet "|awk '{print $2}' |awk -F "/" '{print $1}'`
fi
echo "server ip is "$IP
sed -i -r "s/POSTGRESQL_HOST=postgresql/POSTGRESQL_HOST=$IP/" make/common/config/adminserver/env
sed -i -r "s|REGISTRY_URL=http://registry:5000|REGISTRY_URL=http://$IP:5000|" make/common/config/adminserver/env
sed -i -r "s/CORE_SECRET=.*/CORE_SECRET=$CORE_SECRET/" make/common/config/adminserver/env
2017-02-15 08:25:59 +01:00
chmod 777 /data/