sh vagrant-google.sh

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh vagrant-google.sh相关的知识,希望对你有一定的参考价值。

権限>サービスアカウント>Compute Engine default service account>鍵を作成>jsonダウンロード>.ssh/google-compute-engine-xxxxxx.json

compute engine>メタデータ>SSHキー>公開鍵を追加

NW
ネットワーキング>ネットワーク>TODO

FW
ネットワーキング>ファイアーウォールルール>+ファイアーウォールを作成>80を許可

LB
ネットワーキング>負荷分散>TODO

DNS
ネットワーキング>CloudDNS>TODO

VPN
ネットワーキング>VPN



curl https://sdk.cloud.google.com | bash

gcloud auth login
(ブラウザ)
gcloud config set project my-project
gcloud compute instances list


vagrant-google(https://github.com/mitchellh/vagrant-google)

vagrant plugin install vagrant-google
vagrant box add gce https://github.com/mitchellh/vagrant-google/raw/master/google.box

vagrant init
vi Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure(2) do |config|
  config.vm.box = "gce"

  config.vm.provider :google do |google, override|
    google.google_project_id = 'hoge-app'
    google.google_client_email = 'xxxxxxxxxxxx'
    google.google_json_key_location = '/path/to/.ssh/google-compute-engine-xxxxxx.json'
    google.zone = 'asia-east1-a'

    google.zone_config 'asia-east1-a' do |zone1a|
      zone1a.name = 'gce-vagrant-001'
      #zone1a.machine_type = 'n1-standard-1'
      zone1a.machine_type = 'g1-small'
      zone1a.zone = 'asia-east1-a'
      zone1a.image = 'ubuntu-1404-trusty-v20160406'
      #zone1a.disk_size = 10
      zone1a.disk_type = 'pd-ssd'
      #zone1a.disk_name = ''
      #zone1a.instance_group = ''
    end

    override.ssh.username = 'vagrant'
    override.ssh.private_key_path = '/path/to/.ssh/google_compute_engine'
  end

  #config.vm.provision :shell, path: 'init.sh'

  # @todo :shell, 'ansible-playbook'
  # rbenv ruby-build
  config.vm.provision :shell, inline: <<-SHELL
    sudo apt-get update
    sudo apt-get -y upgrade
    sudo apt-get -y install vim vim-common git g++ make zlib1g-dev libssl-dev libreadline-dev libyaml-dev libxml2-dev libxslt-dev nginx zsh byobu language-pack-ja
    sudo update-locale LANG=ja_JP.UTF-8
  SHELL
end

git init
vi .gitignore
/*
!config
!.gitignore
!Vagrantfile
.DS_store
*~


vagrant up --provider=google
...


vagrant ssh

sudo su -
password vagrant

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

# CoreOS+dockerでもよい

以上是关于sh vagrant-google.sh的主要内容,如果未能解决你的问题,请参考以下文章

如何使我的命令行在具有扩展名(.sh)和名称如“weird.sh.sh.sh”的文件上工作

sh sh_template.sh

sh sh.sh

Linux下面如何运行 SH文件

配置告警系统主脚本main.sh mon.sh load.sh 502.sh disk.sh

shell 脚本各种执行方式(source ./*.sh, . ./*.sh, ./*.sh)的区别