deis-interactive 0.0.1
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 +7 -0
- data/.gitignore +20 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +36 -0
- data/bin/deis-rails +50 -0
- data/deis-interactive.gemspec +23 -0
- data/lib/deis-interactive/version.rb +3 -0
- metadata +80 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 9eaaad20980391f761d494697ebc109d4cf74c31
|
4
|
+
data.tar.gz: ac52c7695114c4a7a48b2191308ed1e5ec3733ea
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b8c13d3f7ecef910ee63e29a79339a49cfe04905fdedb8c2834ff26fcca65f485c9fc44f054d7de4ae5bd4196ce684d41f861c7c64d581ab686b7a56b003b80a
|
7
|
+
data.tar.gz: 122becac77d7867bd9b231644b37e0be87a691874274fdf36faca1e1708c5a714336a54f79a4d35d04771faab97c91dfa1a33d3d48b803c5324b81eb2daa4de2
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Phuong Nguyen
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# Deis Interactive
|
2
|
+
|
3
|
+
This gem provide a way to quickly invoke interactive task to a deis
|
4
|
+
cluster. The gem assumes that you have kubectl installed and configured.
|
5
|
+
|
6
|
+
The initial version only feature "deis-rails console -a APP". Hopefully
|
7
|
+
overtime other contributors join and we have more tools readily to be
|
8
|
+
used for Rails and other Python project. Pull requests are welcomed.
|
9
|
+
|
10
|
+
## Installation
|
11
|
+
|
12
|
+
Add this line to your application's Gemfile:
|
13
|
+
|
14
|
+
gem 'deis-interactive', require: false
|
15
|
+
|
16
|
+
And then execute:
|
17
|
+
|
18
|
+
$ bundle
|
19
|
+
|
20
|
+
Or install it yourself as:
|
21
|
+
|
22
|
+
$ gem install deis-interactive
|
23
|
+
|
24
|
+
## Usage
|
25
|
+
|
26
|
+
Runing console for your Rails app:
|
27
|
+
|
28
|
+
$ bundle exec deis-rails console -a MY-APP
|
29
|
+
|
30
|
+
## Contributing
|
31
|
+
|
32
|
+
1. Fork it
|
33
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
34
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
35
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
36
|
+
5. Create new Pull Request
|
data/bin/deis-rails
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "thor"
|
4
|
+
require "shellwords"
|
5
|
+
|
6
|
+
class DeisRails < Thor
|
7
|
+
desc "console -a APP", "run console on an app"
|
8
|
+
method_option :app, aliases: ["a"], type: :string, required: true, desc: "Name of the app"
|
9
|
+
def console
|
10
|
+
app = options[:app]
|
11
|
+
DeisRailsConsole.new(app).run
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
class DeisRailsConsole
|
16
|
+
attr_reader :app
|
17
|
+
|
18
|
+
def initialize(app)
|
19
|
+
@app = app
|
20
|
+
end
|
21
|
+
|
22
|
+
def run
|
23
|
+
puts "Run rails console attaching to #{container_id}"
|
24
|
+
exec "kubectl exec -it --namespace #{app} #{container_id} -- bash -c #{Shellwords.escape(bash)}"
|
25
|
+
end
|
26
|
+
|
27
|
+
def process
|
28
|
+
ENV['DEIS_CONSOLE_PROCESS'] || "web"
|
29
|
+
end
|
30
|
+
|
31
|
+
def container_id
|
32
|
+
@container_id ||= (
|
33
|
+
sample_container_id = container_ids.sample
|
34
|
+
if (sample_container_id.nil?)
|
35
|
+
raise "Error. None container of #{process} is found. kubectl won't be able to attach to run a console session"
|
36
|
+
end
|
37
|
+
sample_container_id.split("/").last
|
38
|
+
)
|
39
|
+
end
|
40
|
+
|
41
|
+
def container_ids
|
42
|
+
`kubectl get pods --namespace #{app} -o name | grep #{app}-#{process}`.split("\n").reject(&:empty?)
|
43
|
+
end
|
44
|
+
|
45
|
+
def bash
|
46
|
+
". /app/.profile.d/ruby.sh && PATH=/app/.heroku/node/bin:$PATH /app/bin/rails c"
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
DeisRails.start(ARGV)
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'deis-interactive/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "deis-interactive"
|
8
|
+
spec.version = DeisInteractive::VERSION
|
9
|
+
spec.authors = ["Phuong Nguyen"]
|
10
|
+
spec.email = ["phuongnd08@gmail.com"]
|
11
|
+
spec.description = %q{Wrapper for kubectl to quickly launch console to a deis app}
|
12
|
+
spec.summary = %q{Wrapper for kubectl to quickly launch console to a deis app}
|
13
|
+
spec.homepage = "https://github.com/phuongnd08/deis-interactive"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "thor"
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: deis-interactive
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Phuong Nguyen
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-12-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: thor
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Wrapper for kubectl to quickly launch console to a deis app
|
42
|
+
email:
|
43
|
+
- phuongnd08@gmail.com
|
44
|
+
executables:
|
45
|
+
- deis-rails
|
46
|
+
extensions: []
|
47
|
+
extra_rdoc_files: []
|
48
|
+
files:
|
49
|
+
- ".gitignore"
|
50
|
+
- Gemfile
|
51
|
+
- LICENSE.txt
|
52
|
+
- README.md
|
53
|
+
- bin/deis-rails
|
54
|
+
- deis-interactive.gemspec
|
55
|
+
- lib/deis-interactive/version.rb
|
56
|
+
homepage: https://github.com/phuongnd08/deis-interactive
|
57
|
+
licenses:
|
58
|
+
- MIT
|
59
|
+
metadata: {}
|
60
|
+
post_install_message:
|
61
|
+
rdoc_options: []
|
62
|
+
require_paths:
|
63
|
+
- lib
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0'
|
74
|
+
requirements: []
|
75
|
+
rubyforge_project:
|
76
|
+
rubygems_version: 2.6.11
|
77
|
+
signing_key:
|
78
|
+
specification_version: 4
|
79
|
+
summary: Wrapper for kubectl to quickly launch console to a deis app
|
80
|
+
test_files: []
|