繁体   English   中英

我的厨师厨房的Vagrant机器无法访问互联网

[英]My Vagrant machine from chef kitchen cannot access the internet

我正在尝试学习如何在本地开发厨师食谱。 我正在遵循本指南https://gist.github.com/smford22/f00f46471047422bd8a7

我在所有厨房命令前加chef exec作为前缀,因为如果我尝试直接运行厨房,则会出现各种红宝石/宝石错误。

当我运行chef exec kitchen converge它卡在安装Chef Omnibus上,挂在“ Trying wget ...”上

如果我登录到VM并尝试运行curl和wget命令(例如curl https://google.com则确实无法访问Internet。

chef exec kitchen -v
Test Kitchen version 1.23.2

chef -v
Chef Development Kit Version: 3.5.13
chef-client version: 14.7.17
delivery version: master (6862f27aba89109a9630f0b6c6798efec56b4efe)
berks version: 7.0.6
kitchen version: 1.23.2
inspec version: 3.0.52

.kitchen.yml:

---
driver:
  name: vagrant

 ## The private_network feature lets you setup a private network on the VM guest
 ## via localhost on the host.
 ## see also: https://www.vagrantup.com/docs/networking/private_network.html

  # network:
  #  - ["private_network", {ip: "33.33.33.33"}]

provisioner:
  name: chef_zero

## The verifier section determines which test platform you want to use.
verifier:
  name: inspec
  format: doc

platforms:
  - name: centos-6.7

suites:
  - name: default
    run_list:
      - recipe[chef_httpd::default]
    attributes:

您是否通过代理访问互联网? 如果是,则需要使用vagrant-proxyconf插件为Vagrant VM配置相同的配置。 文档: http : //tmatilai.github.io/vagrant-proxyconf/

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM