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