devfile 0.0.23.pre.alpha1-arm64-darwin → 0.0.24.pre.alpha1-arm64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/devfile +0 -0
- data/ext/devfile.go +1 -1
- data/ext/go.mod +2 -2
- data/lib/devfile.rb +10 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5e0895bc1c3febab389a816be090748875222497b9600adc03b5423613b1512
|
4
|
+
data.tar.gz: 1b84075b0bfb85ab1dc2ba10449d22b09e2ff3da09949489abf9d90df271ed8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7852b41e0d9c0ccc7b22c3d8e8fbe614ef36f49ce7e1737d84b67cdadcfd7d2d697745f28868d01131763d565a618b03c55fcf7519da55fe2031dc5897228c7b
|
7
|
+
data.tar.gz: 3766e3bbf21cf307ac870839baf94366b19cffadb02fe159ddbfebf51ed091dcb5a60a096314ebc2dcb0eaae3c931bfa772ff9fbb849f6d2cc86f6341301c24c
|
data/bin/devfile
CHANGED
Binary file
|
data/ext/devfile.go
CHANGED
@@ -306,7 +306,7 @@ func parseDevfile(content string) (Devfile, error) {
|
|
306
306
|
Data: []byte(content),
|
307
307
|
}
|
308
308
|
// TODO: figure out how to handle warnings
|
309
|
-
// https://gitlab.com/gitlab-org/
|
309
|
+
// https://gitlab.com/gitlab-org/ruby/gems/devfile-gem/-/issues/6
|
310
310
|
devfileObj, _, err := devfile.ParseDevfileAndValidate(parserArgs)
|
311
311
|
return Devfile{
|
312
312
|
devfileObj: devfileObj,
|
data/ext/go.mod
CHANGED
data/lib/devfile.rb
CHANGED
@@ -9,6 +9,8 @@ module Devfile
|
|
9
9
|
# Set of services to parse a devfile and output k8s manifests
|
10
10
|
class Parser
|
11
11
|
FILE_PATH = File.expand_path('./../bin/devfile', File.dirname(__FILE__))
|
12
|
+
DEVFILE_GEMSPEC = Gem.loaded_specs['devfile']
|
13
|
+
SYSTEM_PLATFORM = "#{Gem::Platform.local.cpu}-#{Gem::Platform.local.os}"
|
12
14
|
|
13
15
|
class << self
|
14
16
|
def get_deployment(devfile, name, namespace, labels, annotations, replicas)
|
@@ -38,12 +40,20 @@ module Devfile
|
|
38
40
|
private
|
39
41
|
|
40
42
|
def call(*cmd)
|
43
|
+
warn_for_ruby_platform
|
44
|
+
|
41
45
|
stdout, stderr, status = Open3.capture3({}, FILE_PATH, *cmd.map(&:to_s))
|
42
46
|
|
43
47
|
raise(CliError, stderr) unless status.success?
|
44
48
|
|
45
49
|
stdout
|
46
50
|
end
|
51
|
+
|
52
|
+
def warn_for_ruby_platform
|
53
|
+
return unless DEVFILE_GEMSPEC && DEVFILE_GEMSPEC.platform == 'ruby' && SYSTEM_PLATFORM != 'arm64-darwin'
|
54
|
+
|
55
|
+
warn "devfile-gem only supports os: darwin and architecture: arm64 for 'ruby' platform"
|
56
|
+
end
|
47
57
|
end
|
48
58
|
end
|
49
59
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devfile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.24.pre.alpha1
|
5
5
|
platform: arm64-darwin
|
6
6
|
authors:
|
7
7
|
- GitLab
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Library used to generate kubernetes manifests from a Devfile.
|
14
14
|
email:
|
@@ -30,8 +30,8 @@ homepage: https://gitlab.com
|
|
30
30
|
licenses:
|
31
31
|
- MIT
|
32
32
|
metadata:
|
33
|
-
source_code_uri: https://gitlab.com/gitlab-org/
|
34
|
-
post_install_message:
|
33
|
+
source_code_uri: https://gitlab.com/gitlab-org/ruby/gems/devfile-gem
|
34
|
+
post_install_message:
|
35
35
|
rdoc_options: []
|
36
36
|
require_paths:
|
37
37
|
- lib
|
@@ -47,7 +47,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
47
47
|
version: 1.3.1
|
48
48
|
requirements: []
|
49
49
|
rubygems_version: 3.4.4
|
50
|
-
signing_key:
|
50
|
+
signing_key:
|
51
51
|
specification_version: 4
|
52
52
|
summary: Parse and generate kubernetes manifests from a Devfile
|
53
53
|
test_files: []
|