CKA Part2
1. you can find an existing deployment frontend in production namespace, scale down the replicas to 2 and change the image to nginx:1.25 'production' 네임스페이스에 있는 frontend 디플로이먼트를 복제본 2개로 줄이고, 이미지 버전을 nginx:1.25로 변경하라. k scale deploy frontend --replicas=2 -n productionk set image deploy frontend nginx=nginx:1.25-n production 2. Auto scale the existing deployment frontend in production namespace a..