polling logs from kubernetes api
parent
d8ea2bd701
commit
c281250358
|
|
@ -1009,7 +1009,7 @@ class Kubernetes {
|
|||
core.info('Job created');
|
||||
});
|
||||
}
|
||||
static watchPodUntilReadyAndRead() {
|
||||
static watchPodUntilReadyAndRead(statusFilter) {
|
||||
var _a, _b, _c;
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
let ready = false;
|
||||
|
|
@ -1020,7 +1020,7 @@ class Kubernetes {
|
|||
const element = pods.body.items[index];
|
||||
const jobname = (_b = (_a = element.metadata) === null || _a === void 0 ? void 0 : _a.labels) === null || _b === void 0 ? void 0 : _b['job-name'];
|
||||
const phase = (_c = element.status) === null || _c === void 0 ? void 0 : _c.phase;
|
||||
if (jobname === this.jobName && phase !== 'Pending') {
|
||||
if (jobname === this.jobName && phase !== statusFilter) {
|
||||
core.info('Pod no longer pending');
|
||||
if (phase === 'Failure') {
|
||||
core.error('Kubernetes job failed');
|
||||
|
|
@ -1035,17 +1035,37 @@ class Kubernetes {
|
|||
});
|
||||
}
|
||||
static watchBuildJobUntilFinished() {
|
||||
var _a, _b, _c, _d, _e, _f, _g;
|
||||
var _a, _b, _c, _d;
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
const pod = (yield Kubernetes.watchPodUntilReadyAndRead()) || {};
|
||||
const pod = (yield Kubernetes.watchPodUntilReadyAndRead('Pending')) || {};
|
||||
core.info(`Watching build job ${(_a = pod.metadata) === null || _a === void 0 ? void 0 : _a.name} ${JSON.stringify((_c = (_b = pod.status) === null || _b === void 0 ? void 0 : _b.containerStatuses) === null || _c === void 0 ? void 0 : _c[0].state, undefined, 4)}`);
|
||||
core.info(JSON.stringify({
|
||||
name: ((_d = pod.metadata) === null || _d === void 0 ? void 0 : _d.name) || '',
|
||||
namespace: this.namespace,
|
||||
container: (_f = (_e = pod.status) === null || _e === void 0 ? void 0 : _e.containerStatuses) === null || _f === void 0 ? void 0 : _f[0].containerID,
|
||||
}, undefined, 4));
|
||||
const logs = yield this.kubeClient.readNamespacedPodLog(((_g = pod.metadata) === null || _g === void 0 ? void 0 : _g.name) || '', this.namespace);
|
||||
yield Kubernetes.streamLogs(((_d = pod.metadata) === null || _d === void 0 ? void 0 : _d.name) || '', this.namespace);
|
||||
});
|
||||
}
|
||||
static streamLogs(name, namespace) {
|
||||
var _a, _b;
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
let running = true;
|
||||
let logQueryTime;
|
||||
while (running) {
|
||||
const logs = yield this.kubeClient.readNamespacedPodLog(name, namespace, undefined, undefined, undefined, undefined, undefined, undefined, logQueryTime, undefined, true);
|
||||
core.info(logs.body);
|
||||
const arrayOfLines = (_a = logs.body.match(/[^\n\r]+/g)) === null || _a === void 0 ? void 0 : _a.reverse();
|
||||
if (arrayOfLines) {
|
||||
for (const element of arrayOfLines) {
|
||||
const [time, ...line] = element.split(' ');
|
||||
if (time !== logQueryTime) {
|
||||
core.info(line.join(' '));
|
||||
}
|
||||
else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
logQueryTime = arrayOfLines[0].split(' ')[0];
|
||||
}
|
||||
const pod = yield this.kubeClient.readNamespacedPod(name, namespace);
|
||||
running = ((_b = pod.body.status) === null || _b === void 0 ? void 0 : _b.phase) === 'Running';
|
||||
}
|
||||
});
|
||||
}
|
||||
static cleanup() {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -295,7 +295,7 @@ class Kubernetes {
|
|||
core.info('Job created');
|
||||
}
|
||||
|
||||
static async watchPodUntilReadyAndRead() {
|
||||
static async watchPodUntilReadyAndRead(statusFilter: string) {
|
||||
let ready = false;
|
||||
|
||||
while (!ready) {
|
||||
|
|
@ -305,7 +305,7 @@ class Kubernetes {
|
|||
const element = pods.body.items[index];
|
||||
const jobname = element.metadata?.labels?.['job-name'];
|
||||
const phase = element.status?.phase;
|
||||
if (jobname === this.jobName && phase !== 'Pending') {
|
||||
if (jobname === this.jobName && phase !== statusFilter) {
|
||||
core.info('Pod no longer pending');
|
||||
if (phase === 'Failure') {
|
||||
core.error('Kubernetes job failed');
|
||||
|
|
@ -319,7 +319,7 @@ class Kubernetes {
|
|||
}
|
||||
|
||||
static async watchBuildJobUntilFinished() {
|
||||
const pod = (await Kubernetes.watchPodUntilReadyAndRead()) || {};
|
||||
const pod = (await Kubernetes.watchPodUntilReadyAndRead('Pending')) || {};
|
||||
|
||||
core.info(
|
||||
`Watching build job ${pod.metadata?.name} ${JSON.stringify(
|
||||
|
|
@ -328,19 +328,42 @@ class Kubernetes {
|
|||
4,
|
||||
)}`,
|
||||
);
|
||||
core.info(
|
||||
JSON.stringify(
|
||||
{
|
||||
name: pod.metadata?.name || '',
|
||||
namespace: this.namespace,
|
||||
container: pod.status?.containerStatuses?.[0].containerID,
|
||||
},
|
||||
await Kubernetes.streamLogs(pod.metadata?.name || '', this.namespace);
|
||||
}
|
||||
|
||||
static async streamLogs(name: string, namespace: string) {
|
||||
let running = true;
|
||||
let logQueryTime;
|
||||
while (running) {
|
||||
const logs = await this.kubeClient.readNamespacedPodLog(
|
||||
name,
|
||||
namespace,
|
||||
undefined,
|
||||
4,
|
||||
),
|
||||
undefined,
|
||||
undefined,
|
||||
undefined,
|
||||
undefined,
|
||||
undefined,
|
||||
logQueryTime,
|
||||
undefined,
|
||||
true,
|
||||
);
|
||||
const logs = await this.kubeClient.readNamespacedPodLog(pod.metadata?.name || '', this.namespace);
|
||||
core.info(logs.body);
|
||||
const arrayOfLines = logs.body.match(/[^\n\r]+/g)?.reverse();
|
||||
if (arrayOfLines) {
|
||||
for (const element of arrayOfLines) {
|
||||
const [time, ...line] = element.split(' ');
|
||||
if (time !== logQueryTime) {
|
||||
core.info(line.join(' '));
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
logQueryTime = arrayOfLines[0].split(' ')[0];
|
||||
}
|
||||
const pod = await this.kubeClient.readNamespacedPod(name, namespace);
|
||||
running = pod.body.status?.phase === 'Running';
|
||||
}
|
||||
}
|
||||
|
||||
static async cleanup() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue