本文整理汇总了TypeScript中kubernetes-common/kubectl-object-model.Kubectl.apply方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Kubectl.apply方法的具体用法?TypeScript Kubectl.apply怎么用?TypeScript Kubectl.apply使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kubernetes-common/kubectl-object-model.Kubectl
的用法示例。
在下文中一共展示了Kubectl.apply方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: deployManifests
function deployManifests(files: string[], kubectl: Kubectl, isCanaryDeploymentStrategy: boolean): string[] {
let result;
if (isCanaryDeploymentStrategy) {
var canaryDeploymentOutput = canaryDeploymentHelper.deployCanary(kubectl, files);
result = canaryDeploymentOutput.result;
files = canaryDeploymentOutput.newFilePaths;
} else {
result = kubectl.apply(files);
}
utils.checkForErrors([result]);
return files;
}
示例2: deployCanary
export function deployCanary(kubectl: Kubectl, filePaths: string[]) {
var newObjectsList = [];
var percentage = parseInt(TaskInputParameters.canaryPercentage);
filePaths.forEach((filePath: string) => {
var fileContents = fs.readFileSync(filePath);
yaml.safeLoadAll(fileContents, function (inputObject) {
var name = inputObject.metadata.name;
var kind = inputObject.kind;
if (helper.isDeploymentEntity(kind)) {
var existing_canary_object = fetchCanaryResource(kubectl, kind, name);
if (!!existing_canary_object) {
throw (tl.loc("CanaryDeploymentAlreadyExistErrorMessage"));
}
tl.debug("Calculating replica count for canary");
var canaryReplicaCount = calculateReplicaCountForCanary(inputObject, percentage);
tl.debug("Replica count is " + canaryReplicaCount);
// Get stable object
tl.debug("Querying stable object");
var stable_object = fetchResource(kubectl, kind, name);
if (!stable_object) {
tl.debug("Stable object not found. Creating only canary object");
// If stable object not found, create canary deployment.
var newCanaryObject = getNewCanaryResource(inputObject, canaryReplicaCount);
tl.debug("New canary object is: " + JSON.stringify(newCanaryObject));
newObjectsList.push(newCanaryObject);
} else {
tl.debug("Stable object found. Creating canary and baseline objects");
// If canary object not found, create canary and baseline object.
var newCanaryObject = getNewCanaryResource(inputObject, canaryReplicaCount);
var newBaselineObject = getNewBaselineResource(stable_object, canaryReplicaCount);
tl.debug("New canary object is: " + JSON.stringify(newCanaryObject));
tl.debug("New baseline object is: " + JSON.stringify(newBaselineObject));
newObjectsList.push(newCanaryObject);
newObjectsList.push(newBaselineObject);
}
} else {
// Updating non deployment entity as it is.
newObjectsList.push(inputObject);
}
});
});
var manifestFiles = fileHelper.writeObjectsToFile(newObjectsList);
var result = kubectl.apply(manifestFiles);
return { "result": result, "newFilePaths": manifestFiles };
}