在实际运行命令之前,kubectl scale ...
有什么办法可以看到会发生什么?
我想做类似的事情:
kubectl scale --dry-run --diff ...my-deployment --replicas=2
看到类似
...
name: my-deployment
...
- replicas: 1
+ replicas: 2
...
答案 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.