kube_cluster 0.6.0 → 0.8.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/kube_cluster.gemspec +1 -0
- 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/cloud_native_pg/helm.rb +27 -21
- 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/deployment_with_service.rb +152 -0
- data/lib/kube/cluster/standard/env_processing.rb +42 -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/standard/secret.rb +34 -0
- data/lib/kube/cluster/standard/service.rb +41 -0
- data/lib/kube/cluster/standard/volume_processing.rb +88 -0
- data/lib/kube/cluster/version.rb +1 -1
- data/lib/kube/cluster.rb +1 -0
- metadata +35 -2
- data/lib/kube/cluster/standard/cloud_native_pg.rb +0 -17
data/lib/kube/cluster.rb
CHANGED
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.8.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
|
|
|
@@ -195,8 +209,27 @@ files:
|
|
|
195
209
|
- lib/kube/cluster/resource/extensions/custom_resource_definition.rb
|
|
196
210
|
- lib/kube/cluster/resource/persistence.rb
|
|
197
211
|
- lib/kube/cluster/script_command.rb
|
|
198
|
-
- lib/kube/cluster/standard/
|
|
212
|
+
- lib/kube/cluster/standard/cdi/data_volume.rb
|
|
213
|
+
- lib/kube/cluster/standard/cloud_native_pg/cluster.rb
|
|
214
|
+
- lib/kube/cluster/standard/cloud_native_pg/database_with_external_secret.rb
|
|
215
|
+
- lib/kube/cluster/standard/cloud_native_pg/external_secret.rb
|
|
199
216
|
- lib/kube/cluster/standard/cloud_native_pg/helm.rb
|
|
217
|
+
- lib/kube/cluster/standard/config_map.rb
|
|
218
|
+
- lib/kube/cluster/standard/custom_resource_definition.rb
|
|
219
|
+
- lib/kube/cluster/standard/daemon_set.rb
|
|
220
|
+
- lib/kube/cluster/standard/deployment_with_service.rb
|
|
221
|
+
- lib/kube/cluster/standard/env_processing.rb
|
|
222
|
+
- lib/kube/cluster/standard/eso/external_secret.rb
|
|
223
|
+
- lib/kube/cluster/standard/forgejo/helm.rb
|
|
224
|
+
- lib/kube/cluster/standard/gateway_api/http_route.rb
|
|
225
|
+
- lib/kube/cluster/standard/job.rb
|
|
226
|
+
- lib/kube/cluster/standard/kube_virt/virtual_machine.rb
|
|
227
|
+
- lib/kube/cluster/standard/meta_controller/composite_controller.rb
|
|
228
|
+
- lib/kube/cluster/standard/meta_controller/decorator_controller.rb
|
|
229
|
+
- lib/kube/cluster/standard/persistent_volume_claim.rb
|
|
230
|
+
- lib/kube/cluster/standard/secret.rb
|
|
231
|
+
- lib/kube/cluster/standard/service.rb
|
|
232
|
+
- lib/kube/cluster/standard/volume_processing.rb
|
|
200
233
|
- lib/kube/cluster/version.rb
|
|
201
234
|
- lib/kube/cluster/version.rb.erb
|
|
202
235
|
- lib/kube/errors.rb
|