UNPKG

arecibo

Version:

Fastify plugin that respondes to Kubernetes readiness and liveness probes.

26 lines 804 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.livenessSchema = exports.readinessSchema = void 0; exports.readinessSchema = { description: 'The kubelet uses liveness probes to know when to restart a Container', tags: ['arecibo'], summary: 'Readiness Probe route', response: { 200: { description: 'All Systems Ready!', type: 'string', }, }, }; exports.livenessSchema = { description: 'The kubelet uses readiness probes to know when a Container is ready to start accepting traffic', tags: ['arecibo'], summary: 'Liveness Probe route', response: { 200: { description: 'All Systems Ready!', type: 'string', }, }, }; //# sourceMappingURL=schema.js.map