mirror of
https://github.com/grafana/grafana.git
synced 2024-12-25 08:21:46 -06:00
k8S: (Chore) Add arg to hack codegen to filter openapi generation (#81720)
This commit is contained in:
parent
312fdf9ce0
commit
959c80daf6
@ -29,6 +29,9 @@ if [[ "${UPDATE_API_KNOWN_VIOLATIONS:-}" == "true" ]]; then
|
||||
fi
|
||||
|
||||
for api_pkg in $(ls ./pkg/apis); do
|
||||
if [[ "${1-}" != "" && ${api_pkg} != $1 ]]; then
|
||||
continue
|
||||
fi
|
||||
for pkg_version in $(ls ./pkg/apis/${api_pkg}); do
|
||||
echo "Generating openapi package for ${api_pkg}, version=${pkg_version} ..."
|
||||
grafana::codegen::gen_openapi \
|
||||
|
Loading…
Reference in New Issue
Block a user