aboutsummaryrefslogtreecommitdiffstats
path: root/ncomp-docker-adaptor/src/main/java/org/openecomp/ncomp/servers/docker/TestDockerRun.java
blob: dcbe4a95c530a1b5abbdf6e96e9c52a76058b970 (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
/*-
 * ============LICENSE_START==========================================
 * OPENECOMP - DCAE
 * ===================================================================
 * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
 * ===================================================================
 * 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============================================
 */
	
package org.openecomp.ncomp.servers.docker;

import org.openecomp.ncomp.docker.ContainerOptions;
import org.openecomp.ncomp.docker.ContainerPortBindings;
import org.openecomp.ncomp.docker.ContainerRestartPolicy;
import org.openecomp.ncomp.docker.DockerFactory;
import org.openecomp.ncomp.sirius.manager.ISiriusServer;
import org.openecomp.ncomp.sirius.manager.ManagementServer;

import java.util.List;
import java.util.ArrayList;

public class TestDockerRun implements ISiriusServer {
	
	private ManagementServer server;
	
	public static void main(String[] args) {
		TestDockerRun t = new TestDockerRun();
	    String dockerRegistry = "cdf-2.novalocal:7113";
		String dockerImage = "dcae-controller-sdnlocal";
		String dockerImageTag = "latest";
		String image = dockerRegistry + "/" + dockerImage + ":" + dockerImageTag;	

		t.dockerRun(image);
	}
	
	private void dockerRun(String image) {
		server = new ManagementServer();
		DockerDockerHost dockerd = new DockerDockerHost(this);
		boolean withOpts = true;
		
		if (withOpts) {
			ContainerOptions opts = DockerFactory.eINSTANCE.createContainerOptions();
			
			// explicit port mapping
			ContainerPortBindings portBinds = DockerFactory.eINSTANCE.createContainerPortBindings();
			portBinds.setContainerPort(27001);
			portBinds.setProtocol("tcp");
			portBinds.setVmPort(27001);
			opts.getPortBindings().add(portBinds);
			
			// container name
			opts.setName("kens_folly");
			
			// vm to container volume mapping
			opts.getVolumes().add("/var/log:/opt/app/logs");
	
			// publish exposed ports to an ephemeral vm port
			opts.setPublishAllPorts(true);
			
			// set the containerName equal to the VM name
			opts.setSetContainerName(true);;
			
			// set restart policy 
			// if the docker engine is stopped and containers killed - this will 
			// instruct the docker engine to restart those containers when it 
			// is brought back up
			ContainerRestartPolicy restartPolicy = DockerFactory.eINSTANCE.createContainerRestartPolicy();
			restartPolicy.setNm("always");
			restartPolicy.setMaxRetryCnt(0);
			opts.setAutoRestart(restartPolicy);
		
			// add some environment variables
			List<String> rtEnv = new ArrayList<>();		
			rtEnv.add("FOO=bar");
			rtEnv.add("BAR=baz");
			rtEnv.add("BAz=foo");			
			opts.getEnv().addAll(rtEnv);
	
			dockerd.dockerRunWithOptions(image, opts);
		} else {
			dockerd.dockerRunWithName(image, "kens_folly");
		}
	}
	
	@Override
	public ManagementServer getServer() {
		return server;
	}

}