执行之前,请参阅`kubectl scale`的确切清单差异

时间:2019-09-25 18:02:21

标签: kubernetes kubectl

在实际运行命令之前,kubectl scale ...有什么办法可以看到会发生什么?

我想做类似的事情:

kubectl scale --dry-run --diff ...my-deployment --replicas=2

看到类似

...
    name: my-deployment
...
-     replicas: 1
+     replicas: 2
...

1 个答案:

答案 0 :(得分:1)

不可能直接回答。

我不知道您的意图,但是在某些情况下是否可以使用选项--current-replicas

--current-replicas=-1: Precondition for current size. Requires that the current size of the resource match this value in order to scale.