Deploy Policy on VMs by TOSCA 27/24127/1
authorJun Hu <jh245g@att.com>
Fri, 17 Nov 2017 19:13:49 +0000 (14:13 -0500)
committerNicolas Hu <jh245g@att.com>
Fri, 17 Nov 2017 19:18:21 +0000 (14:18 -0500)
IssueID: OOM-80

Change-Id: Ifa21629bba5a8dbac652b8341f4ac52947bd619f
Signed-off-by: Nicolas Hu <jh245g@att.com>
.gitignore
.idea/vcs.xml [new file with mode: 0644]
TOSCA/VM/policy/Policy.yaml [new file with mode: 0644]
TOSCA/VM/policy/scripts/policy.sh [new file with mode: 0644]

index decc205..b671448 100644 (file)
@@ -1 +1,5 @@
 kubernetes/config/onap-parameters.yaml
+.idea/vcs.xml
+.idea/modules.xml
+.idea/oom.iml
+.idea/workspace.xml
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644 (file)
index 0000000..35eb1dd
--- /dev/null
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="" vcs="Git" />
+  </component>
+</project>
\ No newline at end of file
diff --git a/TOSCA/VM/policy/Policy.yaml b/TOSCA/VM/policy/Policy.yaml
new file mode 100644 (file)
index 0000000..5fd13fc
--- /dev/null
@@ -0,0 +1,246 @@
+###########################################################
+# This Blueprint installs ONAP policy on Openstack
+###########################################################
+tosca_definitions_version: cloudify_dsl_1_3
+description: >
+  This blueprint creates a ONAP policy
+imports:
+  - http://www.getcloudify.org/spec/cloudify/4.1/types.yaml
+  - http://cloudify.co/spec/openstack-plugin/2.2.0/plugin.yaml
+  - http://cloudify.co/spec/fabric-plugin/1.5/plugin.yaml
+  - http://www.getcloudify.org/spec/diamond-plugin/1.3.3/plugin.yaml
+inputs:
+  nexus_repo:
+    type: string
+    default: https://nexus.onap.org/content/sites/raw
+    
+  docker_repo:
+    type: string
+    default: nexus3.onap.org:10001
+
+  nexus_username:
+    type: string
+    default: docker
+
+  nexus_password:
+    type: string
+    default: docker
+  
+  artifacts_version:  
+    type: string
+    default: 1.1.0-SNAPSHOT 
+
+  dns_ip:
+    type: string
+
+  cloud_env:
+    type: string
+    default: openstack
+    
+  docker_version:
+    type: string
+    default: v1.1.1    
+  gerrit_branch:
+    type: string
+    default: master
+   
+  external_dns:
+    type: string
+
+  policy_repo:
+    type: string
+    default: http://gerrit.onap.org/r/policy/docker.git  
+    
+  vm_instancename:
+    type: string
+    
+  image:
+    description: |
+      A Ubuntu 14.04 image, along with the usual
+    type:  string
+    default: Ubuntu 16.04 LTS Generic
+  flavor:
+    description: >
+      A machine type with more than 2 CPUs, 4096 GB RAM, and 8 GB of disk space.
+      You might want to use 4 CPUs, 8192 MB RAM for the master.
+    type:  string
+    default: m1.xlarge
+  ssh_user:
+    description: |
+      User for connecting to agent VM
+    type:  string
+    default: ubuntu
+  security_group:
+    description: openstack security_group
+    type:  string
+  keypair_name:
+    description: | 
+      OpenStack keypair name 
+    type: string 
+  
+  key_filename:
+    type:  string 
+  external_network:
+    type:  string 
+    
+  app_subnet:
+    type:  string  
+    
+  openstack_username:
+    type: string
+    description: username to authenticate to OpenStack
+  openstack_password:
+    type: string
+    description: OpenStack tenant password for openstack_username user
+  openstack_tenant_name:
+    type: string
+    description: OpenStack tenant for VM deploy
+  openstack_auth_url:
+    type: string
+    description: Authentication URL for OpenStack
+  openstack_region:
+    type: string
+    description: OpenStack region
+  
+dsl_definitions:
+  openstack_credentials:  &openstack_credentials
+    username:  { get_input: openstack_username }
+    password:  { get_input: openstack_password }
+    tenant_name:  { get_input: openstack_tenant_name }
+    auth_url:  { get_input: openstack_auth_url }
+    region:  { get_input: openstack_region }
+node_templates:
+
+  key_pair:
+    type: cloudify.openstack.nodes.KeyPair
+    properties:
+      private_key_path: { get_input: key_filename }
+      use_external_resource: true
+      resource_id: { get_input:  keypair_name }
+      openstack_config:  *openstack_credentials
+
+  private_net:
+    type: cloudify.openstack.nodes.Network
+    properties:
+      use_external_resource:  true
+      resource_id: { get_input:  app_subnet }
+      openstack_config: *openstack_credentials
+      
+  external_network:
+    type: cloudify.openstack.nodes.Network
+    properties:
+      openstack_config: *openstack_credentials
+      use_external_resource: true
+      resource_id: { get_input: external_network}     
+
+  app_security_group:
+    type: cloudify.openstack.nodes.SecurityGroup
+    properties:
+      openstack_config: *openstack_credentials
+      use_external_resource:  true
+      resource_id: { get_input: security_group }
+
+  VM_001_fixed_ip:
+    type: cloudify.openstack.nodes.Port
+    properties:
+      openstack_config: *openstack_credentials
+    relationships:
+      - type: cloudify.relationships.contained_in
+        target: private_net
+      - type: cloudify.openstack.port_connected_to_security_group
+        target: app_security_group
+
+  VM_001_floating_ip:
+    type: cloudify.openstack.nodes.FloatingIP
+    properties:
+      openstack_config: *openstack_credentials
+    interfaces:
+      cloudify.interfaces.lifecycle:
+        create:
+          inputs:
+            args:
+              floating_network_name: { get_input:  external_network }
+  VM_001:
+    type: cloudify.openstack.nodes.Server
+    properties:
+      openstack_config: *openstack_credentials
+      install_agent:  false
+      image: { get_input: image }
+      flavor: { get_input: flavor }
+      resource_id: { get_input: vm_instancename }
+      management_network_name:  { get_input: app_subnet }
+      ip:  { get_attribute: [VM_001_floating_ip, floating_ip_address]  }
+    relationships:
+      - type: cloudify.openstack.server_connected_to_floating_ip
+        target: VM_001_floating_ip
+      - type: cloudify.openstack.server_connected_to_keypair
+        target: key_pair
+      - type: cloudify.openstack.server_connected_to_port
+        target:  VM_001_fixed_ip
+
+  app_001:
+    type: cloudify.nodes.SoftwareComponent
+    properties:
+    interfaces:
+      cloudify.interfaces.lifecycle:
+         start:
+          implementation: fabric.fabric_plugin.tasks.run_script
+          inputs:
+            script_path: scripts/policy.sh
+            use_sudo: true
+            process:
+              args: 
+                [{ get_attribute: [VM_001_floating_ip, floating_ip_address]},
+                 { get_attribute: [VM_001_fixed_ip, fixed_ip_address]},
+                 { get_input: nexus_repo },
+                 { get_input: docker_repo},
+                 { get_input: nexus_username },
+                 { get_input: nexus_password },
+                 { get_input: artifacts_version },
+                 { get_input: dns_ip},
+                 { get_input: docker_version },
+                 { get_input: gerrit_branch },
+                 openstack,
+                 { get_input: external_dns},
+                 { get_input: policy_repo}]
+            fabric_env:
+              host_string: { get_attribute: [VM_001_floating_ip, floating_ip_address]}
+              user: { get_input: ssh_user }
+              key_filename: { get_input: key_filename }
+    relationships:
+      - type: cloudify.relationships.contained_in
+        target: VM_001
+      - type: cloudify.relationships.depends_on
+        target: VM_001_floating_ip
+
+outputs:
+  ONAP_Policy:
+    description: informations about Policy
+    value:
+      ip: { get_attribute: [VM_001_floating_ip, floating_ip_address] }
+
+
+
+
+
+
diff --git a/TOSCA/VM/policy/scripts/policy.sh b/TOSCA/VM/policy/scripts/policy.sh
new file mode 100644 (file)
index 0000000..66cedd9
--- /dev/null
@@ -0,0 +1,45 @@
+#!/bin/sh
+
+#
+PUBIP="$1"
+PVTIP="$2"
+NEXUS_REPO="$3"
+DOCKER_REPO="$4"
+NEXUS_USERNAME="$5"
+NEXUS_PASSWORD="$6"
+ARTIFACTS_VERSION="$7"
+DNS_IP="$8"
+DOCKER_VERSION="$9"
+GERRIT_BRANCH="$10"
+CLOUD_ENV="$11"
+EXETERNAL_DNS="$12"
+POLICY_REPO="$13"
+
+export HOSTNAME=`hostname`
+echo 127.0.1.1 $HOSTNAME >>/etc/hosts
+echo $PVTIP $HOSTNAME >>/etc/hosts
+echo $PUBIP $HOSTNAME >>/etc/hosts
+
+
+mkdir /opt/config
+chmod 777 /opt/config
+echo $PUBIP                                     > /opt/config/public_ip.txt
+echo $NEXUS_REPO                                > /opt/config/nexus_repo.txt
+echo $DOCKER_REPO                               > /opt/config/nexus_docker_repo.txt
+echo $NEXUS_USERNAME                            > /opt/config/nexus_username.txt
+echo $NEXUS_PASSWORD                            > /opt/config/nexus_password.txt
+echo $ARTIFACTS_VERSION                         > /opt/config/artifacts_version.txt
+echo $DNS_IP                                    > /opt/config/dns_ip_addr.txt
+echo $DOCKER_VERSION                            > /opt/config/docker_version.txt
+echo $GERRIT_BRANCH                             > /opt/config/gerrit_branch.txt
+echo $CLOUD_ENV                                 > /opt/config/cloud_env.txt
+echo $EXETERNAL_DNS                             > /opt/config/external_dns.txt
+echo $POLICY_REPO                               > /opt/config/remote_repo.txt
+touch /opt/policy_install.sh
+chmod 777 /opt/policy_install.sh
+curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/policy_install.sh -o /opt/policy_install.sh;
+apt-get update
+apt-get install -y docker.io
+cd /opt
+chmod +x policy_install.sh
+/opt/policy_install.sh > policy_install.log 2>&1
\ No newline at end of file