blob: f4345e38d8e8310ae4736c167c9fe596b7073669 [file] [log] [blame]
Michael Hwang2de95ed2018-08-01 16:22:13 -04001# ============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
24set -e
25
26# Update and upgrade apt packages
27apt-get update
28apt-get upgrade -y
29
30# Hostname vagrant-dcae will be used to refer to this vagrant machine. This is
31# important for certificates.
32echo '127.0.0.1 vagrant-dcae' >>/etc/hosts
33
34# Generate self-signed certs for docker registry
35mkdir /certs
36openssl 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
42apt-get install -y -q docker.io docker-compose
43echo 'DOCKER_OPTS="--raw-logs -H tcp://0.0.0.0:2376 -H unix:///var/run/docker.sock"' >>/etc/default/docker
44systemctl restart docker
45
46export MYIP=$(ip address show enp0s3 | grep 'inet ' | sed -e 's/^.*inet //' -e 's/\/.*$//' | tr -d '\n')
47cd /srv/dcae-onboarding
48
49docker-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.
53sleep 10
54docker restart config_binding_service
55docker restart onboardingdb