kubectl-rb 0.2.0-arm64-darwin → 0.2.1-arm64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/Rakefile +8 -5
- data/kubectl-rb.gemspec +2 -1
- data/lib/kubectl-rb/version.rb +1 -1
- data/vendor/kubectl +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2405a8ac3c1024d22bf7d28274a40c17aa3204826ed98c3f32827b2566224a48
|
4
|
+
data.tar.gz: cd7c9d67a5f4a127193cbe7c39dbe9f811f2c9ea17450141891e99187aa44482
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00e17872e3824f29be923c2ef7e3d1a59cf39f5e6cb778699ce4afe6b6d50852d079e7544e73d203f06b39b86370533c2b5348e9e3d43d581f062fca5e3e84ce
|
7
|
+
data.tar.gz: 40a73e0f7113523fb6dbe8d6a174596ea4b06709c001077fd192e9d93dd0fd85512a88240bea9c03d3c1fff0e996e34dd66f895c2dffa7e42bda047587b4acff
|
data/CHANGELOG.md
CHANGED
data/Rakefile
CHANGED
@@ -9,9 +9,10 @@ DISTRIBUTIONS = [
|
|
9
9
|
{ rb_platform: 'x86_64-linux', tuple: %w(linux amd64) },
|
10
10
|
{ rb_platform: 'arm-linux', tuple: %w(linux arm) },
|
11
11
|
{ rb_platform: 'arm64-linux', tuple: %w(linux arm64) },
|
12
|
+
{ rb_platform: 'aarch64-linux', tuple: %w(linux arm64) },
|
12
13
|
{ rb_platform: 'ppc64le-linux', tuple: %w(linux ppc64le) },
|
13
14
|
{ rb_platform: 's390x-linux', tuple: %w(linux s390x) },
|
14
|
-
{ rb_platform: 'x86-mswin64',
|
15
|
+
{ rb_platform: 'x86-mswin64', tuple: %w(windows 386), ext: '.exe' },
|
15
16
|
{ rb_platform: 'x64-mswin64', tuple: %w(windows amd64), ext: '.exe' }
|
16
17
|
]
|
17
18
|
|
@@ -29,7 +30,11 @@ task :build do
|
|
29
30
|
tuple = distro[:tuple].join('/')
|
30
31
|
exe = "kubectl#{distro[:ext]}"
|
31
32
|
url = "https://dl.k8s.io/release/v#{KubectlRb::KUBECTL_VERSION}/bin/#{tuple}/#{exe}"
|
32
|
-
File.
|
33
|
+
vendored_exe = File.join('vendor', exe)
|
34
|
+
File.write(vendored_exe, URI.open(url).read)
|
35
|
+
|
36
|
+
# user rwx, group rx, world rx
|
37
|
+
File.chmod(0755, vendored_exe)
|
33
38
|
|
34
39
|
gemspec = eval(File.read('kubectl-rb.gemspec'))
|
35
40
|
gemspec.platform = distro[:rb_platform]
|
@@ -43,9 +48,7 @@ task :publish do
|
|
43
48
|
|
44
49
|
Dir.glob(File.join('pkg', "kubectl-rb-#{KubectlRb::VERSION}-*.gem")).each do |pkg|
|
45
50
|
puts "Publishing #{pkg}"
|
46
|
-
|
47
|
-
otp = STDIN.gets.strip
|
48
|
-
system("gem push -k rubygems --otp #{otp} #{pkg}")
|
51
|
+
system("gem push -k rubygems #{pkg}")
|
49
52
|
end
|
50
53
|
end
|
51
54
|
|
data/kubectl-rb.gemspec
CHANGED
@@ -9,7 +9,8 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.homepage = 'http://github.com/getkuby/kubectl-rb'
|
10
10
|
s.license = 'Apache-2.0'
|
11
11
|
|
12
|
-
s.
|
12
|
+
s.summary = 'Kubectl distributed as a Rubygem.'
|
13
|
+
s.description = 'The kubectl binary executable packaged and distributed as a Rubygem.'
|
13
14
|
|
14
15
|
s.platform = Gem::Platform::RUBY
|
15
16
|
|
data/lib/kubectl-rb/version.rb
CHANGED
data/vendor/kubectl
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kubectl-rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: arm64-darwin
|
6
6
|
authors:
|
7
7
|
- Cameron Dutro
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description: The kubectl binary executable packaged and distributed as a Rubygem.
|
14
14
|
email:
|
15
15
|
- camertron@gmail.com
|
16
16
|
executables: []
|
@@ -45,7 +45,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '0'
|
47
47
|
requirements: []
|
48
|
-
rubygems_version: 3.2.
|
48
|
+
rubygems_version: 3.2.22
|
49
49
|
signing_key:
|
50
50
|
specification_version: 4
|
51
51
|
summary: Kubectl distributed as a Rubygem.
|