Red Hat Camel K is no longer supported.
As of June 30, 2025, Red Hat build of Camel K has reached End of Life. The suggested replacements is Red Hat build of Apache Camel. For details about moving, see the Camel K to Camel Quarkus migration guide.1.3. Camel K 통합 스케일링
oc scale
명령을 사용하여 통합을 확장할 수 있습니다.
프로세스
Camel K 통합을 확장하려면 다음 명령을 실행합니다.
oc scale it <integration_name> --replicas <number_of_replicas>
oc scale it <integration_name> --replicas <number_of_replicas>
Copy to Clipboard Copied! Integration 리소스를 직접 편집하여 통합을 확장할 수도 있습니다.
oc patch it <integration_name> --type merge -p '{"spec":{"replicas":<number_of_replicas>}}'
oc patch it <integration_name> --type merge -p '{"spec":{"replicas":<number_of_replicas>}}'
Copy to Clipboard Copied! 통합의 복제본 수를 보려면 다음 명령을 사용합니다.
oc get it <integration_name> -o jsonpath='{.status.replicas}'
oc get it <integration_name> -o jsonpath='{.status.replicas}'
Copy to Clipboard Copied!