kamal-insecure 2.7.0
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +13 -0
- data/bin/kamal +18 -0
- data/lib/kamal/cli/accessory.rb +313 -0
- data/lib/kamal/cli/alias/command.rb +10 -0
- data/lib/kamal/cli/app/assets.rb +24 -0
- data/lib/kamal/cli/app/boot.rb +126 -0
- data/lib/kamal/cli/app/error_pages.rb +33 -0
- data/lib/kamal/cli/app/ssl_certificates.rb +28 -0
- data/lib/kamal/cli/app.rb +400 -0
- data/lib/kamal/cli/base.rb +223 -0
- data/lib/kamal/cli/build/clone.rb +61 -0
- data/lib/kamal/cli/build.rb +204 -0
- data/lib/kamal/cli/healthcheck/barrier.rb +33 -0
- data/lib/kamal/cli/healthcheck/error.rb +2 -0
- data/lib/kamal/cli/healthcheck/poller.rb +42 -0
- data/lib/kamal/cli/lock.rb +45 -0
- data/lib/kamal/cli/main.rb +277 -0
- data/lib/kamal/cli/proxy.rb +290 -0
- data/lib/kamal/cli/prune.rb +34 -0
- data/lib/kamal/cli/registry.rb +19 -0
- data/lib/kamal/cli/secrets.rb +49 -0
- data/lib/kamal/cli/server.rb +50 -0
- data/lib/kamal/cli/templates/deploy.yml +101 -0
- data/lib/kamal/cli/templates/sample_hooks/docker-setup.sample +3 -0
- data/lib/kamal/cli/templates/sample_hooks/post-app-boot.sample +3 -0
- data/lib/kamal/cli/templates/sample_hooks/post-deploy.sample +14 -0
- data/lib/kamal/cli/templates/sample_hooks/post-proxy-reboot.sample +3 -0
- data/lib/kamal/cli/templates/sample_hooks/pre-app-boot.sample +3 -0
- data/lib/kamal/cli/templates/sample_hooks/pre-build.sample +51 -0
- data/lib/kamal/cli/templates/sample_hooks/pre-connect.sample +47 -0
- data/lib/kamal/cli/templates/sample_hooks/pre-deploy.sample +122 -0
- data/lib/kamal/cli/templates/sample_hooks/pre-proxy-reboot.sample +3 -0
- data/lib/kamal/cli/templates/secrets +17 -0
- data/lib/kamal/cli.rb +9 -0
- data/lib/kamal/commander/specifics.rb +62 -0
- data/lib/kamal/commander.rb +167 -0
- data/lib/kamal/commands/accessory/proxy.rb +16 -0
- data/lib/kamal/commands/accessory.rb +113 -0
- data/lib/kamal/commands/app/assets.rb +51 -0
- data/lib/kamal/commands/app/containers.rb +31 -0
- data/lib/kamal/commands/app/error_pages.rb +9 -0
- data/lib/kamal/commands/app/execution.rb +32 -0
- data/lib/kamal/commands/app/images.rb +13 -0
- data/lib/kamal/commands/app/logging.rb +28 -0
- data/lib/kamal/commands/app/proxy.rb +32 -0
- data/lib/kamal/commands/app.rb +124 -0
- data/lib/kamal/commands/auditor.rb +39 -0
- data/lib/kamal/commands/base.rb +134 -0
- data/lib/kamal/commands/builder/base.rb +124 -0
- data/lib/kamal/commands/builder/clone.rb +31 -0
- data/lib/kamal/commands/builder/cloud.rb +22 -0
- data/lib/kamal/commands/builder/hybrid.rb +21 -0
- data/lib/kamal/commands/builder/local.rb +14 -0
- data/lib/kamal/commands/builder/pack.rb +46 -0
- data/lib/kamal/commands/builder/remote.rb +63 -0
- data/lib/kamal/commands/builder.rb +48 -0
- data/lib/kamal/commands/docker.rb +34 -0
- data/lib/kamal/commands/hook.rb +20 -0
- data/lib/kamal/commands/lock.rb +70 -0
- data/lib/kamal/commands/proxy.rb +127 -0
- data/lib/kamal/commands/prune.rb +38 -0
- data/lib/kamal/commands/registry.rb +16 -0
- data/lib/kamal/commands/server.rb +15 -0
- data/lib/kamal/commands.rb +2 -0
- data/lib/kamal/configuration/accessory.rb +241 -0
- data/lib/kamal/configuration/alias.rb +15 -0
- data/lib/kamal/configuration/boot.rb +25 -0
- data/lib/kamal/configuration/builder.rb +211 -0
- data/lib/kamal/configuration/docs/accessory.yml +128 -0
- data/lib/kamal/configuration/docs/alias.yml +26 -0
- data/lib/kamal/configuration/docs/boot.yml +19 -0
- data/lib/kamal/configuration/docs/builder.yml +132 -0
- data/lib/kamal/configuration/docs/configuration.yml +184 -0
- data/lib/kamal/configuration/docs/env.yml +116 -0
- data/lib/kamal/configuration/docs/logging.yml +21 -0
- data/lib/kamal/configuration/docs/proxy.yml +164 -0
- data/lib/kamal/configuration/docs/registry.yml +56 -0
- data/lib/kamal/configuration/docs/role.yml +53 -0
- data/lib/kamal/configuration/docs/servers.yml +27 -0
- data/lib/kamal/configuration/docs/ssh.yml +70 -0
- data/lib/kamal/configuration/docs/sshkit.yml +23 -0
- data/lib/kamal/configuration/env/tag.rb +13 -0
- data/lib/kamal/configuration/env.rb +38 -0
- data/lib/kamal/configuration/logging.rb +33 -0
- data/lib/kamal/configuration/proxy/boot.rb +129 -0
- data/lib/kamal/configuration/proxy.rb +124 -0
- data/lib/kamal/configuration/registry.rb +32 -0
- data/lib/kamal/configuration/role.rb +222 -0
- data/lib/kamal/configuration/servers.rb +25 -0
- data/lib/kamal/configuration/ssh.rb +57 -0
- data/lib/kamal/configuration/sshkit.rb +22 -0
- data/lib/kamal/configuration/validation.rb +27 -0
- data/lib/kamal/configuration/validator/accessory.rb +13 -0
- data/lib/kamal/configuration/validator/alias.rb +15 -0
- data/lib/kamal/configuration/validator/builder.rb +15 -0
- data/lib/kamal/configuration/validator/configuration.rb +6 -0
- data/lib/kamal/configuration/validator/env.rb +54 -0
- data/lib/kamal/configuration/validator/proxy.rb +25 -0
- data/lib/kamal/configuration/validator/registry.rb +25 -0
- data/lib/kamal/configuration/validator/role.rb +13 -0
- data/lib/kamal/configuration/validator/servers.rb +7 -0
- data/lib/kamal/configuration/validator.rb +191 -0
- data/lib/kamal/configuration/volume.rb +22 -0
- data/lib/kamal/configuration.rb +372 -0
- data/lib/kamal/docker.rb +30 -0
- data/lib/kamal/env_file.rb +44 -0
- data/lib/kamal/git.rb +37 -0
- data/lib/kamal/secrets/adapters/aws_secrets_manager.rb +51 -0
- data/lib/kamal/secrets/adapters/base.rb +33 -0
- data/lib/kamal/secrets/adapters/bitwarden.rb +81 -0
- data/lib/kamal/secrets/adapters/bitwarden_secrets_manager.rb +66 -0
- data/lib/kamal/secrets/adapters/doppler.rb +57 -0
- data/lib/kamal/secrets/adapters/enpass.rb +71 -0
- data/lib/kamal/secrets/adapters/gcp_secret_manager.rb +112 -0
- data/lib/kamal/secrets/adapters/last_pass.rb +40 -0
- data/lib/kamal/secrets/adapters/one_password.rb +104 -0
- data/lib/kamal/secrets/adapters/passbolt.rb +130 -0
- data/lib/kamal/secrets/adapters/test.rb +14 -0
- data/lib/kamal/secrets/adapters.rb +16 -0
- data/lib/kamal/secrets/dotenv/inline_command_substitution.rb +33 -0
- data/lib/kamal/secrets.rb +42 -0
- data/lib/kamal/sshkit_with_ext.rb +142 -0
- data/lib/kamal/tags.rb +40 -0
- data/lib/kamal/utils/sensitive.rb +20 -0
- data/lib/kamal/utils.rb +110 -0
- data/lib/kamal/version.rb +3 -0
- data/lib/kamal.rb +14 -0
- metadata +365 -0
metadata
ADDED
@@ -0,0 +1,365 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: kamal-insecure
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.7.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- David Heinemeier Hansson
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-08-08 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '7.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '7.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: sshkit
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.23.0
|
34
|
+
- - "<"
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '2.0'
|
37
|
+
type: :runtime
|
38
|
+
prerelease: false
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 1.23.0
|
44
|
+
- - "<"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '2.0'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: net-ssh
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '7.3'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '7.3'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: thor
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '1.3'
|
68
|
+
type: :runtime
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '1.3'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: dotenv
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '3.1'
|
82
|
+
type: :runtime
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "~>"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '3.1'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: zeitwerk
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: 2.6.18
|
96
|
+
- - "<"
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '3.0'
|
99
|
+
type: :runtime
|
100
|
+
prerelease: false
|
101
|
+
version_requirements: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - ">="
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: 2.6.18
|
106
|
+
- - "<"
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '3.0'
|
109
|
+
- !ruby/object:Gem::Dependency
|
110
|
+
name: ed25519
|
111
|
+
requirement: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - "~>"
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '1.4'
|
116
|
+
type: :runtime
|
117
|
+
prerelease: false
|
118
|
+
version_requirements: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - "~>"
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '1.4'
|
123
|
+
- !ruby/object:Gem::Dependency
|
124
|
+
name: bcrypt_pbkdf
|
125
|
+
requirement: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - "~>"
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '1.0'
|
130
|
+
type: :runtime
|
131
|
+
prerelease: false
|
132
|
+
version_requirements: !ruby/object:Gem::Requirement
|
133
|
+
requirements:
|
134
|
+
- - "~>"
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: '1.0'
|
137
|
+
- !ruby/object:Gem::Dependency
|
138
|
+
name: concurrent-ruby
|
139
|
+
requirement: !ruby/object:Gem::Requirement
|
140
|
+
requirements:
|
141
|
+
- - "~>"
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: '1.2'
|
144
|
+
type: :runtime
|
145
|
+
prerelease: false
|
146
|
+
version_requirements: !ruby/object:Gem::Requirement
|
147
|
+
requirements:
|
148
|
+
- - "~>"
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: '1.2'
|
151
|
+
- !ruby/object:Gem::Dependency
|
152
|
+
name: base64
|
153
|
+
requirement: !ruby/object:Gem::Requirement
|
154
|
+
requirements:
|
155
|
+
- - "~>"
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0.2'
|
158
|
+
type: :runtime
|
159
|
+
prerelease: false
|
160
|
+
version_requirements: !ruby/object:Gem::Requirement
|
161
|
+
requirements:
|
162
|
+
- - "~>"
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '0.2'
|
165
|
+
- !ruby/object:Gem::Dependency
|
166
|
+
name: debug
|
167
|
+
requirement: !ruby/object:Gem::Requirement
|
168
|
+
requirements:
|
169
|
+
- - ">="
|
170
|
+
- !ruby/object:Gem::Version
|
171
|
+
version: '0'
|
172
|
+
type: :development
|
173
|
+
prerelease: false
|
174
|
+
version_requirements: !ruby/object:Gem::Requirement
|
175
|
+
requirements:
|
176
|
+
- - ">="
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: '0'
|
179
|
+
- !ruby/object:Gem::Dependency
|
180
|
+
name: mocha
|
181
|
+
requirement: !ruby/object:Gem::Requirement
|
182
|
+
requirements:
|
183
|
+
- - ">="
|
184
|
+
- !ruby/object:Gem::Version
|
185
|
+
version: '0'
|
186
|
+
type: :development
|
187
|
+
prerelease: false
|
188
|
+
version_requirements: !ruby/object:Gem::Requirement
|
189
|
+
requirements:
|
190
|
+
- - ">="
|
191
|
+
- !ruby/object:Gem::Version
|
192
|
+
version: '0'
|
193
|
+
- !ruby/object:Gem::Dependency
|
194
|
+
name: railties
|
195
|
+
requirement: !ruby/object:Gem::Requirement
|
196
|
+
requirements:
|
197
|
+
- - ">="
|
198
|
+
- !ruby/object:Gem::Version
|
199
|
+
version: '0'
|
200
|
+
type: :development
|
201
|
+
prerelease: false
|
202
|
+
version_requirements: !ruby/object:Gem::Requirement
|
203
|
+
requirements:
|
204
|
+
- - ">="
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
version: '0'
|
207
|
+
description:
|
208
|
+
email: dhh@hey.com
|
209
|
+
executables:
|
210
|
+
- kamal
|
211
|
+
extensions: []
|
212
|
+
extra_rdoc_files: []
|
213
|
+
files:
|
214
|
+
- MIT-LICENSE
|
215
|
+
- README.md
|
216
|
+
- bin/kamal
|
217
|
+
- lib/kamal.rb
|
218
|
+
- lib/kamal/cli.rb
|
219
|
+
- lib/kamal/cli/accessory.rb
|
220
|
+
- lib/kamal/cli/alias/command.rb
|
221
|
+
- lib/kamal/cli/app.rb
|
222
|
+
- lib/kamal/cli/app/assets.rb
|
223
|
+
- lib/kamal/cli/app/boot.rb
|
224
|
+
- lib/kamal/cli/app/error_pages.rb
|
225
|
+
- lib/kamal/cli/app/ssl_certificates.rb
|
226
|
+
- lib/kamal/cli/base.rb
|
227
|
+
- lib/kamal/cli/build.rb
|
228
|
+
- lib/kamal/cli/build/clone.rb
|
229
|
+
- lib/kamal/cli/healthcheck/barrier.rb
|
230
|
+
- lib/kamal/cli/healthcheck/error.rb
|
231
|
+
- lib/kamal/cli/healthcheck/poller.rb
|
232
|
+
- lib/kamal/cli/lock.rb
|
233
|
+
- lib/kamal/cli/main.rb
|
234
|
+
- lib/kamal/cli/proxy.rb
|
235
|
+
- lib/kamal/cli/prune.rb
|
236
|
+
- lib/kamal/cli/registry.rb
|
237
|
+
- lib/kamal/cli/secrets.rb
|
238
|
+
- lib/kamal/cli/server.rb
|
239
|
+
- lib/kamal/cli/templates/deploy.yml
|
240
|
+
- lib/kamal/cli/templates/sample_hooks/docker-setup.sample
|
241
|
+
- lib/kamal/cli/templates/sample_hooks/post-app-boot.sample
|
242
|
+
- lib/kamal/cli/templates/sample_hooks/post-deploy.sample
|
243
|
+
- lib/kamal/cli/templates/sample_hooks/post-proxy-reboot.sample
|
244
|
+
- lib/kamal/cli/templates/sample_hooks/pre-app-boot.sample
|
245
|
+
- lib/kamal/cli/templates/sample_hooks/pre-build.sample
|
246
|
+
- lib/kamal/cli/templates/sample_hooks/pre-connect.sample
|
247
|
+
- lib/kamal/cli/templates/sample_hooks/pre-deploy.sample
|
248
|
+
- lib/kamal/cli/templates/sample_hooks/pre-proxy-reboot.sample
|
249
|
+
- lib/kamal/cli/templates/secrets
|
250
|
+
- lib/kamal/commander.rb
|
251
|
+
- lib/kamal/commander/specifics.rb
|
252
|
+
- lib/kamal/commands.rb
|
253
|
+
- lib/kamal/commands/accessory.rb
|
254
|
+
- lib/kamal/commands/accessory/proxy.rb
|
255
|
+
- lib/kamal/commands/app.rb
|
256
|
+
- lib/kamal/commands/app/assets.rb
|
257
|
+
- lib/kamal/commands/app/containers.rb
|
258
|
+
- lib/kamal/commands/app/error_pages.rb
|
259
|
+
- lib/kamal/commands/app/execution.rb
|
260
|
+
- lib/kamal/commands/app/images.rb
|
261
|
+
- lib/kamal/commands/app/logging.rb
|
262
|
+
- lib/kamal/commands/app/proxy.rb
|
263
|
+
- lib/kamal/commands/auditor.rb
|
264
|
+
- lib/kamal/commands/base.rb
|
265
|
+
- lib/kamal/commands/builder.rb
|
266
|
+
- lib/kamal/commands/builder/base.rb
|
267
|
+
- lib/kamal/commands/builder/clone.rb
|
268
|
+
- lib/kamal/commands/builder/cloud.rb
|
269
|
+
- lib/kamal/commands/builder/hybrid.rb
|
270
|
+
- lib/kamal/commands/builder/local.rb
|
271
|
+
- lib/kamal/commands/builder/pack.rb
|
272
|
+
- lib/kamal/commands/builder/remote.rb
|
273
|
+
- lib/kamal/commands/docker.rb
|
274
|
+
- lib/kamal/commands/hook.rb
|
275
|
+
- lib/kamal/commands/lock.rb
|
276
|
+
- lib/kamal/commands/proxy.rb
|
277
|
+
- lib/kamal/commands/prune.rb
|
278
|
+
- lib/kamal/commands/registry.rb
|
279
|
+
- lib/kamal/commands/server.rb
|
280
|
+
- lib/kamal/configuration.rb
|
281
|
+
- lib/kamal/configuration/accessory.rb
|
282
|
+
- lib/kamal/configuration/alias.rb
|
283
|
+
- lib/kamal/configuration/boot.rb
|
284
|
+
- lib/kamal/configuration/builder.rb
|
285
|
+
- lib/kamal/configuration/docs/accessory.yml
|
286
|
+
- lib/kamal/configuration/docs/alias.yml
|
287
|
+
- lib/kamal/configuration/docs/boot.yml
|
288
|
+
- lib/kamal/configuration/docs/builder.yml
|
289
|
+
- lib/kamal/configuration/docs/configuration.yml
|
290
|
+
- lib/kamal/configuration/docs/env.yml
|
291
|
+
- lib/kamal/configuration/docs/logging.yml
|
292
|
+
- lib/kamal/configuration/docs/proxy.yml
|
293
|
+
- lib/kamal/configuration/docs/registry.yml
|
294
|
+
- lib/kamal/configuration/docs/role.yml
|
295
|
+
- lib/kamal/configuration/docs/servers.yml
|
296
|
+
- lib/kamal/configuration/docs/ssh.yml
|
297
|
+
- lib/kamal/configuration/docs/sshkit.yml
|
298
|
+
- lib/kamal/configuration/env.rb
|
299
|
+
- lib/kamal/configuration/env/tag.rb
|
300
|
+
- lib/kamal/configuration/logging.rb
|
301
|
+
- lib/kamal/configuration/proxy.rb
|
302
|
+
- lib/kamal/configuration/proxy/boot.rb
|
303
|
+
- lib/kamal/configuration/registry.rb
|
304
|
+
- lib/kamal/configuration/role.rb
|
305
|
+
- lib/kamal/configuration/servers.rb
|
306
|
+
- lib/kamal/configuration/ssh.rb
|
307
|
+
- lib/kamal/configuration/sshkit.rb
|
308
|
+
- lib/kamal/configuration/validation.rb
|
309
|
+
- lib/kamal/configuration/validator.rb
|
310
|
+
- lib/kamal/configuration/validator/accessory.rb
|
311
|
+
- lib/kamal/configuration/validator/alias.rb
|
312
|
+
- lib/kamal/configuration/validator/builder.rb
|
313
|
+
- lib/kamal/configuration/validator/configuration.rb
|
314
|
+
- lib/kamal/configuration/validator/env.rb
|
315
|
+
- lib/kamal/configuration/validator/proxy.rb
|
316
|
+
- lib/kamal/configuration/validator/registry.rb
|
317
|
+
- lib/kamal/configuration/validator/role.rb
|
318
|
+
- lib/kamal/configuration/validator/servers.rb
|
319
|
+
- lib/kamal/configuration/volume.rb
|
320
|
+
- lib/kamal/docker.rb
|
321
|
+
- lib/kamal/env_file.rb
|
322
|
+
- lib/kamal/git.rb
|
323
|
+
- lib/kamal/secrets.rb
|
324
|
+
- lib/kamal/secrets/adapters.rb
|
325
|
+
- lib/kamal/secrets/adapters/aws_secrets_manager.rb
|
326
|
+
- lib/kamal/secrets/adapters/base.rb
|
327
|
+
- lib/kamal/secrets/adapters/bitwarden.rb
|
328
|
+
- lib/kamal/secrets/adapters/bitwarden_secrets_manager.rb
|
329
|
+
- lib/kamal/secrets/adapters/doppler.rb
|
330
|
+
- lib/kamal/secrets/adapters/enpass.rb
|
331
|
+
- lib/kamal/secrets/adapters/gcp_secret_manager.rb
|
332
|
+
- lib/kamal/secrets/adapters/last_pass.rb
|
333
|
+
- lib/kamal/secrets/adapters/one_password.rb
|
334
|
+
- lib/kamal/secrets/adapters/passbolt.rb
|
335
|
+
- lib/kamal/secrets/adapters/test.rb
|
336
|
+
- lib/kamal/secrets/dotenv/inline_command_substitution.rb
|
337
|
+
- lib/kamal/sshkit_with_ext.rb
|
338
|
+
- lib/kamal/tags.rb
|
339
|
+
- lib/kamal/utils.rb
|
340
|
+
- lib/kamal/utils/sensitive.rb
|
341
|
+
- lib/kamal/version.rb
|
342
|
+
homepage: https://github.com/thr3a/kamal-insecure
|
343
|
+
licenses:
|
344
|
+
- MIT
|
345
|
+
metadata: {}
|
346
|
+
post_install_message:
|
347
|
+
rdoc_options: []
|
348
|
+
require_paths:
|
349
|
+
- lib
|
350
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
351
|
+
requirements:
|
352
|
+
- - ">="
|
353
|
+
- !ruby/object:Gem::Version
|
354
|
+
version: '0'
|
355
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
356
|
+
requirements:
|
357
|
+
- - ">="
|
358
|
+
- !ruby/object:Gem::Version
|
359
|
+
version: '0'
|
360
|
+
requirements: []
|
361
|
+
rubygems_version: 3.5.11
|
362
|
+
signing_key:
|
363
|
+
specification_version: 4
|
364
|
+
summary: Deploy web apps in containers to servers running Docker with zero downtime.
|
365
|
+
test_files: []
|