*: add resource validation
Co-Authored-By: Yann Hamon <yann.hamon@contentful.com> Co-Authored-By: Kemal Akkoyun <kakkoyun@gmail.com> Signed-off-by: paulfantom <pawel@krupa.net.pl>
This commit is contained in:
13
scripts/generate-schemas.sh
Executable file
13
scripts/generate-schemas.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIR="crdschemas"
|
||||
|
||||
# Go to git repository root
|
||||
cd ./$(git rev-parse --show-cdup)
|
||||
|
||||
rm -rf "$DIR"
|
||||
mkdir "$DIR"
|
||||
|
||||
for crd in vendor/prometheus-operator/*-crd.libsonnet; do
|
||||
jq '.spec.versions[0].schema.openAPIV3Schema' < "$crd" > "$DIR/$(basename "$crd" | sed 's/-crd.libsonnet/.json/')"
|
||||
done
|
||||
Reference in New Issue
Block a user