AAF Sample CA change 91/63991/3
authorInstrumental <jonathan.gathman@att.com>
Fri, 31 Aug 2018 12:44:03 +0000 (07:44 -0500)
committerJonathan Gathman <jonathan.gathman@att.com>
Tue, 4 Sep 2018 20:36:44 +0000 (20:36 +0000)
Issue-ID: AAF-420
Change-Id: I59b6b83e3e3804e09a98659c198d319c9b784689
Signed-off-by: Instrumental <jonathan.gathman@att.com>
heat/ONAP/cloud-config/aaf_vm_init.sh
heat/ONAP/onap_openstack.yaml

index 59486e9..883ea30 100644 (file)
@@ -19,7 +19,7 @@ fi
 echo $NEXUS_DOCKER_REPO
 HOSTNAME=`hostname -f`
 FQDN=aaf.api.simpledemo.onap.org
-HOST_IP=$(cat /opt/config/local_ip.txt)
+HOST_IP=$(cat /opt/config/public_ip.txt)
 
 cd /opt/authz/auth/auth-cass/docker
 if [ "`docker container ls | grep aaf_cass`" = "" ]; then
@@ -52,10 +52,15 @@ sed -i "s/HOST_IP=.*/HOST_IP=$HOST_IP/g" /opt/authz/auth/docker/d.props
 sed -i "s/LATITUDE=.*/LATITUDE=$CADI_LATITUDE/g" /opt/authz/auth/docker/d.props
 sed -i "s/LONGITUDE=.*/LONGITUDE=$CADI_LONGITUDE/g" /opt/authz/auth/docker/d.props
 
-SIGNER_P12="$CURRENT_DIR/sample_ca/aaf.signer.p12"
-AAF_P12="$CURRENT_DIR/sample_ca/aaf.bootstrap.p12"
+SIGNER_P12="$CURRENT_DIR/config/sample_ca/aaf.signer.p12"
+AAF_P12="$CURRENT_DIR/config/sample_ca/aaf.bootstrap.p12"
 P12_PASSWORD="something easy"
 
+if [ ! -e "$SIGNER_P12" ]; then
+  mkdir -p "$CURRENT_DIR/sample_ca"
+  cp /opt/authz/conf/onap.sample.signer.p12 "$SIGNER_P12"
+fi
+
 if [ ! -e "$AAF_P12" ]; then
   mkdir -p $CURRENT_DIR/sample_ca
   cd /opt/authz/conf/CA 
index 2053c9d..65fe4fd 100644 (file)
@@ -2438,6 +2438,9 @@ resources:
         - path: /opt/aaf_vm_init.sh
           permissions: '0755'
           content: { get_file: cloud-config/aaf_vm_init.sh }
+        - path: /opt/config/sample_ca/aaf.signer.p12
+          permissions: '0600'
+          content: { get_file: cloud-config/sample_ca/aaf.signer.p12 }
         - path: /etc/init.d/serv.sh
           permissions: '0755'
           content:
@@ -2465,6 +2468,7 @@ resources:
               #!/bin/bash
 
               # Create configuration files
+              mkdir -p /opt/config/sample_ca
               echo "__docker_version__" > /opt/config/docker_version.txt
               echo "__aaf_repo__" > /opt/config/remote_repo.txt
               echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt