summaryrefslogtreecommitdiffstats
path: root/platformdoc/docs/components/component-type-docker.md
blob: 6e717a5ebea07dfc9b9464ac8d8f6afb7a4bac94 (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
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
# Component Requirements: Docker

## Overview

Component developers are required to provide artifacts for the platform to be able to deploy your component including:

* [Component Specification](component-specification/docker-specification)
* [One or more Data Formats](data-formats) *unless they already exist
* [Docker image](#docker-on-the-platform)

In addition, components will have to be enhanced to be compliant with the DCAE platform in order to correctly be deployed and be managed.  This page will discuss the changes which are grouped into the following categories:

* [Service Registration](#service-registration)
* [Configuration Management](#configuration-management)
* [Docker on the Platform](#docker-on-the-platform)
* [Operational Concerns](#operational-concerns)

Additional considerations are:

* [DTI Reconfiguration](#dti-reconfiguration)
* [Policy Reconfiguration](#policy-reconfiguration)

To help component developers to make and to test the changes needed to have components run on the platform, a command-line tool called [`dcae-cli`](dcae-cli/quickstart) is provided by the platform team. (Testing withing the dcae_cli tool is not yet available for DTI Reconfiguration or Policy).

## Service Registration

Every [Docker component is registered](../architecture/service-discovery) with the platform's service discovery layer.  Docker components are not expected to make the explicit make registration calls because that is done by through a platform 3rd party registration service.  A couple things are needed from component developers in order for this registration to occur successfully:

1. Docker images must be created from a Dockerfile that has an [`EXPOSE`](https://docs.docker.com/engine/reference/builder/#/expose) instruction.  This applies to components that listen on a port.
2. Component healthcheck details must be provided in the Docker auxiliary component specification

### Expose port

Components that listen on a specific port must explicitly declare in their Dockerfile that port using the `EXPOSE` instruction before building the image.
Warning! At the current time, you can not expose multiple ports in your Dockerfile or registration *will not work* correctly. 
Warning! Be sure to choose a port that is available. This may vary by environment. 

### Health check

Component developers are required to provide a way for the platform to periodically check the health of their running components.  The platform uses Consul to perform these periodic calls.  Consul provides different types of [check definitions](https://www.consul.io/docs/agent/checks.html).  The details of the definition used by your component is to be provided through the [Docker auxiliary specification](component-specification/docker-specification#auxiliary).

## Configuration Management

All configuration for a component is stored in CONSUL under the components uniquely generated name which is provided by the environment variable `HOSTNAME` as well as `SERVICE_NAME`. It is then made available to the component via a remote HTTP service call to CONFIG BINDING SERVICE. 

The main entry in CONSUL for the component contains its `generated application configuration`. This is based on the submitted component specification, and consists of the `interfaces` (streams and services/calls) and `parameters` sections. Other entries may exist as well, under specific keys, such as :dmaap or :dti. Each key represents a specific type of information and is also available to the component by calling CONFIG BINDING SERVICE. More on this below.

Components are required to pull their `generated application configuration` at application startup. The component must provide an initialization script that retrieves the application configuration and reference that script in its Dockerfile. Other calls can be made to CONFIG BINDING SERVICE to retrieve DMaaP, DTI Reconfiguration, or Pollicy Reconfiguration (not yet supported).

You can see more details on the generated application configuration [here](/components/dcae-cli/walkthrough/#view-the-platform-generated-configuration)

### Config Binding Service
The config binding service is a platform HTTP service that is responsible for providing clients with its fully resolve configuration JSON at startup, and also other configurations objects (such as :dti) when requested. 

At runtime, components should make an HTTP GET on: 

```
<config binding service hostname>:<port>/service_component/NAME
```
For Docker components, NAME should be set to `HOSTNAME`, which is provided as an ENV variable to the container. 

The binding service integrates with the streams and services section of the component specification. For example, if you specify that you call a service:
```
"services": {
    "calls": [{
        "config_key": "vnf-db",
        "request": {
            "format": "dcae.vnf.meta",
            "version": "1.0.0"
            },
        "response": {
            "format": "dcae.vnf.kpi",
            "version": "1.0.0"
            }
    }],
...
}
```
Then the config binding service will find all available IP addresses of services meeting the containers needs, and provide them to the container under your `config_key`:
```
// your configuration
{
    "vbf-db" :                 // see above 
        [IP:Port1, IP:Port2,…] // all of these meet your needs, choose one.
}
```
Regarding `<config binding service hostname>:<port>`, there is DNS work going on to make this resolvable in a convenient way inside of your container. 
However, currently you will be given a name as an ENV variable, `CONFIG_BINDING_SERVICE`, and you will need to query Consul's service discovery to get
`<config binding service hostname>:<port>`. 


### Generated Application Configuration

The DCAE platform uses the component specification to generate the component's application configuration provided at deployment time. The component developer should expect to use this configuration JSON in the component.

Pro-tip: As you build the component specification, use the [dcae-cli `dev` command](/components/dcae-cli/walkthrough/#view-the-platform-generated-configuration) to see what the resulting application configuration will look like.

For both Docker and CDAP, when the component is deployed, any `streams` and `services/calls` specified, will be injected into the configuration under the following well known structure, along with all `parameters`. (`services/provides` is not passed in to the application config). Your component is required to parse this information if it has any DMaaP connections or interfaces with another DCAE component.

This is best served by an example.

The following component spec snippet (from String Matching):
```
"streams":{  
    "subscribes": [{
      "format": "VES_specification",  
      "version": "4.27.2",    
      "type": "message_router",
      "config_key" : "mr_input"
    }],
    "publishes": [{
      "format": "VES_specification",  
      "version": "4.27.2",    
      "config_key": "mr_output",
      "type": "message_router"
     }]
  },
  "services":{  
    "calls": [{
      "config_key" : "aai_broker_handle",
      "verb": "GET",
      "request": {
        "format": "get_with_query_params",
        "version": "1.0.0"
      },
      "response": {
        "format": "aai_broker_response",
        "version": "3.0.0"
      } 
    }],
    "provides": []
  },
```

Will result in the following top level keys in the configuration (for CDAP, this will be under AppConfig)

```
   "streams_publishes":{  
      "mr_output":{                // notice the config key above
         "aaf_password":"XXX",
         "type":"message_router",
         "dmaap_info":{  
            "client_role": null,
            "client_id": null,
            "location": null,
            "topic_url":"https://dcae-msrt-mtl5-ftl2.homer.att.com:3905/events/com.att.dcae.dmaap.FTL2.DCAE-CL-EVENT" // just an example
         },
         "aaf_username":"XXX"
      }
   },
   "streams_subscribes":{  
      "mr_input":{                 // notice the config key above
         "aaf_password":"XXX",
         "type":"message_router",
         "dmaap_info":{  
            "client_role": null,
            "client_id": null,
            "location": null,
            "topic_url":"https://dcae-msrt-ftl2.homer.att.com:3905/events/com.att.dcae.dmaap.FTL2.TerrysStringMatchingTest" // just an example
         },
         "aaf_username":"XXX"
      }
   },
   "services_calls":{  
      "aai_broker_handle":[        // notice the config key above
         "135.205.226.128:32768"   // based on deployment time, just an example
      ]
   }
```
These keys will always be populated whether they are empty or not. So the minimum configuration you will get, (in the case of a component that provides an HTTP service, doesn't call any services, and has no streams, is:
```
    "streams_publishes":{},
    "streams_subscribes":{},
    "services_calls":{}
```

Thus your component should expect these well-known top level keys.

### DTI Reconfiguration 

Most Collector components will support DTI reconfiguration. That is, they must be designed to process multiple instances of a particular `vnfType-vnfFuncId`. When instances of that vnfType-vnfFuncId` are brought up or down, the collectors `reconfiguration script` will be executed. The components reconfiguration script must be defined with the following interfact:

```
`/opt/app/reconfigure.sh” dti $updated_dti`
```
where $updated_dti is a json for one vnfType-vnfFuncId instance that looks like this (for example).
Note: The reconfigure script does not have to be named 'reconfigure.sh'.

For a deployment of VNF Instance
```
{
  "deploy": {
    "vhss-ems": {
      "zrdm3avhss01ems001": {
        "dcae_target_collection_ip": "107.239.223.191",
        ...the remaining dti_input parameters...
      }
    }
  }
}
```
For an undeployment of VNF instance
```
{
  "undeploy": {
    "vhss-ems": [
      "zrdm3avhss01ems002"
    ]
  }
}
```

The component spec must contain the following:

* In the auxilary section, add the definition for the above reconfiguration script for the 'reconfigs' property. This is the script that the platform will call with DTI input when a DTI event is received for the collector supporting the specific dcae_target_type.
* In the parameter section, define a parameter 'dcae_target_type' defined with properties 'designer_editable' and property 'sourced_at_deployment'. Set 'designer_editable' to true if this is an SDC Self-Service microservice. Otherwise, set it to false. Set 'sourced_at_deployment' to true if input can be provided at deployment time by Operations. Otherwise set it to false.  

The component spec can retrieve information about ALL the instances it supports by doing a curl command to CONFIG BINDING SERVICE like this: 

```
curl http://<config binding service>:<port>/dti/$SERVICE_NAME 
```

This would return the following: 
```
{
  "vhss-ems": {        
    "zrdm3avhss01ems001": {
      "dcae_target_collection_ip": "107.239.223.191",
      the rest of the DTI_input fields…
                               },
    "zrdm3avhss01ems002": {
      "dcae_target_collection_ip": "107.239.223.192",
      the rest of the DTI_input fields…
    }
  }
}
``` 
The full list of DTI parameters can be found [here](https://codecloud.web.att.com/projects/ST_DCAE/repos/com.att.dcae.orch.dti-handler/browse/dti_inputs.yaml).

(The API for the CONFIG BINDING SERVICE is):
```
  /dti/{service_component_name}
    parameters:
      name: "service_component_name"
        in: "path"
        description: "Service Component Name. service_component_name:dti must be a key in consul." (see 
below for example output)
        required: true
        type: "string"
    get:
      description: "Returns as JSON the value for service_component_name:dti"
      operationId: "config_binding_service.controller.dti"
      responses:
        200:
          description: OK; the KV value is returned as an object
          schema: 
            type: object
        404:
          description: there is no configuration in Consul for this component's DTI events
```

### DMaaP

Components can be publishers or subscribers to either message router topics or data router feeds.  This is defined in the component specification under the `streams` section where you can specify whether your component is expected to subscribe or to publish to a [message router](component-specification/common-specification/#message-router) topic or to a [data router](component-specification/common-specification/#data-router) feed.  Given a composition with components that use DMaaP, the platform will provision the topic or feed and provide the necessary [connection details](/components/component-specification/dmaap-connection-objects) at runtime for each DMaaP dependent component.  These connection details are provided through your application's generated configuration.

In order to test DMaaP connections in onboarding, the developer (currently) must provision all test topics and feeds manually and provide the [dcae-cli with the connection details](dcae-cli/walkthrough/#dmaap-testing) when deploying your application.

Even thought the DMaaP connection information is included in the generated application configuration, it may be obtained by doing a call as in this example:

```
curl http://<config binding service>:<port>/dmaap/jm416b.d345ada1-cc31-4121-a741-9007b9f64808.1-0-1.dcae-collectors-cli-pm
```

This would return the following: 
```
{"cli_gamma_cisco_pm_config_stat": 
    {
	"publish_url": "https://dcae-drps-ftl2.homer.att.com/publish/1362", 
	"username": "mtl5-0", 
	"log_url": null, 
	"location": "mtl5-0", 
	"password": "i5qji048hdm2e38f0bg872tnqd", 
	"publisher_id": "1234"
    }
}
```

### Policy Reconfiguration 
*(not yet supported)*

Components must provide a way to receive policy reconfiguration, that is, configuration parameters that have been updated via the Policy UI. The component developer provides a docker script (defined in the [Docker auxiliary specification](component-specification/docker-specification#policy-example)) that will be triggered when this occurs. 

## Docker on the platform

### Images

Docker images must be pushed to the environment specific Nexus repository.  This requires tagging your build with the full name of you image which includes the Nexus repository name.

Use the Docker command-line to [tag](https://docs.docker.com/engine/reference/commandline/tag/) your Docker image where the *target image* must contain the registry host name and port.

For example, an application called laika has been tagged for an example Nexus registry:

```
$ docker images
REPOSITORY                                                                               TAG                 IMAGE ID            CREATED             SIZE
nexus01.research.att.com:18443/dcae-platform/laika                                       0.4.0               154cc382df61        7 weeks ago         710.5 MB
laika                                                                                    0.4.0               154cc382df61        7 weeks ago         710.5 MB
```

The solutioning evironment's Nexus host for the Docker registry is `nexus01.research.att.com:18443`.  You must run `docker login nexus01.research.att.com:18443` to access the registry.  Please contact the DCAE platform team to provide you with the credentials.

```
docker login nexus01.research.att.com:18443
```

Tag your image:

```
docker tag laika:0.4.0 nexus01.research.att.com:18443/dcae-platform/laika:0.4.0
```

Or build and tag:

```
docker build -t nexus01.research.att.com:18443/dcae-platform/laika:0.4.0 .
```

After tagging, upload your image to the remote registry using the Docker [push command](https://docs.docker.com/engine/reference/commandline/push/).  Note that the registry may require a login.  Use the Docker [login command](https://docs.docker.com/engine/reference/commandline/login/) before pushing in that case.

```
docker push nexus01.research.att.com:18443/dcae-platform/laika:0.4.0
```

*NOTE* Replace `dcae-platform` with the group directory that is applicable to your image.  Replace `laika` with your application's name.  Replace the `0.4.0` version with your application's version.

### Dockerfile

The Dockerfile must contain the name of the container's initialization script. This will be called when the container is deployed, and must call Config Binding Service as described in [Config Binding Service](#config-binding-service)

### Ports

On the DCAE platform, Docker components are run with the `--publish-all` or `-P` argument.  This means the Docker container for your component will be listening on a random port and that random port will be mapped to the port [you exposed](#service-registration).

### Envs

The platform provides a set of environment variables into each Docker container:

Name | Type | Description
---- | ---- | -----------
`HOSTNAME` | string | Unique name of the component instance that is generated
`CONSUL_HOST` | string | Hostname of the platform's Consul instance
`CONFIG_BINDING_SERVICE` | string | Hostname of the platform's config binding service instance
`DOCKER_HOST` | string | Host of the target platform Docker host to run the container on

## Operational Concerns

### Logging

Currently the platform uses the default `json-file` logging driver for Docker.  For onboarding testing, component developers can access their logs from their Docker containers either by running their component using the `--attached` flag or by using the `docker logs` command.  The requirement is that applications must write to stdout and/or stderr.

To use the `docker logs` command for your deployed running Docker container,

*  You must have Docker installed on your local machine
*  Have the generated name of your component. This is generated for you when you execute `dcae_cli component dev` or `dcae_cli component run`.
*  Find the target Docker host using the `dcae_cli profiles show` command:

```
$ dcae_cli profiles show solutioning
{
    "cdap_broker": "cdap_broker",
    "config_binding_service": "config_binding_service",
    "consul_host": "realsolcnsl00.dcae.solutioning.homer.att.com",
    "docker_host": "realsolcpdokr00.dcae.solutioning.homer.att.com:2376"
}
```

*  Set your Docker client to point to the target Docker host:

```
$ export DOCKER_HOST="tcp://realsolcpdokr00.dcae.solutioning.homer.att.com:2376"
```

*  Use the `docker logs` command:

```
$ docker logs <generated component name>
```