Change method to input parameters for script #677
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
ref: #650
testscript 커맨드의 파라미터 입력 방식을 named parameter 형태로 변경
named parameter의 key
-f: testset 설정 파일
-n: mcis명칭 postfix (중복된 명칭 방지)
-x: 커맨드별 옵션 1 (ex: 복제 vm 수, vm_id 등 커맨드가 필요하는 값에 매핑)
-y: 커맨드별 옵션 2
-z: 커맨드별 옵션 3
-h: 도움말
기존 예시: ./create-all.sh all 1 developername ../testset.env
변경 예시: ./create-all.sh -n developername -f ../testset.env
각 스크립트의 환경설정 코드 간소화
Todo