itamae-plugin-recipe-tig 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.gitignore +0 -1
- data/.travis.yml +39 -0
- data/CHANGELOG.md +12 -0
- data/README.md +4 -7
- data/Rakefile +0 -28
- data/itamae-plugin-recipe-tig.gemspec +1 -0
- data/lib/itamae/plugin/recipe/tig/default.rb +2 -1
- data/lib/itamae/plugin/recipe/tig/version.rb +1 -1
- metadata +18 -9
- data/Vagrantfile +0 -106
- data/ci/build.sh +0 -7
- data/ci/setup.sh +0 -25
- data/recipes/install.rb +0 -1
- data/recipes/node.yml +0 -3
- data/wercker.yml +0 -60
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1bfec0f29c25206d3197dc92daba97a8750c3b93824eaa69fc3c21c4bdb1b6aa
|
4
|
+
data.tar.gz: 7dc5dbe3e61cca5cf31fdf0f81897b764e4a8d8619e60710d6b3d5fab52dc770
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ee709cedba89941c601267064cfb265d496a3d18f71386375d12269fbefad7e483b1f8055abc09bf02bbddf91a48d1918d27c78a10e9f3b635c4c0bf2ada3d9
|
7
|
+
data.tar.gz: b2b72a0d629cb89e53bef21ba95f6f5504fb2441c5e07b66605a91ae1f45d3cf319f359bf8a928a59ff6ce0c17f6c114ed9c4ea6bbc29d62602c788091ec4037
|
data/.gitignore
CHANGED
data/.travis.yml
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
language: ruby
|
2
|
+
sudo: required
|
3
|
+
services:
|
4
|
+
- docker
|
5
|
+
rvm:
|
6
|
+
- 2.3
|
7
|
+
env:
|
8
|
+
- IMAGE=centos:7
|
9
|
+
- IMAGE=debian:jessie
|
10
|
+
- IMAGE=amazonlinux:2
|
11
|
+
bundler_args: "--jobs=4"
|
12
|
+
|
13
|
+
cache:
|
14
|
+
bundler: true
|
15
|
+
directories:
|
16
|
+
- $HOME/docker
|
17
|
+
|
18
|
+
before_cache:
|
19
|
+
# Save tagged docker images
|
20
|
+
- >
|
21
|
+
mkdir -p $HOME/docker && docker images -a --filter='dangling=false' --format '{{.Repository}}:{{.Tag}} {{.ID}}'
|
22
|
+
| xargs -n 2 -t sh -c 'test -e $HOME/docker/$1.tar.gz || docker save $0 | gzip -2 > $HOME/docker/$1.tar.gz'
|
23
|
+
|
24
|
+
before_install:
|
25
|
+
- gem update --system --no-document
|
26
|
+
- gem install bundler --no-document
|
27
|
+
# Load cached docker images
|
28
|
+
- if [[ -d $HOME/docker ]]; then ls $HOME/docker/*.tar.gz | xargs -I {file} sh -c "zcat {file} | docker load"; fi
|
29
|
+
|
30
|
+
script:
|
31
|
+
- bundle exec itamae docker --node-yaml=spec/recipes/node.yml spec/recipes/install.rb --image=$IMAGE --tag itamae-plugin:latest
|
32
|
+
- DOCKER_IMAGE=itamae-plugin:latest bundle exec rspec
|
33
|
+
branches:
|
34
|
+
only:
|
35
|
+
- master
|
36
|
+
notifications:
|
37
|
+
email: false
|
38
|
+
slack:
|
39
|
+
secure: Cp14VhyCUMUbQ/qvt1N96ZZUfJHQWq/car8TKVpO2vZ9DlajIIVuZrQ2HtekXTfnjiZ+8WI+ZShk2h78XLZk15CwdTx0RbGm8BSRv93nM9vsYoSUIkc1nFfCO7k3sfUA4JpK7aWz5KrqxsuHYnfLEtwVjuHys+JglyQ0aIu+eCYNNNIPVjXNsdz007tMdI8k7xCv4XeungICgn7b2+GPIes4MtdF069jUvAbzGWDm2vE86xE9N8rCCO+aqgaJVJaw2KxCxUlCQGbl4ewqGZy/8T1YScsYpSORSnpIu3aUbYz1ZG+NqGsLn4oL+NTNv5z/qIyEvpSaV/UtG6VsydPyOD9i2Db4mEtUFq1g3f/K3JBk2CQ4HFDzu227Fl9vo7Dn8DpMMDdAn61N5xAvjaT8L/6eQKkDSOm8v/zUR3P0frxB/SCDJceyE9whlODBeuZl/Y+63tPlVD/0wEb3ORiiHg6jyI881UpremtBzVWOPaN2oeTw0wEXxVy762j40jKW9Ka1Cnbk1d5qF8SxASOdBQ03Ud+bBy3z47sqp8fRrCUYc9np0yYi80kc2BwLrnAoEOaoFFnRTyQBSK82+BVkJtkpLNbzpBYG1sJxM2t5TF1VkdMsjkWgIuIc/EA8jKcVztY9565GWMM2zpY2q/2Lb1T/CUe/uQCxNC20ul5nVA=
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [v0.1.2](https://github.com/sue445/itamae-plugin-recipe-tig/tree/v0.1.2) (2017/09/12)
|
4
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tig/compare/v0.1.1...v0.1.2)
|
5
|
+
|
6
|
+
**Merged pull requests:**
|
7
|
+
|
8
|
+
- Resolved: failure make configure on debian8 [\#10](https://github.com/sue445/itamae-plugin-recipe-tig/pull/10) ([sue445](https://github.com/sue445))
|
9
|
+
- Migrate to workflow [\#9](https://github.com/sue445/itamae-plugin-recipe-tig/pull/9) ([sue445](https://github.com/sue445))
|
10
|
+
- \[CI\] Migrate to Docker [\#8](https://github.com/sue445/itamae-plugin-recipe-tig/pull/8) ([sue445](https://github.com/sue445))
|
11
|
+
- Update box [\#7](https://github.com/sue445/itamae-plugin-recipe-tig/pull/7) ([sue445](https://github.com/sue445))
|
12
|
+
- Remove unused file [\#6](https://github.com/sue445/itamae-plugin-recipe-tig/pull/6) ([sue445](https://github.com/sue445))
|
13
|
+
- Support parallels CI [\#5](https://github.com/sue445/itamae-plugin-recipe-tig/pull/5) ([sue445](https://github.com/sue445))
|
14
|
+
|
3
15
|
## [v0.1.1](https://github.com/sue445/itamae-plugin-recipe-tig/tree/v0.1.1) (2016/03/06)
|
4
16
|
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tig/compare/v0.1.0...v0.1.1)
|
5
17
|
|
data/README.md
CHANGED
@@ -3,9 +3,7 @@
|
|
3
3
|
[Itamae](https://github.com/itamae-kitchen/itamae) plugin to install [tig](https://github.com/jonas/tig)
|
4
4
|
|
5
5
|
[](https://badge.fury.io/rb/itamae-plugin-recipe-tig)
|
6
|
-
[](https://app.wercker.com/project/bykey/c59024592cbde003c22281c34332be02)
|
6
|
+
[](https://travis-ci.org/sue445/itamae-plugin-recipe-tig)
|
9
7
|
|
10
8
|
## Installation
|
11
9
|
|
@@ -60,12 +58,11 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
60
58
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
61
59
|
|
62
60
|
## Testing
|
63
|
-
requirements [
|
61
|
+
requirements [Docker](https://www.docker.com/)
|
64
62
|
|
65
63
|
```sh
|
66
|
-
|
67
|
-
bundle exec
|
68
|
-
bundle exec rake spec:centos70
|
64
|
+
bundle exec itamae docker --node-yaml=recipes/node.yml recipes/install.rb --image=centos:7 --tag itamae-plugin:latest
|
65
|
+
DOCKER_IMAGE=itamae-plugin:latest bundle exec rspec
|
69
66
|
```
|
70
67
|
|
71
68
|
## Contributing
|
data/Rakefile
CHANGED
@@ -1,29 +1 @@
|
|
1
1
|
require "bundler/gem_tasks"
|
2
|
-
require "rspec/core/rake_task"
|
3
|
-
|
4
|
-
task :spec => "spec:all"
|
5
|
-
|
6
|
-
HOSTS = %w(centos70 debian8)
|
7
|
-
|
8
|
-
namespace :spec do
|
9
|
-
task :all => HOSTS
|
10
|
-
|
11
|
-
HOSTS.each do |host|
|
12
|
-
RSpec::Core::RakeTask.new(host.to_sym) do |t|
|
13
|
-
puts "Running tests to #{host} ..."
|
14
|
-
ENV["TARGET_HOST"] = host
|
15
|
-
t.pattern = "spec/*_spec.rb"
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
namespace :itamae do
|
21
|
-
task :all => HOSTS
|
22
|
-
|
23
|
-
HOSTS.each do |host|
|
24
|
-
desc "Running itamae to #{host}"
|
25
|
-
task host do
|
26
|
-
sh "itamae ssh --host=#{host} --vagrant --node-yaml=recipes/node.yml recipes/install.rb"
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -22,6 +22,7 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.add_dependency "itamae"
|
23
23
|
|
24
24
|
spec.add_development_dependency "bundler", "~> 1.10"
|
25
|
+
spec.add_development_dependency "docker-api"
|
25
26
|
spec.add_development_dependency "rake", "~> 10.0"
|
26
27
|
spec.add_development_dependency "serverspec"
|
27
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: itamae-plugin-recipe-tig
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sue445
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: itamae
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1.10'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: docker-api
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: rake
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,23 +90,18 @@ files:
|
|
76
90
|
- ".github_changelog_generator"
|
77
91
|
- ".gitignore"
|
78
92
|
- ".rspec"
|
93
|
+
- ".travis.yml"
|
79
94
|
- CHANGELOG.md
|
80
95
|
- Gemfile
|
81
96
|
- LICENSE.txt
|
82
97
|
- README.md
|
83
98
|
- Rakefile
|
84
|
-
- Vagrantfile
|
85
99
|
- bin/console
|
86
100
|
- bin/setup
|
87
|
-
- ci/build.sh
|
88
|
-
- ci/setup.sh
|
89
101
|
- itamae-plugin-recipe-tig.gemspec
|
90
102
|
- lib/itamae/plugin/recipe/tig.rb
|
91
103
|
- lib/itamae/plugin/recipe/tig/default.rb
|
92
104
|
- lib/itamae/plugin/recipe/tig/version.rb
|
93
|
-
- recipes/install.rb
|
94
|
-
- recipes/node.yml
|
95
|
-
- wercker.yml
|
96
105
|
homepage: https://github.com/sue445/itamae-plugin-recipe-tig
|
97
106
|
licenses:
|
98
107
|
- MIT
|
@@ -113,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
113
122
|
version: '0'
|
114
123
|
requirements: []
|
115
124
|
rubyforge_project:
|
116
|
-
rubygems_version: 2.
|
125
|
+
rubygems_version: 2.7.7
|
117
126
|
signing_key:
|
118
127
|
specification_version: 4
|
119
128
|
summary: Itamae plugin to install tig
|
data/Vagrantfile
DELETED
@@ -1,106 +0,0 @@
|
|
1
|
-
# -*- mode: ruby -*-
|
2
|
-
# vi: set ft=ruby :
|
3
|
-
|
4
|
-
# All Vagrant configuration is done below. The "2" in Vagrant.configure
|
5
|
-
# configures the configuration version (we support older styles for
|
6
|
-
# backwards compatibility). Please don't change it unless you know what
|
7
|
-
# you're doing.
|
8
|
-
Vagrant.configure(2) do |config|
|
9
|
-
config.vm.provider :digital_ocean do |provider, override|
|
10
|
-
override.vm.box = "digital_ocean"
|
11
|
-
override.vm.box_url = "https://github.com/smdahlen/vagrant-digitalocean/raw/master/box/digital_ocean.box"
|
12
|
-
provider.token = ENV["DIGITALOCEAN_ACCESS_TOKEN"]
|
13
|
-
provider.region = "nyc3"
|
14
|
-
provider.size = "512MB"
|
15
|
-
|
16
|
-
if ENV["WERCKER"] == "true"
|
17
|
-
provider.ssh_key_name = "wercker-#{ENV['WERCKER_GIT_REPOSITORY']}"
|
18
|
-
override.ssh.private_key_path = "~/.ssh/id_rsa.vagrant"
|
19
|
-
override.vm.synced_folder ".", "/vagrant", disabled: true
|
20
|
-
else
|
21
|
-
provider.ssh_key_name = "local"
|
22
|
-
override.ssh.private_key_path = "~/.ssh/id_rsa"
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
config.vm.define :centos70 do |c|
|
27
|
-
c.vm.box = "centos/7"
|
28
|
-
c.vm.provider :digital_ocean do |provider, override|
|
29
|
-
provider.image = "centos-7-0-x64"
|
30
|
-
end
|
31
|
-
c.vm.hostname = 'itamae-tig-centos70'
|
32
|
-
c.vm.hostname += "-#{ENV['WERCKER_BUILD_ID']}" if ENV['WERCKER_BUILD_ID']
|
33
|
-
end
|
34
|
-
|
35
|
-
config.vm.define :debian8 do |c|
|
36
|
-
c.vm.box = "debian/jessie64"
|
37
|
-
c.vm.provider :digital_ocean do |provider, override|
|
38
|
-
provider.image = "debian-8-x64"
|
39
|
-
end
|
40
|
-
c.vm.hostname = 'itamae-tig-debian8'
|
41
|
-
c.vm.hostname += "-#{ENV['WERCKER_BUILD_ID']}" if ENV['WERCKER_BUILD_ID']
|
42
|
-
end
|
43
|
-
|
44
|
-
# The most common configuration options are documented and commented below.
|
45
|
-
# For a complete reference, please see the online documentation at
|
46
|
-
# https://docs.vagrantup.com.
|
47
|
-
|
48
|
-
# Every Vagrant development environment requires a box. You can search for
|
49
|
-
# boxes at https://atlas.hashicorp.com/search.
|
50
|
-
# config.vm.box = "base"
|
51
|
-
|
52
|
-
# Disable automatic box update checking. If you disable this, then
|
53
|
-
# boxes will only be checked for updates when the user runs
|
54
|
-
# `vagrant box outdated`. This is not recommended.
|
55
|
-
# config.vm.box_check_update = false
|
56
|
-
|
57
|
-
# Create a forwarded port mapping which allows access to a specific port
|
58
|
-
# within the machine from a port on the host machine. In the example below,
|
59
|
-
# accessing "localhost:8080" will access port 80 on the guest machine.
|
60
|
-
# config.vm.network "forwarded_port", guest: 80, host: 8080
|
61
|
-
|
62
|
-
# Create a private network, which allows host-only access to the machine
|
63
|
-
# using a specific IP.
|
64
|
-
# config.vm.network "private_network", ip: "192.168.33.10"
|
65
|
-
|
66
|
-
# Create a public network, which generally matched to bridged network.
|
67
|
-
# Bridged networks make the machine appear as another physical device on
|
68
|
-
# your network.
|
69
|
-
# config.vm.network "public_network"
|
70
|
-
|
71
|
-
# Share an additional folder to the guest VM. The first argument is
|
72
|
-
# the path on the host to the actual folder. The second argument is
|
73
|
-
# the path on the guest to mount the folder. And the optional third
|
74
|
-
# argument is a set of non-required options.
|
75
|
-
# config.vm.synced_folder "../data", "/vagrant_data"
|
76
|
-
|
77
|
-
# Provider-specific configuration so you can fine-tune various
|
78
|
-
# backing providers for Vagrant. These expose provider-specific options.
|
79
|
-
# Example for VirtualBox:
|
80
|
-
#
|
81
|
-
# config.vm.provider "virtualbox" do |vb|
|
82
|
-
# # Display the VirtualBox GUI when booting the machine
|
83
|
-
# vb.gui = true
|
84
|
-
#
|
85
|
-
# # Customize the amount of memory on the VM:
|
86
|
-
# vb.memory = "1024"
|
87
|
-
# end
|
88
|
-
#
|
89
|
-
# View the documentation for the provider you are using for more
|
90
|
-
# information on available options.
|
91
|
-
|
92
|
-
# Define a Vagrant Push strategy for pushing to Atlas. Other push strategies
|
93
|
-
# such as FTP and Heroku are also available. See the documentation at
|
94
|
-
# https://docs.vagrantup.com/v2/push/atlas.html for more information.
|
95
|
-
# config.push.define "atlas" do |push|
|
96
|
-
# push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME"
|
97
|
-
# end
|
98
|
-
|
99
|
-
# Enable provisioning with a shell script. Additional provisioners such as
|
100
|
-
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
|
101
|
-
# documentation for more information about their specific syntax and use.
|
102
|
-
# config.vm.provision "shell", inline: <<-SHELL
|
103
|
-
# sudo apt-get update
|
104
|
-
# sudo apt-get install -y apache2
|
105
|
-
# SHELL
|
106
|
-
end
|
data/ci/build.sh
DELETED
data/ci/setup.sh
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
#!/bin/bash -xe
|
2
|
-
|
3
|
-
wget https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4_x86_64.rpm
|
4
|
-
rpm -i vagrant_1.8.4_x86_64.rpm
|
5
|
-
vagrant plugin install vagrant-digitalocean
|
6
|
-
|
7
|
-
# NOTE: vagrant v1.8.4 depends on bundler v1.12.5
|
8
|
-
# https://github.com/mitchellh/vagrant/blob/v1.8.4/vagrant.gemspec#L23
|
9
|
-
gem uninstall bundler --all --force
|
10
|
-
gem install bundler -v 1.12.5 --no-document
|
11
|
-
|
12
|
-
|
13
|
-
mkdir -m 700 -p $HOME/.ssh
|
14
|
-
|
15
|
-
#########################
|
16
|
-
# put ssh keys
|
17
|
-
set +x
|
18
|
-
|
19
|
-
echo -e "$DIGITALOCEAN_KEY_PRIVATE" > $HOME/.ssh/id_rsa.vagrant
|
20
|
-
echo -e "$DIGITALOCEAN_KEY_PUBLIC" > $HOME/.ssh/id_rsa.vagrant.pub
|
21
|
-
|
22
|
-
set -x
|
23
|
-
#########################
|
24
|
-
|
25
|
-
chmod 600 $HOME/.ssh/id_rsa.vagrant
|
data/recipes/install.rb
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
include_recipe "tig"
|
data/recipes/node.yml
DELETED
data/wercker.yml
DELETED
@@ -1,60 +0,0 @@
|
|
1
|
-
# This references the default Ruby container from
|
2
|
-
# the Docker Hub.
|
3
|
-
# https://registry.hub.docker.com/_/ruby/
|
4
|
-
# If you want to use a specific version you would use a tag:
|
5
|
-
# ruby:2.2.2
|
6
|
-
box: drecom/centos-ruby:2.3.1
|
7
|
-
# You can also use services such as databases. Read more on our dev center:
|
8
|
-
# http://devcenter.wercker.com/docs/services/index.html
|
9
|
-
# services:
|
10
|
-
# - postgres
|
11
|
-
# http://devcenter.wercker.com/docs/services/postgresql.html
|
12
|
-
|
13
|
-
# - mongodb
|
14
|
-
# http://devcenter.wercker.com/docs/services/mongodb.html
|
15
|
-
|
16
|
-
default: &default
|
17
|
-
after-steps:
|
18
|
-
- script:
|
19
|
-
name: set variables
|
20
|
-
code: |
|
21
|
-
# NOTE: override .ruby-version in pretty-slack-notify
|
22
|
-
export RBENV_VERSION=2.3.1
|
23
|
-
- script:
|
24
|
-
name: remove all vms
|
25
|
-
code: vagrant destroy -f
|
26
|
-
|
27
|
-
- wantedly/pretty-slack-notify:
|
28
|
-
webhook_url: $SLACK_WEBHOOK_URL
|
29
|
-
username: wercker_build
|
30
|
-
|
31
|
-
build:
|
32
|
-
steps:
|
33
|
-
|
34
|
-
build-centos70:
|
35
|
-
<<: *default
|
36
|
-
steps:
|
37
|
-
- script:
|
38
|
-
name: setup
|
39
|
-
code: ./ci/setup.sh
|
40
|
-
|
41
|
-
- bundle-install:
|
42
|
-
jobs: 4
|
43
|
-
|
44
|
-
- script:
|
45
|
-
name: build CentOS 7.0
|
46
|
-
code: ./ci/build.sh centos70
|
47
|
-
|
48
|
-
build-debian8:
|
49
|
-
<<: *default
|
50
|
-
steps:
|
51
|
-
- script:
|
52
|
-
name: setup
|
53
|
-
code: ./ci/setup.sh
|
54
|
-
|
55
|
-
- bundle-install:
|
56
|
-
jobs: 4
|
57
|
-
|
58
|
-
- script:
|
59
|
-
name: build Debian 8
|
60
|
-
code: ./ci/build.sh debian8
|