0
次の.kitchen.ymlファイルは、intermediate_instructionsに記載されている必要なツールでドッキング用コンテナを設定できません。 pid_one_commandも動作しません。コンテナがまだbashシェルでロードされています。テストキッチンでintermediate_instructionsとpid_one_commandを使用してDockerコンテナを設定できません
何か問題がありますか?
driver:
name: docker
socket: tcp://localhost:2375
binary: docker.exe
chef_version: latest
privileged: true
provisioner:
name: chef_zero
# You may wish to disable always updating cookbooks in CI or other testing environments.
# For example:
# always_update_cookbooks: <%= !ENV['CI'] %>
always_update_cookbooks: true
verifier:
name: inspec
platforms:
- name: ubuntu-16.04
driver:
image: ubuntu:16.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get install -y lsof which initscripts net-tools
suites:
- name: default
run_list:
- recipe[testy::default]
verifier:
inspec_tests:
- test/smoke/default
attributes:
あなたは正しいと思います。私が紹介していたトレーニングビデオは、キッチンドックケンを使用していました。ありがとう! –