summaryrefslogtreecommitdiffstats
path: root/azure/aria/aria-extension-cloudify/src/aria/examples/clearwater/clearwater-single-existing.yaml
blob: 72b882ac75d15cd5d46bf98e03937859b5a72080 (plain)
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
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements.  See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.

tosca_definitions_version: tosca_simple_yaml_1_0

description: >-
  Project Clearwater is an open-source IMS core, developed by Metaswitch Networks and released under
  the GNU GPLv3.

metadata:
  template_name: clearwater-single-existing
  template_author: ARIA
  template_version: '1.0'
  aria_version: '0.2.0'

imports:
  - types/clearwater.yaml
  - aria-1.0

topology_template:

  inputs:
    hosts.ssh.user:
      description: >-
        Existing SSH user.
      type: string
    hosts.ssh.password:
      description: >-
        Existing SSH password.
      type: string
    existing_host.public_address:
      description: >-
        Existing IP address that can be accessed by ARIA.
      type: string
    existing_host.private_address:
      description: >-
        Existing IP address that can be accessed within the service.
      type: string
      default: { get_input: existing_host.public_address }
    existing_host.hostname:
      description: >-
        The hostname will be changed to this.
      type: string
      default: aria-clearwater-single

  node_templates:
    bono:
      type: clearwater.Bono
      requirements:
        - sip_downstream: clearwater.Sprout
        - sip_secure_downstream: clearwater.Sprout
        - ralf: clearwater.Ralf

    sprout:
      type: clearwater.Sprout
      requirements:
        - ralf: clearwater.Ralf
# cyclical: see ARIA-327
#        - sip_upstream: clearwater.Bono

    dime:
      type: clearwater.Dime

    homestead:
      type: clearwater.Homestead

    ralf:
      type: clearwater.Ralf
      description: >-
        Optional, only required if you are using a CCF (Charging Collection Function).

    homer:
      type: clearwater.Homer

    vellum:
      type: clearwater.Vellum
#      requirements:
# cyclical: see ARIA-327
#        - ralf: clearwater.Ralf

    i-cscf:
      type: clearwater.I-CSCF

    s-cscf:
      type: clearwater.S-CSCF

    ellis:
      type: clearwater.Ellis
      description: >-
        Optional, only required if you want a web frontend.
      properties:
        provision_numbers_count: 1000
      requirements:
        - ralf: clearwater.Ralf

    existing_host:
      type: clearwater.Host
      attributes:
        public_address: { get_input: existing_host.public_address }
        private_address: { get_input: existing_host.private_address }
      capabilities:
        host:
          properties:
            hostname: { get_input: existing_host.hostname }
            ssh.user: { get_input: hosts.ssh.user }
            ssh.password: { get_input: hosts.ssh.password }
            max_log_directory_size: 50 MiB
            reduce_cassandra_mem_usage: true

    smtp:
      type: smtp.SMTP
      properties:
        address: 127.0.0.1
      capabilities:
        smtp:
          properties:
            username: username
            password: password

  policies:
    configuration:
      type: clearwater.Configuration
      properties:
        zone: example.com
        secret: secret

  substitution_mappings:
    node_type: ims.nodes.IMS
    capabilities:
       p-cscf: [ bono, p-cscf ]
       i-cscf: [ i-cscf, i-cscf ]
       s-cscf: [ s-cscf, s-cscf ]
       hss: [ homestead, hss ]
       ctf: [ ralf, ctf ]
       xdms: [ homer, xdms ]