Do first pass on dcae onboarding vagrant
[dcaegen2/platform/cli.git] / vagrant / provision.sh
1 # ============LICENSE_START=======================================================
2 # org.onap.dcae
3 # ================================================================================
4 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18 #
19 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
20
21 #!/usr/bin/env bash
22
23 # abort on error
24 set -e
25
26 # Update and upgrade apt packages
27 apt-get update
28 apt-get upgrade -y
29
30 # Hostname vagrant-dcae will be used to refer to this vagrant machine. This is
31 # important for certificates.
32 echo '127.0.0.1 vagrant-dcae' >>/etc/hosts
33
34 # Generate self-signed certs for docker registry
35 mkdir /certs
36 openssl req \
37   -newkey rsa:4096 -nodes -sha256 -keyout /certs/domain.key \
38   -x509 -days 365 -out /certs/domain.crt \
39   -subj "/C=US/ST=New York/L=New York/O=ONAP/CN=vagrant-dcae"
40
41 # Install and setup docker
42 apt-get install -y -q docker.io docker-compose
43 echo 'DOCKER_OPTS="--raw-logs -H tcp://0.0.0.0:2376 -H unix:///var/run/docker.sock"' >>/etc/default/docker
44 systemctl restart docker
45
46 export MYIP=$(ip address show enp0s3 | grep 'inet ' | sed -e 's/^.*inet //' -e 's/\/.*$//' | tr -d '\n')
47 cd /srv/dcae-onboarding
48
49 docker-compose up -d
50 # REVIEW: There seems to be a race condition where registrator must fully
51 # come up before the config binding service should start. Put in a arbitrary
52 # sleep then restarting containers as a work around.
53 sleep 10
54 docker restart config_binding_service
55 docker restart onboardingdb