mirror of
https://github.com/yannh/kubeconform.git
synced 2026-04-13 08:04:18 +00:00
Support for CRDs
This commit is contained in:
parent
f7bfd2c960
commit
b4995aa02c
11 changed files with 237 additions and 39 deletions
91
cmd/openapi2jsonschema/main.py
Executable file
91
cmd/openapi2jsonschema/main.py
Executable file
|
|
@ -0,0 +1,91 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import yaml
|
||||
import json
|
||||
|
||||
def iteritems(d):
|
||||
if hasattr(dict, "iteritems"):
|
||||
return d.iteritems()
|
||||
else:
|
||||
return iter(d.items())
|
||||
|
||||
|
||||
def additional_properties(data):
|
||||
"This recreates the behaviour of kubectl at https://github.com/kubernetes/kubernetes/blob/225b9119d6a8f03fcbe3cc3d590c261965d928d0/pkg/kubectl/validation/schema.go#L312"
|
||||
new = {}
|
||||
try:
|
||||
for k, v in iteritems(data):
|
||||
new_v = v
|
||||
if isinstance(v, dict):
|
||||
if "properties" in v:
|
||||
if "additionalProperties" not in v:
|
||||
v["additionalProperties"] = False
|
||||
new_v = additional_properties(v)
|
||||
else:
|
||||
new_v = v
|
||||
new[k] = new_v
|
||||
return new
|
||||
except AttributeError:
|
||||
return data
|
||||
|
||||
|
||||
def replace_int_or_string(data):
|
||||
new = {}
|
||||
try:
|
||||
for k, v in iteritems(data):
|
||||
new_v = v
|
||||
if isinstance(v, dict):
|
||||
if "format" in v and v["format"] == "int-or-string":
|
||||
new_v = {"oneOf": [{"type": "string"}, {"type": "integer"}]}
|
||||
else:
|
||||
new_v = replace_int_or_string(v)
|
||||
elif isinstance(v, list):
|
||||
new_v = list()
|
||||
for x in v:
|
||||
new_v.append(replace_int_or_string(x))
|
||||
else:
|
||||
new_v = v
|
||||
new[k] = new_v
|
||||
return new
|
||||
except AttributeError:
|
||||
return data
|
||||
|
||||
|
||||
def allow_null_optional_fields(data, parent=None, grand_parent=None, key=None):
|
||||
new = {}
|
||||
try:
|
||||
for k, v in iteritems(data):
|
||||
new_v = v
|
||||
if isinstance(v, dict):
|
||||
new_v = allow_null_optional_fields(v, data, parent, k)
|
||||
elif isinstance(v, list):
|
||||
new_v = list()
|
||||
for x in v:
|
||||
new_v.append(allow_null_optional_fields(x, v, parent, k))
|
||||
elif isinstance(v, str):
|
||||
is_non_null_type = k == "type" and v != "null"
|
||||
has_required_fields = grand_parent and "required" in grand_parent
|
||||
if is_non_null_type and not has_required_field:
|
||||
new_v = [v, "null"]
|
||||
new[k] = new_v
|
||||
return new
|
||||
except AttributeError:
|
||||
return data
|
||||
|
||||
|
||||
def append_no_duplicates(obj, key, value):
|
||||
"""
|
||||
Given a dictionary, lookup the given key, if it doesn't exist create a new array.
|
||||
Then check if the given value already exists in the array, if it doesn't add it.
|
||||
"""
|
||||
if key not in obj:
|
||||
obj[key] = []
|
||||
if value not in obj[key]:
|
||||
obj[key].append(value)
|
||||
|
||||
with open(r'synced_secrets.yaml') as f:
|
||||
y = yaml.load(f, Loader=yaml.SafeLoader)
|
||||
schema = y["spec"]["validation"]["openAPIV3Schema"]
|
||||
schema = additional_properties(schema)
|
||||
schema = replace_int_or_string(schema)
|
||||
print(json.dumps(schema))
|
||||
Loading…
Add table
Add a link
Reference in a new issue