k8ts
Version:
Powerful framework for building Kubernetes manifests in TypeScript.
113 lines • 5.42 kB
JavaScript
;
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
var useValue = arguments.length > 2;
for (var i = 0; i < initializers.length; i++) {
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
}
return useValue ? value : void 0;
};
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
var _, done = false;
for (var i = decorators.length - 1; i >= 0; i--) {
var context = {};
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
if (kind === "accessor") {
if (result === void 0) continue;
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
if (_ = accept(result.get)) descriptor.get = _;
if (_ = accept(result.set)) descriptor.set = _;
if (_ = accept(result.init)) initializers.unshift(_);
}
else if (_ = accept(result)) {
if (kind === "field") initializers.unshift(_);
else descriptor[key] = _;
}
}
if (target) Object.defineProperty(target, contextIn.name, descriptor);
done = true;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Deployment = void 0;
const instruments_1 = require("@k8ts/instruments");
const doddle_1 = require("doddle");
const lodash_1 = require("lodash");
const error_1 = require("../../error");
const apps_1 = require("../../kinds/apps");
const pod_1 = require("../pod");
let Deployment = (() => {
let _classSuper = instruments_1.Resource_Top;
let _instanceExtraInitializers = [];
let _get_template_decorators;
return class Deployment extends _classSuper {
static {
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
_get_template_decorators = [doddle_1.doddlify];
__esDecorate(this, null, _get_template_decorators, { kind: "getter", name: "template", static: false, private: false, access: { has: obj => "template" in obj, get: obj => obj.template }, metadata: _metadata }, null, _instanceExtraInitializers);
if (_metadata) Object.defineProperty(this, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
}
__PORTS__ = __runInitializers(this, _instanceExtraInitializers);
get kind() {
return apps_1.apps.v1.Deployment._;
}
#_ = (() => {
const origin = instruments_1.OriginContextTracker.current;
if (!origin) {
throw new error_1.MakeError(`Deployment ${this.name} must be created within an OriginEntity context`);
}
this.props.$template.$POD = origin["__binder__"]().bind(this.props.$template.$POD);
})();
__kids__() {
return [this.template];
}
body() {
const self = this;
const template = self.template["__submanifest__"]();
const noKindFields = (0, lodash_1.omit)(template, ["kind", "apiVersion"]);
return {
spec: {
...(0, lodash_1.omitBy)(self.props, (x, k) => k.startsWith("$")),
selector: {
matchLabels: {
app: self.name
}
},
template: noKindFields,
strategy: self._strategy
}
};
}
get _strategy() {
const strat = this.props.$strategy;
if (!strat) {
return undefined;
}
if (strat.type === "Recreate") {
return strat;
}
if (strat.type === "RollingUpdate") {
return {
type: "RollingUpdate",
rollingUpdate: (0, lodash_1.omit)(strat, "type")
};
}
throw new error_1.MakeError(`Invalid strategy type: ${strat}`);
}
get template() {
const podTemplate = new pod_1.Pod_Template(this, this.name, this.props.$template);
podTemplate.meta.add("%app", this.name);
return podTemplate;
}
get ports() {
return this.template.ports;
}
};
})();
exports.Deployment = Deployment;
//# sourceMappingURL=deployment.js.map