-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathk8s_node_descale.gemspec
33 lines (26 loc) · 1.28 KB
/
k8s_node_descale.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
require 'pathname'
lib_path = File.expand_path('../lib', Pathname.new(__FILE__).realpath)
$LOAD_PATH.unshift lib_path unless $LOAD_PATH.include?(lib_path)
require "k8s_node_descale/version"
Gem::Specification.new do |spec|
spec.name = "k8s_node_descale"
spec.version = K8sNodeDescale::VERSION
spec.authors = ["Kontena, Inc"]
spec.email = ["info@kontena.io"]
spec.license = "Apache-2.0"
spec.summary = %q{Kubernetes autoscaling node clean-up}
spec.description = %q{Drains Kubernetes nodes when they exceed their best-before date}
spec.homepage = "https://github.com/kontena/k8s-node-descale"
spec.files = Dir["bin/*", "lib/**/*", "LICENSE", "README.md" "k8s_node_descale.gemspec"]
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.4.0'
spec.add_runtime_dependency "clamp", "~> 1.3"
spec.add_runtime_dependency "k8s-client", "~> 0.3"
spec.add_runtime_dependency "rufus-scheduler", "~> 3.5"
spec.add_runtime_dependency "tty-which", "~> 0.3"
spec.add_runtime_dependency "retriable", "~> 3.1"
spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "rspec", "~> 3.0"
end