1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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
|
#============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
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:latest"
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
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
topic00_location:
topic01_location:
topic02_location:
topic03_location:
topic00_client_role:
topic01_client_role:
topic02_client_role:
topic03_client_role:
topic00_client_id:
topic01_client_id:
topic02_client_id:
topic03_client_id:
topic00_url:
topic01_url:
topic02_url:
topic03_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: /var/log/onap
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
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.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
|