summaryrefslogtreecommitdiffstats
path: root/common/src/main
ModeNameSize
d---------java / org / onap / so30logstatsplain
d---------resources352logstatsplain
d='n80' href='#n80'>80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
 #============LICENSE_START=======================================================
 #    son-handler
 #   ================================================================================
 #     Copyright (C) 2019 Wipro Limited.
 #     ==============================================================================
 #       Licensed under the Apache License, Version 2.0 (the "License");
 #       you may not use this file except in compliance with the License.
 #       You may obtain a copy of the License at
 #    
 #            http://www.apache.org/licenses/LICENSE-2.0
 #    
 #       Unless required by applicable law or agreed to in writing, software
 #       distributed under the License is distributed on an "AS IS" BASIS,
 #       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 #       See the License for the specific language governing permissions and
 #       limitations under the License.
 #       ============LICENSE_END=========================================================

tosca_definitions_version: cloudify_dsl_1_3
imports:
  - "http://www.getcloudify.org/spec/cloudify/3.4/types.yaml"
  - https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R4/k8splugin/1.4.5/k8splugin_types.yaml
  - https://nexus.onap.org/service/local/repositories/raw/content/org.onap.ccsdk.platform.plugins/type_files/pgaas/1.1.0/pgaas_types.yaml
  - https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R4/dcaepolicyplugin/2.3.0/dcaepolicyplugin_types.yaml
inputs:
  replicas:
    type: integer
    description: replica count for deployment
    default: 1
  tag_version:
    type: string
    description: docker image name and version
    default: "nexus3.onap.org:10001/onap/org.onap.dcaegen2.services.son-handler:1.0.0"
  pgaas_cluster_name:
    type: string
    description: pg cluster
    default: "dcae-postgres.onap.svc.cluster.local"
  database_name:
    type: string
    description: database name
    default: sonhms
  aaf_username:
    type: string
    description: aaf username
  aaf_password:
    type: string
    description: aaf password
  polling_interval:
    type: integer
    description: dmaap polling interval
    default: 20
  polling_timeout:
    type: integer
    description: dmaap polling timeout
    default: 60
  num_solutions:
    type: integer
    description: num of solutions
    default: 5
  min_collision:
    type: integer
    description: minimum no. of collisions
    default: 5
  min_confusion: 
    type: integer
    description: minimum no. of confusions
    default: 5
  max_clusters:
    type: integer
    description: maximum clusters
    default: 5
  bad_threshold:
    type: integer
    description: threshold for bad neighbors
    default: 50
  poor_threshold:
    type: integer
    description: threshold for poor neighbors
    default: 70
  namespace:
    type: string
    description: namespace
    default: onap
  dmaap:
    type: string
    description: dmaap server
    default: message-router
  buffer_time:
    type: integer
    description: buffer time
    default: 60
  cg:
    type: string
    description: consumer group
    default: sonhms-cg
  cid:
    type: string
    description: consumer id
    default: sonhms-cid
  config_db:
    type: string
    description: config db location
  oof:
    type: string
    description: oof location
  pci_optimizer:
    type: string
    description: pci optimizer name in oof
    default: pci
  log_path:
    type: string
    description: log location in host
    default: /dockerdata-nfs/son-handler
  policy_id:
    type: string
    description: policy id for config policy
  topic00_location:
  topic01_location:
  topic02_location:
  topic03_location:
  topic04_location:
  topic00_client_role:
  topic01_client_role:
  topic02_client_role:
  topic03_client_role:
  topic04_client_role:
  topic00_client_id:
  topic01_client_id:
  topic02_client_id:
  topic03_client_id:
  topic04_client_id:
  topic00_url:
  topic01_url:
  topic02_url:
  topic03_url:
  topic04_url:

  
