本文整理汇总了TypeScript中kubernetes-common/kubectl-object-model.Kubectl.patch方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Kubectl.patch方法的具体用法?TypeScript Kubectl.patch怎么用?TypeScript Kubectl.patch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kubernetes-common/kubectl-object-model.Kubectl
的用法示例。
在下文中一共展示了Kubectl.patch方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: patch
export async function patch() {
let kubectl = new Kubectl(await utils.getKubectl(), tl.getInput("namespace", false));
let kind = tl.getInput("kind", false).toLowerCase();
let name = tl.getInput("name", false);
let filePath = tl.getInput("resourceFileToPatch", false);
let strategy = tl.getInput("mergeStrategy", false);
let patch = tl.getInput("patch", true);
if (tl.filePathSupplied("resourceFileToPatch") && tl.getInput("resourceToPatch") == "file") {
kind = "-f";
name = filePath;
}
let result = kubectl.patch(kind, name, patch, strategy);
utils.checkForErrors([result]);
let resources = kubectl.getResources(result.stdout, ["deployment", "replicaset", "daemonset", "pod", "statefulset"]);
resources.forEach(resource => {
utils.checkForErrors([kubectl.checkRolloutStatus(resource.type, resource.name)]);
utils.checkForErrors([kubectl.annotate(resource.type, resource.name, constants.pipelineAnnotations, true)]);
utils.checkForErrors(utils.annotateChildPods(kubectl, resource.type, resource.name, JSON.parse((kubectl.getAllPods()).stdout)));
});
}