호스트의 SSH 키를 사용하여 Vagrant VM 내에서 개인 저장소를 복제하는 방법은 무엇입니까?


11

PuppetLabs를 사용 vcsrepo하여 공개 자식 저장소를 복제 할 수는 있지만 호스트의 SSH 키를 사용하여 개인 저장소를 복제 할 수도 있습니다.

대한 같은 구성보기 어떤 것 Vagrantfile및 / 또는 manifests/default.pp순서에서이 작업을 수행하려면?

답변:


10

Puppet 파트를 도울 수 없지만 다음을 설정하여 SSH 에이전트를 전달할 수 있습니다.

Vagrant.configure("2") do |config|
  config.ssh.forward_agent = true
  # ...
end

이런 식으로 SSH 연결 (git에 의해 만들어 짐)은 호스트에서 개인 키를 사용하려고 시도합니다.


대부분의 경우 Windows에서 작동하지 않는 오류가 있습니다.
체이스 샌드 만

@ChaseSandmann 오류에 대한 자세한 정보를 제공 할 수 있습니까? github 문제에 대한 링크가 있습니까? 나는이 하나를 발견했다 그러나 나는 그것이 버추얼 5에 관련된 것 같다 때문이 아니다 생각 : github.com/mitchellh/vagrant/issues/6225
mastazi

5

내 컴퓨터에서 작동합니다!

방랑자 파일 :

VAGRANTFILE_API_VERSION = '2'

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = 'precise64'
  config.vm.box_url = 'http://files.vagrantup.com/precise64.box'

  #
  # Use host authenticaton for git and maven.
  #
  # Ensure host private key is registered with host SSH agent:
  #
  # ssh-add -L
  # ssh-add ~/.ssh/id_rsa
  # ssh-add -L
  #

  config.ssh.private_key_path = ['~/.vagrant.d/insecure_private_key', '~/.ssh/id_rsa']
  config.ssh.forward_agent = true

  config.vm.synced_folder "~/.m2", "/home/vagrant/.m2"

  config.vm.provision :shell, path: 'upgrade-puppet.sh'

  # Install puppet modules
  config.vm.provision :shell, path: 'bootstrap.rb', args: %w(
    puppetlabs-stdlib
    puppetlabs/apt
    puppetlabs/vcsrepo
  )

  config.vm.provision :puppet do |puppet|
    puppet.options = ENV['PUPPET_OPTIONS']
  end
end

upgrade-puppet.sh :

#!/bin/bash

apt-get install --yes lsb-release > /dev/null
DISTRIB_CODENAME=$(lsb_release --codename --short)
DEB="puppetlabs-release-${DISTRIB_CODENAME}.deb"
DEB_PROVIDES="/etc/apt/sources.list.d/puppetlabs.list" # Assume that this file's existence means we have the Puppet Labs repo added

if [ ! -e $DEB_PROVIDES ]
then
    # Print statement useful for debugging, but automated runs of this will interpret any output as an error
    # print "Could not find $DEB_PROVIDES - fetching and installing $DEB"
    wget -q http://apt.puppetlabs.com/$DEB
    sudo dpkg -i $DEB
fi
sudo apt-get update > /dev/null
sudo apt-get install --yes puppet > /dev/null

mkdir -p /etc/puppet
touch /etc/puppet/hiera.yaml

bootstrap.sh :

#!/usr/bin/env ruby

modules_dir = '/etc/puppet/modules'

puts `mkdir -p #{modules_dir}` unless File::exists? modules_dir

mods = ARGV

installed = `puppet module list`.split "\n"

mods.each do |mod|
  puts `puppet module install #{mod}` unless installed.any? { |i| i.include?(mod.sub('/','-')) }
end

manifests / default.pp :

exec { 'ssh know github':
  command => 'ssh -Tv git@github.com -o StrictHostKeyChecking=no; echo Success',
  path    => '/bin:/usr/bin',
  user    => 'vagrant'
}

vcsrepo { '/home/vagrant/a-private-repo':
  ensure   => latest,
  provider => git,
  source   => 'git@github.com:mcandre/a-private-repo.git',
  user     => 'vagrant',
  owner    => 'vagrant',
  group    => 'vagrant',
  require  => Exec['ssh know github']
}

bootstrap.sh요구가 될 bootstrap.rb이 작업을 위해.
Monkpit

2

Puppet을 사용하고 있지만이 bash 스크립트 ( provisioners/shell/application.setup.sh)를 사용하여 실행 중임을 알고 있습니다 .

#!/bin/bash

local_user=vagrant

if [ ! -n "$(grep "^bitbucket.org " /home/$local_user/.ssh/known_hosts)" ]; then 
    ssh-keyscan bitbucket.org >> ~/.ssh/known_hosts 2>/dev/null;
fi

if [[ ! -d "/home/$local_user/app" ]]; then
    git clone git@bitbucket.org:czerasz/some-app.git /home/$local_user/app

    chown -R $local_user:$local_user /home/$local_user/app

    su - $local_user -c "source /usr/local/bin/virtualenvwrapper.sh && mkvirtualenv some-env && workon some-env && pip install -r /home/$local_user/app/requirements.txt"
fi

꼭두각시 매니페스트로 쉽게 변환 할 수 있습니다 ...

이것과 함께 Vagrantfile

config.vm.define "web1", primary: true do |web1_config|
    web1_config.ssh.forward_agent = true

    # Create a private network, which allows host-only access to the machine
    web1_config.vm.network "private_network", ip: "192.168.11.10"
    web1_config.vm.hostname = "web1.#{domain}"

    web1_config.vm.provision "shell", path: "provisioners/shell/python.setup.sh"
    web1_config.vm.provision "shell", path: "provisioners/shell/application.setup.sh"
end

나를위한 핵심은 내가 처형했을 때였 다.

su - $local_user -c "ssh-keyscan bitbucket.org >> ~/.ssh/known_hosts 2>/dev/null;"
su - $local_user -c "git clone git@bitbucket.org:czerasz/some-app.git /home/$local_user/app"

작동하지 않았다. 마치 키를 사용하지 않은 것처럼 su. 그래서 레포를 루트로 복제 한 다음 소유권을 변경했습니다.

이 게시물 은 매우 도움이되었습니다.


친구 ..... 나는 당신 주위에 이것에 대해 상당히 도움이되지 않는 게시물을 발견했다. 건배!!!
에릭 Hodonsky
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.