kube_cluster 0.7.0 → 0.9.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 +4 -4
- data/Gemfile.lock +27 -1
- data/examples/02-manifest-with-middleware/manifest.rb +1 -1
- data/guides/middleware/readme.md +1 -1
- data/kube_cluster.gemspec +1 -0
- data/lib/kube/cluster/manifest.rb +7 -7
- data/lib/kube/cluster/middleware/namespace.rb +75 -71
- data/lib/kube/cluster/middleware/set_namespace.rb +38 -0
- data/lib/kube/cluster/middleware/set_reloader_auto.rb +36 -0
- data/lib/kube/cluster/middleware/stack.rb +1 -1
- data/lib/kube/cluster/standard/cdi/data_volume.rb +35 -0
- data/lib/kube/cluster/standard/cloud_native_pg/cluster.rb +27 -0
- data/lib/kube/cluster/standard/cloud_native_pg/database_with_external_secret.rb +44 -0
- data/lib/kube/cluster/standard/cloud_native_pg/external_secret.rb +57 -0
- data/lib/kube/cluster/standard/config_map.rb +45 -0
- data/lib/kube/cluster/standard/custom_resource_definition.rb +82 -0
- data/lib/kube/cluster/standard/daemon_set.rb +70 -0
- data/lib/kube/cluster/standard/eso/external_secret.rb +96 -0
- data/lib/kube/cluster/standard/forgejo/helm.rb +64 -0
- data/lib/kube/cluster/standard/gateway_api/http_route.rb +33 -0
- data/lib/kube/cluster/standard/job.rb +50 -0
- data/lib/kube/cluster/standard/kube_virt/virtual_machine.rb +36 -0
- data/lib/kube/cluster/standard/meta_controller/composite_controller.rb +80 -0
- data/lib/kube/cluster/standard/meta_controller/decorator_controller.rb +79 -0
- data/lib/kube/cluster/standard/persistent_volume_claim.rb +37 -0
- data/lib/kube/cluster/version.rb +1 -1
- data/lib/kube/cluster.rb +1 -0
- metadata +32 -2
- data/lib/kube/cluster/standard/cloud_native_pg.rb +0 -17
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kube_cluster
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan K
|
|
@@ -79,6 +79,20 @@ dependencies:
|
|
|
79
79
|
- - "~>"
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
81
|
version: '2.0'
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: activesupport
|
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - "~>"
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '8.0'
|
|
89
|
+
type: :runtime
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - "~>"
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '8.0'
|
|
82
96
|
description: 'OOP abstraction that allows you to deploy and manage kubernetes resources
|
|
83
97
|
using Ruby.
|
|
84
98
|
|
|
@@ -188,6 +202,8 @@ files:
|
|
|
188
202
|
- lib/kube/cluster/middleware/resource_preset.rb
|
|
189
203
|
- lib/kube/cluster/middleware/security_context.rb
|
|
190
204
|
- lib/kube/cluster/middleware/service_for_deployment.rb
|
|
205
|
+
- lib/kube/cluster/middleware/set_namespace.rb
|
|
206
|
+
- lib/kube/cluster/middleware/set_reloader_auto.rb
|
|
191
207
|
- lib/kube/cluster/middleware/stack.rb
|
|
192
208
|
- lib/kube/cluster/resource.rb
|
|
193
209
|
- lib/kube/cluster/resource/dirty_tracking.rb
|
|
@@ -195,10 +211,24 @@ files:
|
|
|
195
211
|
- lib/kube/cluster/resource/extensions/custom_resource_definition.rb
|
|
196
212
|
- lib/kube/cluster/resource/persistence.rb
|
|
197
213
|
- lib/kube/cluster/script_command.rb
|
|
198
|
-
- lib/kube/cluster/standard/
|
|
214
|
+
- lib/kube/cluster/standard/cdi/data_volume.rb
|
|
215
|
+
- lib/kube/cluster/standard/cloud_native_pg/cluster.rb
|
|
216
|
+
- lib/kube/cluster/standard/cloud_native_pg/database_with_external_secret.rb
|
|
217
|
+
- lib/kube/cluster/standard/cloud_native_pg/external_secret.rb
|
|
199
218
|
- lib/kube/cluster/standard/cloud_native_pg/helm.rb
|
|
219
|
+
- lib/kube/cluster/standard/config_map.rb
|
|
220
|
+
- lib/kube/cluster/standard/custom_resource_definition.rb
|
|
221
|
+
- lib/kube/cluster/standard/daemon_set.rb
|
|
200
222
|
- lib/kube/cluster/standard/deployment_with_service.rb
|
|
201
223
|
- lib/kube/cluster/standard/env_processing.rb
|
|
224
|
+
- lib/kube/cluster/standard/eso/external_secret.rb
|
|
225
|
+
- lib/kube/cluster/standard/forgejo/helm.rb
|
|
226
|
+
- lib/kube/cluster/standard/gateway_api/http_route.rb
|
|
227
|
+
- lib/kube/cluster/standard/job.rb
|
|
228
|
+
- lib/kube/cluster/standard/kube_virt/virtual_machine.rb
|
|
229
|
+
- lib/kube/cluster/standard/meta_controller/composite_controller.rb
|
|
230
|
+
- lib/kube/cluster/standard/meta_controller/decorator_controller.rb
|
|
231
|
+
- lib/kube/cluster/standard/persistent_volume_claim.rb
|
|
202
232
|
- lib/kube/cluster/standard/secret.rb
|
|
203
233
|
- lib/kube/cluster/standard/service.rb
|
|
204
234
|
- lib/kube/cluster/standard/volume_processing.rb
|