aboutsummaryrefslogtreecommitdiffstats
path: root/cloudify-client/pom.xml
blob: 057a1ed98f61c97158aa13cc55b498387243a1c4 (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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.onap.so</groupId>
		<artifactId>so</artifactId>
		<version>1.2.0-SNAPSHOT</version>
	</parent>
	
	<groupId>org.onap.so</groupId>
	<artifactId>cloudify-client</artifactId>
	<packaging>jar</packaging>
	<name>Cloudify Rest Client</name>
	<description>Java client for Cloudify REST interface</description>

	<build>
		<finalName>${project.artifactId}-${project.version}</finalName>
		<plugins>
			<plugin>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.6</version>
				<configuration>
					<classesDirectory>target/classes</classesDirectory>
				</configuration>
			</plugin>
		</plugins>
	</build>
	
	<dependencies>
		<dependency>
			<groupId>org.onap.so</groupId>
			<artifactId>common</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpcore</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
		</dependency>
		<dependency>
			<groupId>org.hamcrest</groupId>
			<artifactId>hamcrest-core</artifactId>
			<version>1.3</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.hamcrest</groupId>
			<artifactId>hamcrest-library</artifactId>
			<version>1.3</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-all</artifactId>
			<version>1.9.5</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.6</version>
        </dependency>
	</dependencies>


</project>
2">"Checking if " + job_name + " is complete") response = "" try: response = batchV1Api.read_namespaced_job_status(job_name, namespace) if response.status.succeeded == 1: job_status_type = response.status.conditions[0].type if job_status_type == "Complete": complete = True else: log.info(job_name + " is not complete") else: log.info(job_name + " has not succeeded yet") return complete except Exception as e: log.error("Exception when calling read_namespaced_job_status: %s\n" % e) DEF_TIMEOUT = 10 DESCRIPTION = "Kubernetes container job complete check utility" USAGE = "Usage: job_complete.py [-t <timeout>] -j <job_name> [-j <job_name> ...]\n" \ "where\n" \ "<timeout> - wait for container job complete timeout in min, default is " + str(DEF_TIMEOUT) + "\n" \ "<job_name> - name of the job to wait for\n" def main(argv): # args are a list of job names job_names = [] timeout = DEF_TIMEOUT try: opts, args = getopt.getopt(argv, "hj:t:", ["job-name=", "timeout=", "help"]) for opt, arg in opts: if opt in ("-h", "--help"): print("%s\n\n%s" % (DESCRIPTION, USAGE)) sys.exit() elif opt in ("-j", "--job-name"): job_names.append(arg) elif opt in ("-t", "--timeout"): timeout = float(arg) except (getopt.GetoptError, ValueError) as e: print("Error parsing input parameters: %s\n" % e) print(USAGE) sys.exit(2) if job_names.__len__() == 0: print("Missing required input parameter(s)\n") print(USAGE) sys.exit(2) for job_name in job_names: timeout = time.time() + timeout * 60 while True: complete = is_job_complete(job_name) if complete is True: break elif time.time() > timeout: log.warning("timed out waiting for '" + job_name + "' to be completed") exit(1) else: time.sleep(5) if __name__ == "__main__": main(sys.argv[1:])