summaryrefslogtreecommitdiffstats
path: root/healthcheck-container/get-status.js
blob: 034ff9d360504b7136359226d7c558aea84cd149 (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
/*
Copyright(c) 2018 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.
*/

/*
 * Query Kubernetes for status of deployments and extract readiness information
 */

const fs = require('fs');
const request = require('request');

const K8S_CREDS = '/var/run/secrets/kubernetes.io/serviceaccount';
const K8S_API = 'https://kubernetes.default.svc.cluster.local/';	// Full name to match cert for TLS
const K8S_PATH = 'apis/apps/v1beta2/namespaces/';

//Get token and CA cert
const ca = fs.readFileSync(K8S_CREDS + '/ca.crt');
const token = fs.readFileSync(K8S_CREDS + '/token');

const summarizeDeploymentList = function(list) {
	// list is a DeploymentList object returned by k8s
	// Individual deployments are in the array 'items'
	
	let ret = 
	{
		type: "summary",
		count: 0,
		ready: 0,
		items: []
	};
	
	// Extract readiness information
	for (let deployment of list.items) {
		ret.items.push(
			{
				name: deployment.metadata.name,
				ready: deployment.status.readyReplicas || 0,
				unavailable: deployment.status.unavailableReplicas || 0
			}
		);
		ret.count ++;
		ret.ready = ret.ready + (deployment.status.readyReplicas || 0);
	}
	
	return ret;
};

const summarizeDeployment = function(deployment) {
	// deployment is a Deployment object returned by k8s
	// we make it look enough like a DeploymentList object to
	// satisfy summarizeDeploymentList
	return summarizeDeploymentList({items: [deployment]});
};

const queryKubernetes = function(path, callback) {
	// Make request to Kubernetes
	
	const options = {
		url: K8S_API + path,
		ca : ca,
		headers: {
			Authorization: 'bearer ' + token
		},
		json: true
	};
	console.log ("request url: " + options.url);
	request(options, function(error, res, body) {
		console.log ("status: " + (res && res.statusCode) ? res.statusCode : "NONE");
		if (error) {
			console.log("error: " + error);
		}
		callback(error, res, body);
	});
};

const getStatus = function(path, extract, callback) {
	// Get info from k8s and extract readiness info
	queryKubernetes(path, function(error, res, body) {
		let ret = body;
		if (!error && res && res.statusCode === 200) {
			ret = extract(body);
		}
		callback (error, res, ret);
	});
};

const getStatusSinglePromise = function (item) {
	// Expect item to be of the form {namespace: "namespace", deployment: "deployment_name"}
	return new Promise(function(resolve, reject){
		const path = K8S_PATH + item.namespace + '/deployments/' + item.deployment;
		queryKubernetes(path, function(error, res, body){
			if (error) {
				reject(error);
			}
			else if (res.statusCode === 404) {
				// Treat absent deployment as if it's an unhealthy deployment
				resolve ({
					metadata: {name: item.deployment},
					status: {unavailableReplicas: 1}
				});
			}
			else if (res.statusCode != 200) {
				reject(body);
			}
			else {
				resolve(body);
			}
		});
	});
}
exports.getStatusNamespace = function (namespace, callback) {
	// Get readiness information for all deployments in namespace
	const path = K8S_PATH + namespace + '/deployments';
	getStatus(path, summarizeDeploymentList, callback);
};

exports.getStatusSingle = function (namespace, deployment, callback) {
	// Get readiness information for a single deployment
	const path = K8S_PATH + namespace + '/deployments/' + deployment;
	getStatus(path, summarizeDeployment, callback);
};

exports.getStatusListPromise = function (list) {
	// List is of the form [{namespace: "namespace", deployment: "deployment_name"}, ... ]
	const p = Promise.all(list.map(getStatusSinglePromise))
	return p.then(function(results) {
	    return summarizeDeploymentList({items: results});
	});
}