@fbl-plugins/k8s-helm
Advanced tools
Comparing version 1.1.1 to 1.2.0-beta.0
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.DeleteActionHandler = void 0; | ||
const fbl_1 = require("fbl"); | ||
@@ -4,0 +5,0 @@ const processors_1 = require("../processors"); |
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./repo")); | ||
__export(require("./DeleteActionHandler")); | ||
__export(require("./TestActionHandler")); | ||
__export(require("./UpgradeOrInstallActionHandler")); | ||
__exportStar(require("./repo"), exports); | ||
__exportStar(require("./DeleteActionHandler"), exports); | ||
__exportStar(require("./TestActionHandler"), exports); | ||
__exportStar(require("./UpgradeOrInstallActionHandler"), exports); | ||
//# sourceMappingURL=index.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.AddRepoActionHandler = void 0; | ||
const fbl_1 = require("fbl"); | ||
@@ -4,0 +5,0 @@ const processors_1 = require("../../processors"); |
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./AddRepoActionHandler")); | ||
__exportStar(require("./AddRepoActionHandler"), exports); | ||
//# sourceMappingURL=index.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.TestActionHandler = void 0; | ||
const fbl_1 = require("fbl"); | ||
@@ -4,0 +5,0 @@ const processors_1 = require("../processors"); |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.UpgradeOrInstallActionHandler = void 0; | ||
const fbl_1 = require("fbl"); | ||
@@ -4,0 +5,0 @@ const processors_1 = require("../processors"); |
@@ -12,2 +12,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.BaseActionProcessor = void 0; | ||
const fbl_1 = require("fbl"); | ||
@@ -14,0 +15,0 @@ const typedi_1 = require("typedi"); |
@@ -8,3 +8,3 @@ import * as Joi from 'joi'; | ||
*/ | ||
getValidationSchema(): Joi.SchemaLike | null; | ||
getValidationSchema(): Joi.Schema | null; | ||
/** | ||
@@ -11,0 +11,0 @@ * @inheritdoc |
@@ -12,2 +12,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.DeleteActionProcessor = void 0; | ||
const Joi = require("joi"); | ||
@@ -14,0 +15,0 @@ const BaseActionProcessor_1 = require("./BaseActionProcessor"); |
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./repo")); | ||
__export(require("./DeleteActionProcessor")); | ||
__export(require("./TestActionProcessor")); | ||
__export(require("./UpgradeOrInstallActionProcessor")); | ||
__exportStar(require("./repo"), exports); | ||
__exportStar(require("./DeleteActionProcessor"), exports); | ||
__exportStar(require("./TestActionProcessor"), exports); | ||
__exportStar(require("./UpgradeOrInstallActionProcessor"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -8,3 +8,3 @@ import * as Joi from 'joi'; | ||
*/ | ||
getValidationSchema(): Joi.SchemaLike | null; | ||
getValidationSchema(): Joi.Schema | null; | ||
/** | ||
@@ -11,0 +11,0 @@ * @inheritdoc |
@@ -12,2 +12,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.AddRepoActionProcessor = void 0; | ||
const Joi = require("joi"); | ||
@@ -14,0 +15,0 @@ const BaseActionProcessor_1 = require("../BaseActionProcessor"); |
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./AddRepoActionProcessor")); | ||
__exportStar(require("./AddRepoActionProcessor"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -8,3 +8,3 @@ import * as Joi from 'joi'; | ||
*/ | ||
getValidationSchema(): Joi.SchemaLike | null; | ||
getValidationSchema(): Joi.Schema | null; | ||
/** | ||
@@ -11,0 +11,0 @@ * @inheritdoc |
@@ -12,2 +12,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.TestActionProcessor = void 0; | ||
const Joi = require("joi"); | ||
@@ -14,0 +15,0 @@ const BaseActionProcessor_1 = require("./BaseActionProcessor"); |
@@ -8,3 +8,3 @@ import * as Joi from 'joi'; | ||
*/ | ||
getValidationSchema(): Joi.SchemaLike | null; | ||
getValidationSchema(): Joi.Schema | null; | ||
/** | ||
@@ -11,0 +11,0 @@ * @inheritdoc |
@@ -12,2 +12,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.UpgradeOrInstallActionProcessor = void 0; | ||
const fbl_1 = require("fbl"); | ||
@@ -34,4 +35,3 @@ const Joi = require("joi"); | ||
return __awaiter(this, void 0, void 0, function* () { | ||
this.snapshot.log(`Ugrading or installing release ${this.options.release} of helm chart ${this.options.chart}@${this.options | ||
.version || 'latest'}`); | ||
this.snapshot.log(`Ugrading or installing release ${this.options.release} of helm chart ${this.options.chart}@${this.options.version || 'latest'}`); | ||
const args = yield this.prepareCLIArgs(); | ||
@@ -38,0 +38,0 @@ yield this.execHelmCommand(args, this.options.debug); |
{ | ||
"name": "@fbl-plugins/k8s-helm", | ||
"version": "1.1.1", | ||
"version": "1.2.0-beta.0", | ||
"description": "FBL plugin for K8s Helm CLI", | ||
@@ -24,4 +24,4 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"joi": "14.3.1", | ||
"js-yaml": "3.13.1", | ||
"joi": "17.2.1", | ||
"js-yaml": "3.14.0", | ||
"typedi": "0.8.0" | ||
@@ -33,30 +33,30 @@ }, | ||
"devDependencies": { | ||
"@commitlint/cli": "8.3.5", | ||
"@commitlint/config-conventional": "8.3.4", | ||
"@commitlint/cli": "9.1.2", | ||
"@commitlint/config-conventional": "9.1.2", | ||
"@fireblink/k8s-api-client": "1.2.0", | ||
"@types/chai": "4.2.9", | ||
"@types/chai": "4.2.12", | ||
"@types/form-data": "2.5.0", | ||
"@types/joi": "14.3.4", | ||
"@types/js-yaml": "3.12.2", | ||
"@types/node": "13.7.4", | ||
"@types/js-yaml": "3.12.5", | ||
"@types/node": "14.6.3", | ||
"chai": "4.2.0", | ||
"chai-as-promised": "7.1.1", | ||
"commitizen": "4.0.3", | ||
"conventional-changelog-cli": "2.0.31", | ||
"cz-conventional-changelog": "3.1.0", | ||
"fbl": "1.12.0", | ||
"husky": "4.2.3", | ||
"commitizen": "4.2.1", | ||
"conventional-changelog-cli": "2.1.0", | ||
"cz-conventional-changelog": "3.3.0", | ||
"fbl": "1.14.0-beta.3", | ||
"husky": "4.2.5", | ||
"jsonlint": "1.6.3", | ||
"lint-staged": "10.0.7", | ||
"mocha": "7.0.1", | ||
"lint-staged": "10.3.0", | ||
"mocha": "8.1.3", | ||
"mocha-typescript": "1.1.17", | ||
"mochawesome": "4.1.0", | ||
"nyc": "15.0.0", | ||
"prettier": "1.19.1", | ||
"rimraf": "3.0.1", | ||
"source-map-support": "0.5.16", | ||
"ts-node": "8.6.2", | ||
"tslint": "5.20.1", | ||
"mochawesome": "6.1.1", | ||
"nyc": "15.1.0", | ||
"prettier": "2.1.1", | ||
"rimraf": "3.0.2", | ||
"source-map-support": "0.5.19", | ||
"ts-node": "9.0.0", | ||
"tslint": "6.1.3", | ||
"tslint-config-prettier": "1.18.0", | ||
"typescript": "3.7.5", | ||
"typescript": "4.0.2", | ||
"yarn-check": "0.0.3" | ||
@@ -63,0 +63,0 @@ }, |
@@ -6,3 +6,3 @@ # FBL Plugins: K8s Helm | ||
[![CircleCI](https://circleci.com/gh/FireBlinkLTD/fbl-plugins-k8s-helm.svg?style=svg)](https://circleci.com/gh/FireBlinkLTD/fbl-plugins-k8s-helm) | ||
[![Greenkeeper badge](https://badges.greenkeeper.io/FireBlinkLTD/fbl-plugins-k8s-helm.svg)](https://greenkeeper.io/) | ||
[![Known Vulnerabilities](https://snyk.io/test/github/FireBlinkLTD/fbl-plugins-k8s-helm/badge.svg)](https://snyk.io/test/github/FireBlinkLTD/fbl-plugins-k8s-helm) | ||
[![codecov](https://codecov.io/gh/FireBlinkLTD/fbl-plugins-k8s-helm/branch/master/graph/badge.svg)](https://codecov.io/gh/FireBlinkLTD/fbl-plugins-k8s-helm) | ||
@@ -33,2 +33,6 @@ [![Total alerts](https://img.shields.io/lgtm/alerts/g/FireBlinkLTD/fbl-plugins-k8s-helm.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/FireBlinkLTD/fbl-plugins-k8s-helm/alerts/) | ||
## Examples | ||
Check [fbl-examples](https://github.com/FireBlinkLTD/fbl-examples) repository for usage examples. | ||
## Integration | ||
@@ -35,0 +39,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57445
753
89
2
+ Added@hapi/address@4.1.0(transitive)
+ Added@hapi/formula@2.0.0(transitive)
+ Added@hapi/pinpoint@2.0.1(transitive)
+ Addedjoi@17.2.1(transitive)
+ Addedjs-yaml@3.14.0(transitive)
- Removedhoek@6.1.3(transitive)
- Removedisemail@3.2.0(transitive)
- Removedjoi@14.3.1(transitive)
- Removedjs-yaml@3.13.1(transitive)
- Removedpunycode@2.3.1(transitive)
- Removedtopo@3.0.3(transitive)
Updatedjoi@17.2.1
Updatedjs-yaml@3.14.0