node_templates:
  pgaasvm:
    type: dcae.nodes.pgaas.database
    properties: 
      writerfqdn: { get_input: pgaas_cluster_name }
      name: { get_input: database_name }
      use_existing: false
    
  sonhms:
    type: dcae.nodes.ContainerizedServiceComponent
    interfaces:
      cloudify.interfaces.lifecycle:
        start:
          inputs:
            ports:
              - "8080:0"
            volumes:
              - host:
                  path: { get_input: log_path }
                container:
                  bind: /home/sonhms/logs
                  mode: rw
    properties:
      image:
        get_input: tag_version
      service_component_type: 'dcae-sonhms'
      service_id: 'sonhms'
      always_pull_image: true
      replicas: {get_input: replicas}
      docker_config:
        healthcheck:
          endpoint: /healthcheck
          interval: 15s
          timeout: 1s
          type: http
      application_config:
        streams_subscribes:
          performance_management_topic:
            aaf_username: { get_input: aaf_username }
            aaf_password: { get_input: aaf_password }
            dmaap_info:
              location: { get_input: topic00_location }
              client_role: { get_input: topic00_client_role }
              client_id: { get_input: topic00_client_id }
              topic_url: { get_input: topic00_url }
            type: message-router
          fault_management_topic:
            aaf_username: { get_input: aaf_username }
            aaf_password: { get_input: aaf_password }
            dmaap_info: 
              location: { get_input: topic01_location }
              client_role: { get_input: topic01_client_role }
              client_id: { get_input: topic01_client_id }
              topic_url: { get_input: topic01_url }
            type: message-router
          nbr_list_change_topic:
            aaf_username: { get_input: aaf_username }
            aaf_password: { get_input: aaf_password }
            dmaap_info:
              location: { get_input: topic02_location }
              client_role: { get_input: topic02_client_role }
              client_id: { get_input: topic02_client_id }
              topic_url: { get_input: topic02_url }
            type: message-router
          dcae_cl_response_topic:
            aaf_username: { get_input: aaf_username }
            aaf_password: { get_input: aaf_password }
            dmaap_info:
              location: { get_input: topic04_location }
              client_role: { get_input: topic04_client_role }
              client_id: { get_input: topic04_client_id }
              topic_url: { get_input: topic04_url }
            type: message-router
        streams_publishes:
          CL_topic:
            aaf_username: { get_input: aaf_username }
            aaf_password: { get_input: aaf_password }
            dmaap_info: 
              location: { get_input: topic03_location }
              client_role: { get_input: topic03_client_role }
              client_id: { get_input: topic03_client_id }
              topic_url: { get_input: topic03_url }
            type: message-router
        postgres.host: { get_attribute: [ pgaasvm, admin, host ] }
        postgres.port: { get_attribute: [ pgaasvm, admin, port ] }
        postgres.username: { get_attribute: [ pgaasvm, admin, user ] }
        postgres.password: { get_attribute: [ pgaasvm, admin, password ] }
        sonhandler.pollingInterval: { get_input: polling_interval}
        sonhandler.pollingTimeout: { get_input: polling_timeout }
        sonhandler.numSolutions: { get_input: num_solutions }
        sonhandler.minCollision: { get_input: min_collision }
        sonhandler.minConfusion: { get_input: min_confusion }
        sonhandler.maximumClusters: { get_input: max_clusters }
        sonhandler.badThreshold: { get_input: bad_threshold }
        sonhandler.poorThreshold: { get_input: poor_threshold }
        sonhandler.namespace: { get_input: namespace }
        sonhandler.sourceId: SONHMS
        sonhandler.dmaap.server: 
          - { get_input: dmaap }
        sonhandler.bufferTime: { get_input: buffer_time }
        sonhandler.cg: { get_input: cg }
        sonhandler.cid: { get_input: cid }
        sonhandler.configDb.service: { get_input: config_db }
        sonhandler.oof.service: { get_input: oof }
        sonhandler.optimizers: 
          - { get_input: pci_optimizer }
        service_calls:
          sdnr-getpnfname: []
          sdnr-getpci: []
          sdnr-getnbrlist: []
          sdnr-getcelllist: []
          oof-req: []
          policy-req: []
    relationships:
      - type: cloudify.relationships.depends_on
        target: pgaasvm
      - type: cloudify.relationships.depends_on
        target: son_policy

  son_policy:
    type: dcae.nodes.policy
    properties:
      policy_id:
           get_input: policy_id