2014-03-04 4 views
1

내 통합 테스트에 대한 Test-Kitchen를 사용하고 난 specificaly OPTS에 대한 주방 명령에 대한 몇 가지 의문 속성Test-Kitchen 명령의 opts 속성은 무엇을 의미합니까?

그것은 부엌 명령입니다 있습니다.

Commands: 
    kitchen console       # Kitchen Console! 
    kitchen converge [(all|<REGEX>)] [opts] # Converge one or more instances 
    kitchen create [(all|<REGEX>)] [opts] # Create one or more instances 
    kitchen destroy [(all|<REGEX>)] [opts] # Destroy one or more instances 
    kitchen diagnose [(all|<REGEX>)]   # Show computed diagnostic configuration 
    kitchen driver       # Driver subcommands 
    kitchen driver create [NAME]    # Create a new Kitchen Driver gem project 
    kitchen driver discover     # Discover Test Kitchen drivers published on RubyGems 
    kitchen driver help [COMMAND]   # Describe subcommands or one specific subcommand 
    kitchen help [COMMAND]     # Describe available commands or one specific command 
    kitchen init        # Adds some configuration to your cookbook so Kitchen can rock 
    kitchen list [(all|<REGEX>)]    # List all instances 
    kitchen login (['REGEX']|[INSTANCE])  # Log in to one instance 
    kitchen setup [(all|<REGEX>)] [opts]  # Setup one or more instances 
    kitchen test [all|<REGEX>)] [opts]  # Test one or more instances 
    kitchen verify [(all|<REGEX>)] [opts] # Verify one or more instances 
    kitchen version 

누구든지 예를 들어 kitchen converge [opts]을 사용 했습니까?

어떤 종류의 을 사용할 수 있습니까?

답변

3

실행 kitchen help converge - 모든 옵션이 표시됩니다. 더 많은 정보를 얻으려면 명령에 kitchen help <command>을 실행할 수 있습니다. 옵션 목록은 명령에 따라 다릅니다. 예를 들어

:

kitchen converge --concurrency 5 --parallel 
+0

내가 부엌 1.0.0를 사용하고, 나는 부엌 도움을 수렴 실행하면, 그냥 나에게 옵션 --parallel (-p)를 보여줍니다. @sethvargo --concurrency 5 옵션은 어디에서 찾았습니까? 나는 그것에 관한 정보를 찾고있다. – Robert

+0

최신 버전으로 업데이트 – sethvargo