fix: align pod manifest scaffold schema
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 25s

This commit is contained in:
jade
2026-09-02 14:34:56 +09:00
parent 2dc0c19c5a
commit e6bcfe8934
3 changed files with 13 additions and 6 deletions

View File

@@ -393,7 +393,7 @@ public class PodScaffolder {
manifest:
routing-functions:
- name: route_to_%s
description: %s 업무 서버로 요청을 라우팅합니다.
description-serialization: %s 업무 서버로 요청을 라우팅합니다. %s 관련 업무를 처리합니다. 요청의 주요 업무 영역을 기준으로 서버를 선택합니다.
server-id: %s
category-key: %s
product-boundary: insurance
@@ -403,9 +403,9 @@ public class PodScaffolder {
capabilities: []
select-if: %s 관련 요청인 경우
reject-if: 다른 업무 영역이 주된 요청인 경우
confidence-server-ids: [%s]
confusable-servers: []
decision-policy: 요청의 주요 업무 영역을 기준으로 서버를 선택합니다.
""".formatted(moduleName.replace("-", "_"), key, moduleName, key, key, key, key, moduleName);
""".formatted(moduleName, key, key, moduleName, key, key, key, key);
}
private static String capitalize(String str) {