Closed
Description
This is a Bug Report
Problem
Outdated files in the upstream/dev-1.16-ko.2 branch.
11 files to be modified
- content/en/docs/concepts/overview/working-with-objects/namespaces.md 1 file changed, 1 insertion(+), 1 deletion(-)
- content/en/docs/concepts/workloads/controllers/cron-jobs.md 1 file changed, 1 insertion(+), 1 deletion(-)
- content/en/docs/concepts/workloads/controllers/deployment.md 1 file changed, 1 insertion(+), 1 deletion(-)
- content/en/docs/concepts/workloads/pods/pod-lifecycle.md 1 file changed, 3 insertions(+), 3 deletions(-)
- content/en/docs/contribute/_index.md 1 file changed, 3 insertions(+), 1 deletion(-)
- content/en/docs/reference/kubectl/cheatsheet.md 1 file changed, 20 insertions(+), 18 deletions(-)
- content/en/docs/setup/learning-environment/minikube.md 1 file changed, 2 insertions(+), 2 deletions(-)
- content/en/docs/tasks/access-application-cluster/web-ui-dashboard.md 1 file changed, 2 insertions(+), 1 deletion(-)
- content/en/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough.md 1 file changed, 1 insertion(+), 1 deletion(-)
- content/en/docs/tasks/tools/install-minikube.md 1 file changed, 2 insertions(+), 1 deletion(-)
- content/en/docs/tutorials/clusters/apparmor.md 1 file changed, 12 insertions(+), 1 deletion(-)
0 files to be renamed
0 files to be deleted
Proposed Solution
Use git diff
to check what is changed in the upstream. And apply the upstream changes manually
to the content/ko
of upstream/dev-1.16-ko.2
branch.
For example:
# checkout `upstream/dev-1.16-ko.2`
...
# check what is updated in the upstream
git diff upstream/dev-1.16-ko.1 upstream/dev-1.16-ko.2 -- content/en/docs/concepts/overview/working-with-objects/namespaces.md
# apply changes to content/ko
vi content/ko/docs/concepts/overview/working-with-objects/namespaces.md
...
# commit and push
...
# make PR to `upstream/dev-1.16-ko.2`
/language ko