Files
website/content/ko/docs
HYUNSIK AEOM 21e2046efb [ko] fix a mistranslated; maxUnavailable rounds down, maxSurge rounds up.
has been mistranslated. 🥺
rounding down is '내림' in Korean.
rounding up is '올림' in Korean.

If calculate '반올림' when desired replica 1, both maxUnavailable and maxSurge should be 0.
In English documentation, there was written explicitly 'rounding down', 'rounding up'.
Also in code, explicitly using 'Math.Ceil' and 'Math.floor'.

- Related codes
    + [deployment_util.go > maxSurge](https://github.com/kubernetes/kubernetes/blob/7152825c0695d62fe06b47cc3e1699095290d73f/pkg/controller/deployment/util/deployment_util.go#L456)
    + [deployment_util.go > ResolveFenceposts](https://github.com/kubernetes/kubernetes/blob/7152825c0695d62fe06b47cc3e1699095290d73f/pkg/controller/deployment/util/deployment_util.go#L849)
    + [util/instr.go > GetScaledValueFromIntOrPercent](https://github.com/kubernetes/kubernetes/blob/7152825c0695d62fe06b47cc3e1699095290d73f/staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go#L146)

- Korean dictionary
    + [올림: rounding up](https://krdict.korean.go.kr/m/eng/searchResultView?wordMatchFlag=N&currentPage=1&mainSearchWord=%EC%98%AC%EB%A6%BC&sort=&searchType=W&proverbType=&exaType=&ParaWordNo=68195&font_size=12&nationCode=6&nation=eng&viewType=A)
    + [반올림: rounding off](https://krdict.korean.go.kr/m/eng/searchResultView?wordMatchFlag=N&currentPage=1&mainSearchWord=%EB%B0%98%EC%98%AC%EB%A6%BC&sort=&searchType=W&proverbType=&exaType=&ParaWordNo=57172&font_size=12&nationCode=6&nation=eng&viewType=A)
2022-03-19 14:53:53 +09:00
..
2022-01-21 09:52:17 +09:00