kbt 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +45 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/kbt.gemspec +28 -0
- data/lib/kbt.rb +17 -0
- data/lib/kbt/container.rb +33 -0
- data/lib/kbt/deployment.rb +74 -0
- data/lib/kbt/environment.rb +30 -0
- data/lib/kbt/template.rb +29 -0
- data/lib/kbt/version.rb +3 -0
- data/lib/kbt/volume.rb +12 -0
- data/lib/kbt/volume_mounts.rb +12 -0
- data/templates/container.yml +4 -0
- data/templates/deployment.yml +21 -0
- metadata +122 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 930978cdf7f22cca95dec1cfbe049cdd5f039ea6
|
4
|
+
data.tar.gz: 950333008fc61498c6e48d636f29160f5c644992
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6f46cfb492cc2c2b78032dedc850728b83df8d925deef21fff5273d6110e48c0ef339317b2754a09acb8255a0e41be3205bd6311f710a0c64a99c1ebe0e8d468
|
7
|
+
data.tar.gz: 288be6220ce881a41de5870ef77bf1a0d75b5cd107bd8afbe96f0e9d2f2a23fbef11d119b9afa78759101d7e5b6006d200c1346213070b5b9c746ac4b50dfa94
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at arturictus@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
kbt (0.1.0)
|
5
|
+
fusu
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
coderay (1.1.0)
|
11
|
+
diff-lcs (1.3)
|
12
|
+
fusu (0.2.0)
|
13
|
+
method_source (0.8.2)
|
14
|
+
pry (0.10.1)
|
15
|
+
coderay (~> 1.1.0)
|
16
|
+
method_source (~> 0.8.1)
|
17
|
+
slop (~> 3.4)
|
18
|
+
rake (10.5.0)
|
19
|
+
rspec (3.7.0)
|
20
|
+
rspec-core (~> 3.7.0)
|
21
|
+
rspec-expectations (~> 3.7.0)
|
22
|
+
rspec-mocks (~> 3.7.0)
|
23
|
+
rspec-core (3.7.1)
|
24
|
+
rspec-support (~> 3.7.0)
|
25
|
+
rspec-expectations (3.7.0)
|
26
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
27
|
+
rspec-support (~> 3.7.0)
|
28
|
+
rspec-mocks (3.7.0)
|
29
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
+
rspec-support (~> 3.7.0)
|
31
|
+
rspec-support (3.7.1)
|
32
|
+
slop (3.6.0)
|
33
|
+
|
34
|
+
PLATFORMS
|
35
|
+
ruby
|
36
|
+
|
37
|
+
DEPENDENCIES
|
38
|
+
bundler (~> 1.16)
|
39
|
+
kbt!
|
40
|
+
pry
|
41
|
+
rake (~> 10.0)
|
42
|
+
rspec (~> 3.0)
|
43
|
+
|
44
|
+
BUNDLED WITH
|
45
|
+
1.16.1
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Artur Pañach
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# Kbt
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/kbt`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'kbt'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install kbt
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
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).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/kbt. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Code of Conduct
|
42
|
+
|
43
|
+
Everyone interacting in the Kbt project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/kbt/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "kbt"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/kbt.gemspec
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "kbt/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "kbt"
|
8
|
+
spec.version = Kbt::VERSION
|
9
|
+
spec.authors = ["Artur Panyach"]
|
10
|
+
spec.email = ["arturictus@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Kubernetes templating engine for Ruby.}
|
13
|
+
spec.description = %q{Kubernetes templating engine for Ruby.}
|
14
|
+
spec.homepage = "https://github.com/arturictus/kbt"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = "exe"
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ["lib"]
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
26
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
27
|
+
spec.add_dependency "fusu"
|
28
|
+
end
|
data/lib/kbt.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require "kbt/version"
|
2
|
+
require 'fusu'
|
3
|
+
|
4
|
+
module Kbt
|
5
|
+
def self.templates_folder
|
6
|
+
File.expand_path('../templates', __dir__)
|
7
|
+
end
|
8
|
+
|
9
|
+
def root
|
10
|
+
Pathname.new(File.expand_path('../lib', __FILE__))
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
require 'kbt/environment'
|
15
|
+
require 'kbt/template'
|
16
|
+
require 'kbt/container'
|
17
|
+
require 'kbt/deployment'
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module Kbt
|
2
|
+
class Container
|
3
|
+
attr_reader :template, :name, :image, :command, :env
|
4
|
+
def initialize(args = {})
|
5
|
+
@template = args.fetch(:template)
|
6
|
+
@name = args.fetch(:name)
|
7
|
+
@image = args.fetch(:image)
|
8
|
+
@command = args.fetch(:command)
|
9
|
+
@env = args.fetch(:env)
|
10
|
+
end
|
11
|
+
|
12
|
+
def to_h
|
13
|
+
Fusu::Hash.deep_merge(
|
14
|
+
template.value,
|
15
|
+
overrides
|
16
|
+
)
|
17
|
+
end
|
18
|
+
|
19
|
+
def overrides
|
20
|
+
{
|
21
|
+
"name"=> name,
|
22
|
+
"image"=> image,
|
23
|
+
"command" => command,
|
24
|
+
"env" => env.to_h
|
25
|
+
}
|
26
|
+
# TODO add volumeMounts
|
27
|
+
end
|
28
|
+
|
29
|
+
def call
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,74 @@
|
|
1
|
+
module Kbt
|
2
|
+
class Deployment
|
3
|
+
attr_reader :template, :containers, :replicas, :name, :labels
|
4
|
+
def initialize(args = {})
|
5
|
+
@template = args.fetch(:template)
|
6
|
+
@name = args.fetch(:name)
|
7
|
+
@labels = args.fetch(:labels)
|
8
|
+
@containers = args.fetch(:containers)
|
9
|
+
@replicas = args[:replicas] || 1
|
10
|
+
end
|
11
|
+
|
12
|
+
def to_h
|
13
|
+
Fusu::Hash.deep_merge(
|
14
|
+
template.value,
|
15
|
+
overrides
|
16
|
+
)
|
17
|
+
end
|
18
|
+
|
19
|
+
private
|
20
|
+
|
21
|
+
def overrides
|
22
|
+
case version
|
23
|
+
when 'apps/v1', 'apps/v1beta2'
|
24
|
+
v1
|
25
|
+
when 'extensions/v1beta1', 'apps/v1beta1'
|
26
|
+
v1beta1
|
27
|
+
else
|
28
|
+
raise 'version not recognised'
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def version
|
33
|
+
template.value['apiVersion']
|
34
|
+
end
|
35
|
+
|
36
|
+
def v1
|
37
|
+
{
|
38
|
+
"metadata" => {
|
39
|
+
"name" => name,
|
40
|
+
"labels" => labels
|
41
|
+
},
|
42
|
+
"spec" => {
|
43
|
+
'replicas' => replicas,
|
44
|
+
'selector' => {
|
45
|
+
'matchLabels' => labels
|
46
|
+
},
|
47
|
+
'template' => template
|
48
|
+
}
|
49
|
+
}
|
50
|
+
end
|
51
|
+
|
52
|
+
def template
|
53
|
+
{
|
54
|
+
'metadata' => { 'labels' => labels },
|
55
|
+
'spec' => { 'containers' => containers.map(&:to_h) }
|
56
|
+
}
|
57
|
+
# TODO add terminationGracePeriodSeconds
|
58
|
+
# TODO add volumes
|
59
|
+
end
|
60
|
+
|
61
|
+
def v1beta1
|
62
|
+
{
|
63
|
+
"metadata" => {
|
64
|
+
"name" => name,
|
65
|
+
"labels" => labels
|
66
|
+
},
|
67
|
+
"spec" => {
|
68
|
+
'replicas' => replicas,
|
69
|
+
'template' => template
|
70
|
+
}
|
71
|
+
}
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module Kbt
|
2
|
+
class Environment
|
3
|
+
attr_reader :template, :overrides
|
4
|
+
def initialize(template, overrides = {})
|
5
|
+
@template = template
|
6
|
+
@overrides = overrides
|
7
|
+
end
|
8
|
+
|
9
|
+
def to_h
|
10
|
+
template.value
|
11
|
+
.reject { |e| override_keys.include?(e["name"]) }
|
12
|
+
.concat(format_overrides)
|
13
|
+
end
|
14
|
+
|
15
|
+
def override_keys
|
16
|
+
overrides.keys.map(&:to_s)
|
17
|
+
end
|
18
|
+
|
19
|
+
def format_overrides
|
20
|
+
overrides.map do |k, v|
|
21
|
+
[{
|
22
|
+
name: k.to_s,
|
23
|
+
value: v.to_s
|
24
|
+
}]
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
|
29
|
+
end
|
30
|
+
end
|
data/lib/kbt/template.rb
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
module Kbt
|
3
|
+
class Template
|
4
|
+
attr_reader :file_path, :key
|
5
|
+
def initialize(file_path, key = nil)
|
6
|
+
@file_path = file_path.to_s =~ /.yml$/ ? file_path : "#{file_path}.yml"
|
7
|
+
@key = key
|
8
|
+
end
|
9
|
+
|
10
|
+
def yml
|
11
|
+
@yml ||= YAML.load(file_content)
|
12
|
+
end
|
13
|
+
|
14
|
+
def file_content
|
15
|
+
@file_content ||= File.read(file_path)
|
16
|
+
end
|
17
|
+
|
18
|
+
def keys
|
19
|
+
key ? key.split('.') : nil
|
20
|
+
end
|
21
|
+
|
22
|
+
def value
|
23
|
+
return yml unless keys
|
24
|
+
keys.inject(yml) do |prev, nxt|
|
25
|
+
prev[nxt]
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
data/lib/kbt/version.rb
ADDED
data/lib/kbt/volume.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
apiVersion: apps/v1
|
2
|
+
kind: Deployment
|
3
|
+
metadata:
|
4
|
+
name: nginx-deployment
|
5
|
+
labels:
|
6
|
+
app: nginx
|
7
|
+
spec:
|
8
|
+
replicas: 1
|
9
|
+
selector:
|
10
|
+
matchLabels:
|
11
|
+
app: nginx
|
12
|
+
template:
|
13
|
+
metadata:
|
14
|
+
labels:
|
15
|
+
app: nginx
|
16
|
+
spec:
|
17
|
+
containers:
|
18
|
+
- name: nginx
|
19
|
+
image: nginx:1.7.9
|
20
|
+
ports:
|
21
|
+
- containerPort: 80
|
metadata
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: kbt
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Artur Panyach
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-03-24 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.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: fusu
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Kubernetes templating engine for Ruby.
|
70
|
+
email:
|
71
|
+
- arturictus@gmail.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".rspec"
|
78
|
+
- ".travis.yml"
|
79
|
+
- CODE_OF_CONDUCT.md
|
80
|
+
- Gemfile
|
81
|
+
- Gemfile.lock
|
82
|
+
- LICENSE.txt
|
83
|
+
- README.md
|
84
|
+
- Rakefile
|
85
|
+
- bin/console
|
86
|
+
- bin/setup
|
87
|
+
- kbt.gemspec
|
88
|
+
- lib/kbt.rb
|
89
|
+
- lib/kbt/container.rb
|
90
|
+
- lib/kbt/deployment.rb
|
91
|
+
- lib/kbt/environment.rb
|
92
|
+
- lib/kbt/template.rb
|
93
|
+
- lib/kbt/version.rb
|
94
|
+
- lib/kbt/volume.rb
|
95
|
+
- lib/kbt/volume_mounts.rb
|
96
|
+
- templates/container.yml
|
97
|
+
- templates/deployment.yml
|
98
|
+
homepage: https://github.com/arturictus/kbt
|
99
|
+
licenses:
|
100
|
+
- MIT
|
101
|
+
metadata: {}
|
102
|
+
post_install_message:
|
103
|
+
rdoc_options: []
|
104
|
+
require_paths:
|
105
|
+
- lib
|
106
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - ">="
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0'
|
116
|
+
requirements: []
|
117
|
+
rubyforge_project:
|
118
|
+
rubygems_version: 2.5.2
|
119
|
+
signing_key:
|
120
|
+
specification_version: 4
|
121
|
+
summary: Kubernetes templating engine for Ruby.
|
122
|
+
test_files: []
|