dry-stack 0.1.1 → 0.1.3
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 +4 -4
- data/lib/dry-stack/command_compose.rb +0 -3
- data/lib/dry-stack/command_line.rb +4 -0
- data/lib/dry-stack/stack.rb +2 -2
- data/lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 516984772a050079922f9bb5382f61562454fc49079b478cf4f6ac58ba86fcf7
|
4
|
+
data.tar.gz: 55213cc08e7512c0aab51362fa12c9758090c3d16c4a341fb212f9ea8a963ddd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90bbba8c4cdc86faf47b285ef2af1c071e4101c18f80ee25471fab603f03ddcfa988ebbfd8bffec248b3944c792e8a42db24e792f35a97e543455967cf0f5d4a
|
7
|
+
data.tar.gz: f672f19d5a13377aee80d23d513147adb11c4a9f5814aac1e45c55b97a40f7ab2470b02c643b035391bfe389ced0b08ccbec17708fca22f85c6d88ca10b78d8c
|
@@ -5,9 +5,6 @@ Dry::CommandLine::COMMANDS[:to_compose] = Class.new do
|
|
5
5
|
_params = stack.options.merge params
|
6
6
|
yaml = stack.to_compose(_params ).lines[1..].join
|
7
7
|
$stdout.puts yaml
|
8
|
-
|
9
|
-
# substitute ENV variables
|
10
|
-
# _params[:'no-env'] ? $stdout.puts(yaml) : system("echo \"#{yaml.gsub("`", '\\\`')}\"")
|
11
8
|
end
|
12
9
|
|
13
10
|
def help = ['Print stack in docker compose format',
|
@@ -71,6 +71,7 @@ module Dry
|
|
71
71
|
o.on('', '--ingress', 'Generate ingress labels') { true }
|
72
72
|
o.on('', '--traefik', 'Generate traefik labels') { true }
|
73
73
|
o.on('', '--traefik-tls', 'Generate traefik tls labels') { true }
|
74
|
+
o.on('', '--tls-domain domain', 'Domain for the traefik labels')
|
74
75
|
o.on('', '--host-sed /from/to/', 'Sed ingress host /\\*/dev.*/')
|
75
76
|
o.on('-n', '--no-env', 'Deprecated') { $stderr.puts 'warning: deprecated option: -n' } # TODO: remove
|
76
77
|
o.on('-c', '--configuration name', 'Configuration name')
|
@@ -79,6 +80,9 @@ module Dry
|
|
79
80
|
o.on('-h', '--help') { puts o; exit }
|
80
81
|
o.parse! args, into: params
|
81
82
|
|
83
|
+
params.transform_keys!{_1.to_s.gsub('-','_').to_sym}
|
84
|
+
params[:traefik_tls] = true if params[:tls_domain]
|
85
|
+
|
82
86
|
raise 'Stack file not defined' if $stdin.tty? && !params[:stack]
|
83
87
|
|
84
88
|
command = args.shift || ''
|
data/lib/dry-stack/stack.rb
CHANGED
@@ -382,11 +382,11 @@ module Dry
|
|
382
382
|
yield if block_given?
|
383
383
|
end
|
384
384
|
|
385
|
-
def Configuration(name, opts = {}, &)
|
385
|
+
def Configuration(name, opts = {}, &b)
|
386
386
|
configuration = @configurations[name.to_sym] ||= {}
|
387
387
|
configuration.merge! opts
|
388
388
|
configuration.merge! block_function: -> {
|
389
|
-
instance_exec(&) if block_given? # https://rubyreferences.github.io/rubychanges/3.3.html#anonymous-parameters-forwarding-inside-blocks-are-disallowed
|
389
|
+
instance_exec(&b) if block_given? # https://rubyreferences.github.io/rubychanges/3.3.html#anonymous-parameters-forwarding-inside-blocks-are-disallowed
|
390
390
|
}
|
391
391
|
end
|
392
392
|
|
data/lib/version.rb
CHANGED