mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-04-12 09:22:19 +08:00
Review comment changes
This commit is contained in:
parent
87732d1861
commit
77dd040b09
106
lib/constants.js
106
lib/constants.js
@ -1,53 +1,53 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.getWorkflowAnnotationKeyLabel = exports.getWorkflowAnnotationsJson = exports.workloadTypesWithRolloutStatus = exports.workloadTypes = exports.deploymentTypes = exports.ServiceTypes = exports.DiscoveryAndLoadBalancerResource = exports.KubernetesWorkload = void 0;
|
exports.getWorkflowAnnotationKeyLabel = exports.getWorkflowAnnotationsJson = exports.workloadTypesWithRolloutStatus = exports.workloadTypes = exports.deploymentTypes = exports.ServiceTypes = exports.DiscoveryAndLoadBalancerResource = exports.KubernetesWorkload = void 0;
|
||||||
class KubernetesWorkload {
|
class KubernetesWorkload {
|
||||||
}
|
}
|
||||||
exports.KubernetesWorkload = KubernetesWorkload;
|
exports.KubernetesWorkload = KubernetesWorkload;
|
||||||
KubernetesWorkload.pod = 'Pod';
|
KubernetesWorkload.pod = 'Pod';
|
||||||
KubernetesWorkload.replicaset = 'Replicaset';
|
KubernetesWorkload.replicaset = 'Replicaset';
|
||||||
KubernetesWorkload.deployment = 'Deployment';
|
KubernetesWorkload.deployment = 'Deployment';
|
||||||
KubernetesWorkload.statefulSet = 'StatefulSet';
|
KubernetesWorkload.statefulSet = 'StatefulSet';
|
||||||
KubernetesWorkload.daemonSet = 'DaemonSet';
|
KubernetesWorkload.daemonSet = 'DaemonSet';
|
||||||
KubernetesWorkload.job = 'job';
|
KubernetesWorkload.job = 'job';
|
||||||
KubernetesWorkload.cronjob = 'cronjob';
|
KubernetesWorkload.cronjob = 'cronjob';
|
||||||
class DiscoveryAndLoadBalancerResource {
|
class DiscoveryAndLoadBalancerResource {
|
||||||
}
|
}
|
||||||
exports.DiscoveryAndLoadBalancerResource = DiscoveryAndLoadBalancerResource;
|
exports.DiscoveryAndLoadBalancerResource = DiscoveryAndLoadBalancerResource;
|
||||||
DiscoveryAndLoadBalancerResource.service = 'service';
|
DiscoveryAndLoadBalancerResource.service = 'service';
|
||||||
DiscoveryAndLoadBalancerResource.ingress = 'ingress';
|
DiscoveryAndLoadBalancerResource.ingress = 'ingress';
|
||||||
class ServiceTypes {
|
class ServiceTypes {
|
||||||
}
|
}
|
||||||
exports.ServiceTypes = ServiceTypes;
|
exports.ServiceTypes = ServiceTypes;
|
||||||
ServiceTypes.loadBalancer = 'LoadBalancer';
|
ServiceTypes.loadBalancer = 'LoadBalancer';
|
||||||
ServiceTypes.nodePort = 'NodePort';
|
ServiceTypes.nodePort = 'NodePort';
|
||||||
ServiceTypes.clusterIP = 'ClusterIP';
|
ServiceTypes.clusterIP = 'ClusterIP';
|
||||||
exports.deploymentTypes = ['deployment', 'replicaset', 'daemonset', 'pod', 'statefulset'];
|
exports.deploymentTypes = ['deployment', 'replicaset', 'daemonset', 'pod', 'statefulset'];
|
||||||
exports.workloadTypes = ['deployment', 'replicaset', 'daemonset', 'pod', 'statefulset', 'job', 'cronjob'];
|
exports.workloadTypes = ['deployment', 'replicaset', 'daemonset', 'pod', 'statefulset', 'job', 'cronjob'];
|
||||||
exports.workloadTypesWithRolloutStatus = ['deployment', 'daemonset', 'statefulset'];
|
exports.workloadTypesWithRolloutStatus = ['deployment', 'daemonset', 'statefulset'];
|
||||||
function getWorkflowAnnotationsJson(lastSuccessRunSha, workflowFilePath, filePathConfigs) {
|
function getWorkflowAnnotationsJson(lastSuccessRunSha, workflowFilePath, filePathConfigs) {
|
||||||
return JSON.stringify(`{`
|
return JSON.stringify(`{`
|
||||||
+ `'run': '${process.env.GITHUB_RUN_ID}',`
|
+ `'run': '${process.env.GITHUB_RUN_ID}',`
|
||||||
+ `'repository': '${process.env.GITHUB_REPOSITORY}',`
|
+ `'repository': '${process.env.GITHUB_REPOSITORY}',`
|
||||||
+ `'workflow': '${process.env.GITHUB_WORKFLOW}',`
|
+ `'workflow': '${process.env.GITHUB_WORKFLOW}',`
|
||||||
+ `'workflowFileName': '${workflowFilePath.replace(".github/workflows/", "")}',`
|
+ `'workflowFileName': '${workflowFilePath.replace(".github/workflows/", "")}',`
|
||||||
+ `'jobName': '${process.env.GITHUB_JOB}',`
|
+ `'jobName': '${process.env.GITHUB_JOB}',`
|
||||||
+ `'createdBy': '${process.env.GITHUB_ACTOR}',`
|
+ `'createdBy': '${process.env.GITHUB_ACTOR}',`
|
||||||
+ `'runUri': 'https://github.com/${process.env.GITHUB_REPOSITORY}/actions/runs/${process.env.GITHUB_RUN_ID}',`
|
+ `'runUri': 'https://github.com/${process.env.GITHUB_REPOSITORY}/actions/runs/${process.env.GITHUB_RUN_ID}',`
|
||||||
+ `'commit': '${process.env.GITHUB_SHA}',`
|
+ `'commit': '${process.env.GITHUB_SHA}',`
|
||||||
+ `'lastSuccessRunCommit': '${lastSuccessRunSha}',`
|
+ `'lastSuccessRunCommit': '${lastSuccessRunSha}',`
|
||||||
+ `'branch': '${process.env.GITHUB_REF}',`
|
+ `'branch': '${process.env.GITHUB_REF}',`
|
||||||
+ `'deployTimestamp': '${Date.now()}',`
|
+ `'deployTimestamp': '${Date.now()}',`
|
||||||
+ `'manifestsPaths': '${filePathConfigs.manifestFilePaths}',`
|
+ `'manifestsPaths': '${filePathConfigs.manifestFilePaths}',`
|
||||||
+ `'dockerfilePaths': '${filePathConfigs.buildConfigs}',`
|
+ `'dockerfilePaths': '${filePathConfigs.buildConfigs}',`
|
||||||
+ `'provider': 'GitHub'`
|
+ `'provider': 'GitHub'`
|
||||||
+ `}`);
|
+ `}`);
|
||||||
}
|
}
|
||||||
exports.getWorkflowAnnotationsJson = getWorkflowAnnotationsJson;
|
exports.getWorkflowAnnotationsJson = getWorkflowAnnotationsJson;
|
||||||
function getWorkflowAnnotationKeyLabel(workflowFilePath) {
|
function getWorkflowAnnotationKeyLabel(workflowFilePath) {
|
||||||
const hashKey = require("crypto").createHash("MD5")
|
const hashKey = require("crypto").createHash("MD5")
|
||||||
.update(`${process.env.GITHUB_REPOSITORY}/${workflowFilePath}`)
|
.update(`${process.env.GITHUB_REPOSITORY}/${workflowFilePath}`)
|
||||||
.digest("hex");
|
.digest("hex");
|
||||||
return `githubWorkflow_${hashKey}`;
|
return `githubWorkflow_${hashKey}`;
|
||||||
}
|
}
|
||||||
exports.getWorkflowAnnotationKeyLabel = getWorkflowAnnotationKeyLabel;
|
exports.getWorkflowAnnotationKeyLabel = getWorkflowAnnotationKeyLabel;
|
||||||
|
|||||||
@ -1,177 +1,177 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||||
return new (P || (P = Promise))(function (resolve, reject) {
|
return new (P || (P = Promise))(function (resolve, reject) {
|
||||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.deploy = void 0;
|
exports.deploy = void 0;
|
||||||
const fs = require("fs");
|
const fs = require("fs");
|
||||||
const core = require("@actions/core");
|
const core = require("@actions/core");
|
||||||
const yaml = require("js-yaml");
|
const yaml = require("js-yaml");
|
||||||
const canaryDeploymentHelper = require("./canary-deployment-helper");
|
const canaryDeploymentHelper = require("./canary-deployment-helper");
|
||||||
const KubernetesObjectUtility = require("../resource-object-utility");
|
const KubernetesObjectUtility = require("../resource-object-utility");
|
||||||
const TaskInputParameters = require("../../input-parameters");
|
const TaskInputParameters = require("../../input-parameters");
|
||||||
const models = require("../../constants");
|
const models = require("../../constants");
|
||||||
const fileHelper = require("../files-helper");
|
const fileHelper = require("../files-helper");
|
||||||
const utils = require("../manifest-utilities");
|
const utils = require("../manifest-utilities");
|
||||||
const KubernetesManifestUtility = require("../manifest-stability-utility");
|
const KubernetesManifestUtility = require("../manifest-stability-utility");
|
||||||
const KubernetesConstants = require("../../constants");
|
const KubernetesConstants = require("../../constants");
|
||||||
const string_comparison_1 = require("./../string-comparison");
|
const string_comparison_1 = require("./../string-comparison");
|
||||||
const pod_canary_deployment_helper_1 = require("./pod-canary-deployment-helper");
|
const pod_canary_deployment_helper_1 = require("./pod-canary-deployment-helper");
|
||||||
const smi_canary_deployment_helper_1 = require("./smi-canary-deployment-helper");
|
const smi_canary_deployment_helper_1 = require("./smi-canary-deployment-helper");
|
||||||
const utility_1 = require("../utility");
|
const utility_1 = require("../utility");
|
||||||
function deploy(kubectl, manifestFilePaths, deploymentStrategy) {
|
function deploy(kubectl, manifestFilePaths, deploymentStrategy) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
// get manifest files
|
// get manifest files
|
||||||
let inputManifestFiles = getManifestFiles(manifestFilePaths);
|
let inputManifestFiles = getManifestFiles(manifestFilePaths);
|
||||||
// artifact substitution
|
// artifact substitution
|
||||||
inputManifestFiles = updateResourceObjects(inputManifestFiles, TaskInputParameters.imagePullSecrets, TaskInputParameters.containers);
|
inputManifestFiles = updateResourceObjects(inputManifestFiles, TaskInputParameters.imagePullSecrets, TaskInputParameters.containers);
|
||||||
// deployment
|
// deployment
|
||||||
const deployedManifestFiles = deployManifests(inputManifestFiles, kubectl, isCanaryDeploymentStrategy(deploymentStrategy));
|
const deployedManifestFiles = deployManifests(inputManifestFiles, kubectl, isCanaryDeploymentStrategy(deploymentStrategy));
|
||||||
// check manifest stability
|
// check manifest stability
|
||||||
const resourceTypes = KubernetesObjectUtility.getResources(deployedManifestFiles, models.deploymentTypes.concat([KubernetesConstants.DiscoveryAndLoadBalancerResource.service]));
|
const resourceTypes = KubernetesObjectUtility.getResources(deployedManifestFiles, models.deploymentTypes.concat([KubernetesConstants.DiscoveryAndLoadBalancerResource.service]));
|
||||||
yield checkManifestStability(kubectl, resourceTypes);
|
yield checkManifestStability(kubectl, resourceTypes);
|
||||||
// print ingress resources
|
// print ingress resources
|
||||||
const ingressResources = KubernetesObjectUtility.getResources(deployedManifestFiles, [KubernetesConstants.DiscoveryAndLoadBalancerResource.ingress]);
|
const ingressResources = KubernetesObjectUtility.getResources(deployedManifestFiles, [KubernetesConstants.DiscoveryAndLoadBalancerResource.ingress]);
|
||||||
ingressResources.forEach(ingressResource => {
|
ingressResources.forEach(ingressResource => {
|
||||||
kubectl.getResource(KubernetesConstants.DiscoveryAndLoadBalancerResource.ingress, ingressResource.name);
|
kubectl.getResource(KubernetesConstants.DiscoveryAndLoadBalancerResource.ingress, ingressResource.name);
|
||||||
});
|
});
|
||||||
// annotate resources
|
// annotate resources
|
||||||
let allPods;
|
let allPods;
|
||||||
try {
|
try {
|
||||||
allPods = JSON.parse((kubectl.getAllPods()).stdout);
|
allPods = JSON.parse((kubectl.getAllPods()).stdout);
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
core.debug("Unable to parse pods; Error: " + e);
|
core.debug("Unable to parse pods; Error: " + e);
|
||||||
}
|
}
|
||||||
annotateAndLabelResources(deployedManifestFiles, kubectl, resourceTypes, allPods);
|
annotateAndLabelResources(deployedManifestFiles, kubectl, resourceTypes, allPods);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
exports.deploy = deploy;
|
exports.deploy = deploy;
|
||||||
function getManifestFiles(manifestFilePaths) {
|
function getManifestFiles(manifestFilePaths) {
|
||||||
const files = utils.getManifestFiles(manifestFilePaths);
|
const files = utils.getManifestFiles(manifestFilePaths);
|
||||||
if (files == null || files.length === 0) {
|
if (files == null || files.length === 0) {
|
||||||
throw new Error(`ManifestFileNotFound : ${manifestFilePaths}`);
|
throw new Error(`ManifestFileNotFound : ${manifestFilePaths}`);
|
||||||
}
|
}
|
||||||
return files;
|
return files;
|
||||||
}
|
}
|
||||||
function deployManifests(files, kubectl, isCanaryDeploymentStrategy) {
|
function deployManifests(files, kubectl, isCanaryDeploymentStrategy) {
|
||||||
let result;
|
let result;
|
||||||
if (isCanaryDeploymentStrategy) {
|
if (isCanaryDeploymentStrategy) {
|
||||||
let canaryDeploymentOutput;
|
let canaryDeploymentOutput;
|
||||||
if (canaryDeploymentHelper.isSMICanaryStrategy()) {
|
if (canaryDeploymentHelper.isSMICanaryStrategy()) {
|
||||||
canaryDeploymentOutput = smi_canary_deployment_helper_1.deploySMICanary(kubectl, files);
|
canaryDeploymentOutput = smi_canary_deployment_helper_1.deploySMICanary(kubectl, files);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
canaryDeploymentOutput = pod_canary_deployment_helper_1.deployPodCanary(kubectl, files);
|
canaryDeploymentOutput = pod_canary_deployment_helper_1.deployPodCanary(kubectl, files);
|
||||||
}
|
}
|
||||||
result = canaryDeploymentOutput.result;
|
result = canaryDeploymentOutput.result;
|
||||||
files = canaryDeploymentOutput.newFilePaths;
|
files = canaryDeploymentOutput.newFilePaths;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (canaryDeploymentHelper.isSMICanaryStrategy()) {
|
if (canaryDeploymentHelper.isSMICanaryStrategy()) {
|
||||||
const updatedManifests = appendStableVersionLabelToResource(files, kubectl);
|
const updatedManifests = appendStableVersionLabelToResource(files, kubectl);
|
||||||
result = kubectl.apply(updatedManifests, TaskInputParameters.forceDeployment);
|
result = kubectl.apply(updatedManifests, TaskInputParameters.forceDeployment);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
result = kubectl.apply(files, TaskInputParameters.forceDeployment);
|
result = kubectl.apply(files, TaskInputParameters.forceDeployment);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
utility_1.checkForErrors([result]);
|
utility_1.checkForErrors([result]);
|
||||||
return files;
|
return files;
|
||||||
}
|
}
|
||||||
function appendStableVersionLabelToResource(files, kubectl) {
|
function appendStableVersionLabelToResource(files, kubectl) {
|
||||||
const manifestFiles = [];
|
const manifestFiles = [];
|
||||||
const newObjectsList = [];
|
const newObjectsList = [];
|
||||||
files.forEach((filePath) => {
|
files.forEach((filePath) => {
|
||||||
const fileContents = fs.readFileSync(filePath);
|
const fileContents = fs.readFileSync(filePath);
|
||||||
yaml.safeLoadAll(fileContents, function (inputObject) {
|
yaml.safeLoadAll(fileContents, function (inputObject) {
|
||||||
const kind = inputObject.kind;
|
const kind = inputObject.kind;
|
||||||
if (KubernetesObjectUtility.isDeploymentEntity(kind)) {
|
if (KubernetesObjectUtility.isDeploymentEntity(kind)) {
|
||||||
const updatedObject = canaryDeploymentHelper.markResourceAsStable(inputObject);
|
const updatedObject = canaryDeploymentHelper.markResourceAsStable(inputObject);
|
||||||
newObjectsList.push(updatedObject);
|
newObjectsList.push(updatedObject);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
manifestFiles.push(filePath);
|
manifestFiles.push(filePath);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
const updatedManifestFiles = fileHelper.writeObjectsToFile(newObjectsList);
|
const updatedManifestFiles = fileHelper.writeObjectsToFile(newObjectsList);
|
||||||
manifestFiles.push(...updatedManifestFiles);
|
manifestFiles.push(...updatedManifestFiles);
|
||||||
return manifestFiles;
|
return manifestFiles;
|
||||||
}
|
}
|
||||||
function checkManifestStability(kubectl, resources) {
|
function checkManifestStability(kubectl, resources) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
yield KubernetesManifestUtility.checkManifestStability(kubectl, resources);
|
yield KubernetesManifestUtility.checkManifestStability(kubectl, resources);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
function annotateAndLabelResources(files, kubectl, resourceTypes, allPods) {
|
function annotateAndLabelResources(files, kubectl, resourceTypes, allPods) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
const workflowFilePath = yield utility_1.getWorkflowFilePath(TaskInputParameters.githubToken);
|
const workflowFilePath = yield utility_1.getWorkflowFilePath(TaskInputParameters.githubToken);
|
||||||
const filePathsConfig = yield utility_1.getFilePathsConfigs();
|
const filePathsConfig = yield utility_1.getFilePathsConfigs();
|
||||||
const annotationKeyLabel = models.getWorkflowAnnotationKeyLabel(workflowFilePath);
|
const annotationKeyLabel = models.getWorkflowAnnotationKeyLabel(workflowFilePath);
|
||||||
annotateResources(files, kubectl, resourceTypes, allPods, annotationKeyLabel, workflowFilePath, filePathsConfig);
|
annotateResources(files, kubectl, resourceTypes, allPods, annotationKeyLabel, workflowFilePath, filePathsConfig);
|
||||||
labelResources(files, kubectl, annotationKeyLabel);
|
labelResources(files, kubectl, annotationKeyLabel);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
function annotateResources(files, kubectl, resourceTypes, allPods, annotationKey, workflowFilePath, filePathsConfig) {
|
function annotateResources(files, kubectl, resourceTypes, allPods, annotationKey, workflowFilePath, filePathsConfig) {
|
||||||
const annotateResults = [];
|
const annotateResults = [];
|
||||||
const lastSuccessSha = utility_1.getLastSuccessfulRunSha(kubectl, TaskInputParameters.namespace, annotationKey);
|
const lastSuccessSha = utility_1.getLastSuccessfulRunSha(kubectl, TaskInputParameters.namespace, annotationKey);
|
||||||
let annotationKeyValStr = annotationKey + '=' + models.getWorkflowAnnotationsJson(lastSuccessSha, workflowFilePath, filePathsConfig);
|
let annotationKeyValStr = annotationKey + '=' + models.getWorkflowAnnotationsJson(lastSuccessSha, workflowFilePath, filePathsConfig);
|
||||||
annotateResults.push(kubectl.annotate('namespace', TaskInputParameters.namespace, annotationKeyValStr));
|
annotateResults.push(kubectl.annotate('namespace', TaskInputParameters.namespace, annotationKeyValStr));
|
||||||
annotateResults.push(kubectl.annotateFiles(files, annotationKeyValStr));
|
annotateResults.push(kubectl.annotateFiles(files, annotationKeyValStr));
|
||||||
resourceTypes.forEach(resource => {
|
resourceTypes.forEach(resource => {
|
||||||
if (resource.type.toUpperCase() !== models.KubernetesWorkload.pod.toUpperCase()) {
|
if (resource.type.toUpperCase() !== models.KubernetesWorkload.pod.toUpperCase()) {
|
||||||
utility_1.annotateChildPods(kubectl, resource.type, resource.name, annotationKeyValStr, allPods)
|
utility_1.annotateChildPods(kubectl, resource.type, resource.name, annotationKeyValStr, allPods)
|
||||||
.forEach(execResult => annotateResults.push(execResult));
|
.forEach(execResult => annotateResults.push(execResult));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
utility_1.checkForErrors(annotateResults, true);
|
utility_1.checkForErrors(annotateResults, true);
|
||||||
}
|
}
|
||||||
function labelResources(files, kubectl, label) {
|
function labelResources(files, kubectl, label) {
|
||||||
let workflowName = process.env.GITHUB_WORKFLOW;
|
let workflowName = process.env.GITHUB_WORKFLOW;
|
||||||
workflowName = workflowName.startsWith('.github/workflows/') ?
|
workflowName = workflowName.startsWith('.github/workflows/') ?
|
||||||
workflowName.replace(".github/workflows/", "") : workflowName;
|
workflowName.replace(".github/workflows/", "") : workflowName;
|
||||||
const labels = [`workflowFriendlyName=${workflowName}`, `workflow=${label}`];
|
const labels = [`workflowFriendlyName=${workflowName}`, `workflow=${label}`];
|
||||||
utility_1.checkForErrors([kubectl.labelFiles(files, labels)], true);
|
utility_1.checkForErrors([kubectl.labelFiles(files, labels)], true);
|
||||||
}
|
}
|
||||||
function updateResourceObjects(filePaths, imagePullSecrets, containers) {
|
function updateResourceObjects(filePaths, imagePullSecrets, containers) {
|
||||||
const newObjectsList = [];
|
const newObjectsList = [];
|
||||||
const updateResourceObject = (inputObject) => {
|
const updateResourceObject = (inputObject) => {
|
||||||
if (!!imagePullSecrets && imagePullSecrets.length > 0) {
|
if (!!imagePullSecrets && imagePullSecrets.length > 0) {
|
||||||
KubernetesObjectUtility.updateImagePullSecrets(inputObject, imagePullSecrets, false);
|
KubernetesObjectUtility.updateImagePullSecrets(inputObject, imagePullSecrets, false);
|
||||||
}
|
}
|
||||||
if (!!containers && containers.length > 0) {
|
if (!!containers && containers.length > 0) {
|
||||||
KubernetesObjectUtility.updateImageDetails(inputObject, containers);
|
KubernetesObjectUtility.updateImageDetails(inputObject, containers);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
filePaths.forEach((filePath) => {
|
filePaths.forEach((filePath) => {
|
||||||
const fileContents = fs.readFileSync(filePath).toString();
|
const fileContents = fs.readFileSync(filePath).toString();
|
||||||
yaml.safeLoadAll(fileContents, function (inputObject) {
|
yaml.safeLoadAll(fileContents, function (inputObject) {
|
||||||
if (inputObject && inputObject.kind) {
|
if (inputObject && inputObject.kind) {
|
||||||
const kind = inputObject.kind;
|
const kind = inputObject.kind;
|
||||||
if (KubernetesObjectUtility.isWorkloadEntity(kind)) {
|
if (KubernetesObjectUtility.isWorkloadEntity(kind)) {
|
||||||
updateResourceObject(inputObject);
|
updateResourceObject(inputObject);
|
||||||
}
|
}
|
||||||
else if (string_comparison_1.isEqual(kind, 'list', string_comparison_1.StringComparer.OrdinalIgnoreCase)) {
|
else if (string_comparison_1.isEqual(kind, 'list', string_comparison_1.StringComparer.OrdinalIgnoreCase)) {
|
||||||
let items = inputObject.items;
|
let items = inputObject.items;
|
||||||
if (items.length > 0) {
|
if (items.length > 0) {
|
||||||
items.forEach((item) => updateResourceObject(item));
|
items.forEach((item) => updateResourceObject(item));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
newObjectsList.push(inputObject);
|
newObjectsList.push(inputObject);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
core.debug('New K8s objects after adding imagePullSecrets are :' + JSON.stringify(newObjectsList));
|
core.debug('New K8s objects after adding imagePullSecrets are :' + JSON.stringify(newObjectsList));
|
||||||
const newFilePaths = fileHelper.writeObjectsToFile(newObjectsList);
|
const newFilePaths = fileHelper.writeObjectsToFile(newObjectsList);
|
||||||
return newFilePaths;
|
return newFilePaths;
|
||||||
}
|
}
|
||||||
function isCanaryDeploymentStrategy(deploymentStrategy) {
|
function isCanaryDeploymentStrategy(deploymentStrategy) {
|
||||||
return deploymentStrategy != null && deploymentStrategy.toUpperCase() === canaryDeploymentHelper.CANARY_DEPLOYMENT_STRATEGY.toUpperCase();
|
return deploymentStrategy != null && deploymentStrategy.toUpperCase() === canaryDeploymentHelper.CANARY_DEPLOYMENT_STRATEGY.toUpperCase();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,219 +1,219 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||||
return new (P || (P = Promise))(function (resolve, reject) {
|
return new (P || (P = Promise))(function (resolve, reject) {
|
||||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.getCurrentTime = exports.getRandomInt = exports.sleep = exports.getFilePathsConfigs = exports.annotateChildPods = exports.getWorkflowFilePath = exports.getLastSuccessfulRunSha = exports.checkForErrors = exports.isEqual = exports.getExecutableExtension = void 0;
|
exports.getCurrentTime = exports.getRandomInt = exports.sleep = exports.getFilePathsConfigs = exports.annotateChildPods = exports.getWorkflowFilePath = exports.getLastSuccessfulRunSha = exports.checkForErrors = exports.isEqual = exports.getExecutableExtension = void 0;
|
||||||
const os = require("os");
|
const os = require("os");
|
||||||
const core = require("@actions/core");
|
const core = require("@actions/core");
|
||||||
const githubClient_1 = require("../githubClient");
|
const githubClient_1 = require("../githubClient");
|
||||||
const httpClient_1 = require("./httpClient");
|
const httpClient_1 = require("./httpClient");
|
||||||
const exec = require("./exec");
|
const exec = require("./exec");
|
||||||
const inputParams = require("../input-parameters");
|
const inputParams = require("../input-parameters");
|
||||||
function getExecutableExtension() {
|
function getExecutableExtension() {
|
||||||
if (os.type().match(/^Win/)) {
|
if (os.type().match(/^Win/)) {
|
||||||
return '.exe';
|
return '.exe';
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
exports.getExecutableExtension = getExecutableExtension;
|
exports.getExecutableExtension = getExecutableExtension;
|
||||||
function isEqual(str1, str2, ignoreCase) {
|
function isEqual(str1, str2, ignoreCase) {
|
||||||
if (str1 == null && str2 == null) {
|
if (str1 == null && str2 == null) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (str1 == null || str2 == null) {
|
if (str1 == null || str2 == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (ignoreCase) {
|
if (ignoreCase) {
|
||||||
return str1.toUpperCase() === str2.toUpperCase();
|
return str1.toUpperCase() === str2.toUpperCase();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return str1 === str2;
|
return str1 === str2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.isEqual = isEqual;
|
exports.isEqual = isEqual;
|
||||||
function checkForErrors(execResults, warnIfError) {
|
function checkForErrors(execResults, warnIfError) {
|
||||||
if (execResults.length !== 0) {
|
if (execResults.length !== 0) {
|
||||||
let stderr = '';
|
let stderr = '';
|
||||||
execResults.forEach(result => {
|
execResults.forEach(result => {
|
||||||
if (result && result.stderr) {
|
if (result && result.stderr) {
|
||||||
if (result.code !== 0) {
|
if (result.code !== 0) {
|
||||||
stderr += result.stderr + '\n';
|
stderr += result.stderr + '\n';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
core.warning(result.stderr);
|
core.warning(result.stderr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (stderr.length > 0) {
|
if (stderr.length > 0) {
|
||||||
if (warnIfError) {
|
if (warnIfError) {
|
||||||
core.warning(stderr.trim());
|
core.warning(stderr.trim());
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
throw new Error(stderr.trim());
|
throw new Error(stderr.trim());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.checkForErrors = checkForErrors;
|
exports.checkForErrors = checkForErrors;
|
||||||
function getLastSuccessfulRunSha(kubectl, namespaceName, annotationKey) {
|
function getLastSuccessfulRunSha(kubectl, namespaceName, annotationKey) {
|
||||||
try {
|
try {
|
||||||
const result = kubectl.getResource('namespace', namespaceName);
|
const result = kubectl.getResource('namespace', namespaceName);
|
||||||
if (result) {
|
if (result) {
|
||||||
if (result.stderr) {
|
if (result.stderr) {
|
||||||
core.warning(`${result.stderr}`);
|
core.warning(`${result.stderr}`);
|
||||||
return process.env.GITHUB_SHA;
|
return process.env.GITHUB_SHA;
|
||||||
}
|
}
|
||||||
else if (result.stdout) {
|
else if (result.stdout) {
|
||||||
const annotationsSet = JSON.parse(result.stdout).metadata.annotations;
|
const annotationsSet = JSON.parse(result.stdout).metadata.annotations;
|
||||||
if (annotationsSet && annotationsSet[annotationKey]) {
|
if (annotationsSet && annotationsSet[annotationKey]) {
|
||||||
return JSON.parse(annotationsSet[annotationKey].replace(/'/g, '"')).commit;
|
return JSON.parse(annotationsSet[annotationKey].replace(/'/g, '"')).commit;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return 'NA';
|
return 'NA';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (ex) {
|
catch (ex) {
|
||||||
core.warning(`Failed to get commits from cluster. ${JSON.stringify(ex)}`);
|
core.warning(`Failed to get commits from cluster. ${JSON.stringify(ex)}`);
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.getLastSuccessfulRunSha = getLastSuccessfulRunSha;
|
exports.getLastSuccessfulRunSha = getLastSuccessfulRunSha;
|
||||||
function getWorkflowFilePath(githubToken) {
|
function getWorkflowFilePath(githubToken) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
let workflowFilePath = process.env.GITHUB_WORKFLOW;
|
let workflowFilePath = process.env.GITHUB_WORKFLOW;
|
||||||
if (!workflowFilePath.startsWith('.github/workflows/')) {
|
if (!workflowFilePath.startsWith('.github/workflows/')) {
|
||||||
const githubClient = new githubClient_1.GitHubClient(process.env.GITHUB_REPOSITORY, githubToken);
|
const githubClient = new githubClient_1.GitHubClient(process.env.GITHUB_REPOSITORY, githubToken);
|
||||||
const response = yield githubClient.getWorkflows();
|
const response = yield githubClient.getWorkflows();
|
||||||
if (response) {
|
if (response) {
|
||||||
if (response.statusCode == httpClient_1.StatusCodes.OK
|
if (response.statusCode == httpClient_1.StatusCodes.OK
|
||||||
&& response.body
|
&& response.body
|
||||||
&& response.body.total_count) {
|
&& response.body.total_count) {
|
||||||
if (response.body.total_count > 0) {
|
if (response.body.total_count > 0) {
|
||||||
for (let workflow of response.body.workflows) {
|
for (let workflow of response.body.workflows) {
|
||||||
if (process.env.GITHUB_WORKFLOW === workflow.name) {
|
if (process.env.GITHUB_WORKFLOW === workflow.name) {
|
||||||
workflowFilePath = workflow.path;
|
workflowFilePath = workflow.path;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (response.statusCode != httpClient_1.StatusCodes.OK) {
|
else if (response.statusCode != httpClient_1.StatusCodes.OK) {
|
||||||
core.debug(`An error occured while getting list of workflows on the repo. Statuscode: ${response.statusCode}, StatusMessage: ${response.statusMessage}`);
|
core.debug(`An error occured while getting list of workflows on the repo. Statuscode: ${response.statusCode}, StatusMessage: ${response.statusMessage}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
core.warning(`Failed to get response from workflow list API`);
|
core.warning(`Failed to get response from workflow list API`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return Promise.resolve(workflowFilePath);
|
return Promise.resolve(workflowFilePath);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
exports.getWorkflowFilePath = getWorkflowFilePath;
|
exports.getWorkflowFilePath = getWorkflowFilePath;
|
||||||
function annotateChildPods(kubectl, resourceType, resourceName, annotationKeyValStr, allPods) {
|
function annotateChildPods(kubectl, resourceType, resourceName, annotationKeyValStr, allPods) {
|
||||||
const commandExecutionResults = [];
|
const commandExecutionResults = [];
|
||||||
let owner = resourceName;
|
let owner = resourceName;
|
||||||
if (resourceType.toLowerCase().indexOf('deployment') > -1) {
|
if (resourceType.toLowerCase().indexOf('deployment') > -1) {
|
||||||
owner = kubectl.getNewReplicaSet(resourceName);
|
owner = kubectl.getNewReplicaSet(resourceName);
|
||||||
}
|
}
|
||||||
if (allPods && allPods.items && allPods.items.length > 0) {
|
if (allPods && allPods.items && allPods.items.length > 0) {
|
||||||
allPods.items.forEach((pod) => {
|
allPods.items.forEach((pod) => {
|
||||||
const owners = pod.metadata.ownerReferences;
|
const owners = pod.metadata.ownerReferences;
|
||||||
if (owners) {
|
if (owners) {
|
||||||
owners.forEach(ownerRef => {
|
owners.forEach(ownerRef => {
|
||||||
if (ownerRef.name === owner) {
|
if (ownerRef.name === owner) {
|
||||||
commandExecutionResults.push(kubectl.annotate('pod', pod.metadata.name, annotationKeyValStr));
|
commandExecutionResults.push(kubectl.annotate('pod', pod.metadata.name, annotationKeyValStr));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return commandExecutionResults;
|
return commandExecutionResults;
|
||||||
}
|
}
|
||||||
exports.annotateChildPods = annotateChildPods;
|
exports.annotateChildPods = annotateChildPods;
|
||||||
function getFilePathsConfigs() {
|
function getFilePathsConfigs() {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
let filePathsConfig = {};
|
let filePathsConfig = {};
|
||||||
const BUILD_CONFIG_KEY = 'buildConfigs';
|
const BUILD_CONFIG_KEY = 'buildConfigs';
|
||||||
const MANIFEST_PATHS_KEY = 'manifestFilePaths';
|
const MANIFEST_PATHS_KEY = 'manifestFilePaths';
|
||||||
const HELM_CHART_KEY = 'helmChartFilePaths';
|
const HELM_CHART_KEY = 'helmChartFilePaths';
|
||||||
const DOCKERFILE_PATH_LABEL_KEY = 'dockerfile-path';
|
const DOCKERFILE_PATH_LABEL_KEY = 'dockerfile-path';
|
||||||
const DOCKERFILE_PATH_KEY = 'dockerfilePath';
|
const DOCKERFILE_PATH_KEY = 'dockerfilePath';
|
||||||
const CONTAINER_REG_KEY = 'containerRegistryServer';
|
const CONTAINER_REG_KEY = 'containerRegistryServer';
|
||||||
let inputManifestFiles = inputParams.manifests || [];
|
let inputManifestFiles = inputParams.manifests || [];
|
||||||
filePathsConfig[MANIFEST_PATHS_KEY] = JSON.stringify(inputManifestFiles);
|
filePathsConfig[MANIFEST_PATHS_KEY] = JSON.stringify(inputManifestFiles);
|
||||||
let helmChartPaths = process.env.HELM_CHART_PATHS || '';
|
let helmChartPaths = process.env.HELM_CHART_PATHS || '';
|
||||||
filePathsConfig[HELM_CHART_KEY] = helmChartPaths;
|
filePathsConfig[HELM_CHART_KEY] = helmChartPaths;
|
||||||
//Fetch labels from each image
|
//Fetch labels from each image
|
||||||
let imageToBuildConfigMap = {};
|
let imageToBuildConfigMap = {};
|
||||||
let imageNames = core.getInput('images').split('\n');
|
let imageNames = core.getInput('images').split('\n');
|
||||||
for (const image of imageNames) {
|
for (const image of imageNames) {
|
||||||
let args = [image];
|
let args = [image];
|
||||||
let resultObj;
|
let resultObj;
|
||||||
let buildConfigMap = {};
|
let buildConfigMap = {};
|
||||||
let containerRegistryName = image.toString().split('/')[0];
|
let containerRegistryName = image.toString().split('/')[0];
|
||||||
try {
|
try {
|
||||||
let usrname = process.env.CR_USERNAME || null;
|
let usrname = process.env.CR_USERNAME || null;
|
||||||
let pwd = process.env.CR_PASSWORD || null;
|
let pwd = process.env.CR_PASSWORD || null;
|
||||||
if (pwd && usrname) {
|
if (pwd && usrname) {
|
||||||
let loginArgs = [containerRegistryName, '--username', usrname, '--password', pwd];
|
let loginArgs = [containerRegistryName, '--username', usrname, '--password', pwd];
|
||||||
yield exec.exec('docker login ', loginArgs, true).then(res => {
|
yield exec.exec('docker login ', loginArgs, true).then(res => {
|
||||||
if (res.stderr != '' && !res.success) {
|
if (res.stderr != '' && !res.success) {
|
||||||
throw new Error(`docker login failed with: ${res.stderr.match(/(.*)\s*$/)[0]}`);
|
throw new Error(`docker login failed with: ${res.stderr.match(/(.*)\s*$/)[0]}`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
yield exec.exec('docker pull ', args, true).then(res => {
|
yield exec.exec('docker pull ', args, true).then(res => {
|
||||||
if (res.stderr != '' && !res.success) {
|
if (res.stderr != '' && !res.success) {
|
||||||
throw new Error(`docker images pull failed with: ${res.stderr.match(/(.*)\s*$/)[0]}`);
|
throw new Error(`docker images pull failed with: ${res.stderr.match(/(.*)\s*$/)[0]}`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
yield exec.exec('docker inspect --type=image', args, true).then(res => {
|
yield exec.exec('docker inspect --type=image', args, true).then(res => {
|
||||||
if (res.stderr != '' && !res.success) {
|
if (res.stderr != '' && !res.success) {
|
||||||
throw new Error(`docker inspect call failed with: ${res.stderr.match(/(.*)\s*$/)[0]}`);
|
throw new Error(`docker inspect call failed with: ${res.stderr.match(/(.*)\s*$/)[0]}`);
|
||||||
}
|
}
|
||||||
if (!res.stdout) {
|
if (!res.stdout) {
|
||||||
resultObj = JSON.parse(res.stdout);
|
resultObj = JSON.parse(res.stdout);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
catch (ex) {
|
catch (ex) {
|
||||||
core.warning(`Failed to get dockerfile paths for image ${image.toString()} | ` + ex);
|
core.warning(`Failed to get dockerfile paths for image ${image.toString()} | ` + ex);
|
||||||
}
|
}
|
||||||
if (!resultObj) {
|
if (!resultObj) {
|
||||||
resultObj = resultObj[0];
|
resultObj = resultObj[0];
|
||||||
if (!(resultObj.Config) && !(resultObj.Config.Labels) && !(resultObj.Config.Labels[DOCKERFILE_PATH_LABEL_KEY])) {
|
if (!(resultObj.Config) && !(resultObj.Config.Labels) && !(resultObj.Config.Labels[DOCKERFILE_PATH_LABEL_KEY])) {
|
||||||
buildConfigMap[DOCKERFILE_PATH_KEY] = resultObj.Config.Labels[DOCKERFILE_PATH_LABEL_KEY];
|
buildConfigMap[DOCKERFILE_PATH_KEY] = resultObj.Config.Labels[DOCKERFILE_PATH_LABEL_KEY];
|
||||||
}
|
}
|
||||||
//Add CR server name to build config
|
//Add CR server name to build config
|
||||||
buildConfigMap[CONTAINER_REG_KEY] = containerRegistryName;
|
buildConfigMap[CONTAINER_REG_KEY] = containerRegistryName;
|
||||||
if (!resultObj.Id) {
|
if (!resultObj.Id) {
|
||||||
imageToBuildConfigMap[resultObj.Id] = buildConfigMap;
|
imageToBuildConfigMap[resultObj.Id] = buildConfigMap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
filePathsConfig[BUILD_CONFIG_KEY] = JSON.stringify(imageToBuildConfigMap);
|
filePathsConfig[BUILD_CONFIG_KEY] = JSON.stringify(imageToBuildConfigMap);
|
||||||
return Promise.resolve(filePathsConfig);
|
return Promise.resolve(filePathsConfig);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
exports.getFilePathsConfigs = getFilePathsConfigs;
|
exports.getFilePathsConfigs = getFilePathsConfigs;
|
||||||
function sleep(timeout) {
|
function sleep(timeout) {
|
||||||
return new Promise(resolve => setTimeout(resolve, timeout));
|
return new Promise(resolve => setTimeout(resolve, timeout));
|
||||||
}
|
}
|
||||||
exports.sleep = sleep;
|
exports.sleep = sleep;
|
||||||
function getRandomInt(max) {
|
function getRandomInt(max) {
|
||||||
return Math.floor(Math.random() * Math.floor(max));
|
return Math.floor(Math.random() * Math.floor(max));
|
||||||
}
|
}
|
||||||
exports.getRandomInt = getRandomInt;
|
exports.getRandomInt = getRandomInt;
|
||||||
function getCurrentTime() {
|
function getCurrentTime() {
|
||||||
return new Date().getTime();
|
return new Date().getTime();
|
||||||
}
|
}
|
||||||
exports.getCurrentTime = getCurrentTime;
|
exports.getCurrentTime = getCurrentTime;
|
||||||
|
|||||||
@ -1,33 +1,33 @@
|
|||||||
import * as aexec from '@actions/exec';
|
import * as aexec from '@actions/exec';
|
||||||
|
|
||||||
export interface ExecResult {
|
export interface ExecResult {
|
||||||
success: boolean;
|
success: boolean;
|
||||||
stdout: string;
|
stdout: string;
|
||||||
stderr: string;
|
stderr: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const exec = async (command: string, args: string[] = [], silent?: boolean): Promise<ExecResult> => {
|
export const exec = async (command: string, args: string[] = [], silent?: boolean): Promise<ExecResult> => {
|
||||||
let stdout: string = '';
|
let stdout: string = '';
|
||||||
let stderr: string = '';
|
let stderr: string = '';
|
||||||
|
|
||||||
const options: aexec.ExecOptions = {
|
const options: aexec.ExecOptions = {
|
||||||
silent: silent,
|
silent: silent,
|
||||||
ignoreReturnCode: true
|
ignoreReturnCode: true
|
||||||
};
|
};
|
||||||
options.listeners = {
|
options.listeners = {
|
||||||
stdout: (data: Buffer) => {
|
stdout: (data: Buffer) => {
|
||||||
stdout += data.toString();
|
stdout += data.toString();
|
||||||
},
|
},
|
||||||
stderr: (data: Buffer) => {
|
stderr: (data: Buffer) => {
|
||||||
stderr += data.toString();
|
stderr += data.toString();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const returnCode: number = await aexec.exec(command, args, options);
|
const returnCode: number = await aexec.exec(command, args, options);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
success: returnCode === 0,
|
success: returnCode === 0,
|
||||||
stdout: stdout.trim(),
|
stdout: stdout.trim(),
|
||||||
stderr: stderr.trim()
|
stderr: stderr.trim()
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
Loading…
x
Reference in New Issue
Block a user