kube_schema 1.3.0 → 1.3.2
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 +3 -5
- data/bin/copy-schemas-over +1 -0
- data/examples/custom_crds.rb +117 -0
- data/examples/vcluster.rb +659 -0
- data/kube_schema.gemspec +0 -1
- data/lib/kube/monkey_patches.rb +8 -5
- data/lib/kube/schema/instance.rb +71 -22
- data/lib/kube/schema/resource.rb +7 -6
- data/lib/kube/schema/version.rb +1 -1
- data/lib/kube/schema.rb +71 -3
- data/schemas/loft-definitions.json +14010 -0
- metadata +4 -15
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kube_schema
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan K
|
|
@@ -79,20 +79,6 @@ dependencies:
|
|
|
79
79
|
- - "~>"
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
81
|
version: 2.5.0
|
|
82
|
-
- !ruby/object:Gem::Dependency
|
|
83
|
-
name: black_hole_struct
|
|
84
|
-
requirement: !ruby/object:Gem::Requirement
|
|
85
|
-
requirements:
|
|
86
|
-
- - "~>"
|
|
87
|
-
- !ruby/object:Gem::Version
|
|
88
|
-
version: 0.1.0
|
|
89
|
-
type: :runtime
|
|
90
|
-
prerelease: false
|
|
91
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
-
requirements:
|
|
93
|
-
- - "~>"
|
|
94
|
-
- !ruby/object:Gem::Version
|
|
95
|
-
version: 0.1.0
|
|
96
82
|
description: 'Abstractions are God. Let''s give praise and build on the shoulders
|
|
97
83
|
of giants by using objects to represent schemas. It was written and to it became.
|
|
98
84
|
|
|
@@ -125,7 +111,9 @@ files:
|
|
|
125
111
|
- bin/test
|
|
126
112
|
- bin/update-schema-index
|
|
127
113
|
- examples/basic.rb
|
|
114
|
+
- examples/custom_crds.rb
|
|
128
115
|
- examples/manifest.rb
|
|
116
|
+
- examples/vcluster.rb
|
|
129
117
|
- flake.lock
|
|
130
118
|
- flake.nix
|
|
131
119
|
- kube_schema.gemspec
|
|
@@ -138,6 +126,7 @@ files:
|
|
|
138
126
|
- lib/kube/schema/version.rb
|
|
139
127
|
- lib/kube/schema/version.rb.erb
|
|
140
128
|
- schemas/crd-definitions.json
|
|
129
|
+
- schemas/loft-definitions.json
|
|
141
130
|
- schemas/v1.19.json
|
|
142
131
|
- schemas/v1.20.json
|
|
143
132
|
- schemas/v1.21.json
|