mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
## Summary Publish OAS docs to bump.sh on merge to `main` or `8.x` ## To reviewers * For now actual publication requires a manual step on bump.sh (so things aren't going live immediately) * Will get to serverless OAS docs next! ## Blockers * Address vulnerable deps before merging: https://github.com/bump-sh/cli/issues/583 --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
72 lines
No EOL
3.7 KiB
Makefile
72 lines
No EOL
3.7 KiB
Makefile
# ELASTICSEARCH CONFIDENTIAL
|
|
# __________________
|
|
#
|
|
# Copyright Elasticsearch B.V. All rights reserved.
|
|
#
|
|
# NOTICE: All information contained herein is, and remains
|
|
# the property of Elasticsearch B.V. and its suppliers, if any.
|
|
# The intellectual and technical concepts contained herein
|
|
# are proprietary to Elasticsearch B.V. and its suppliers and
|
|
# may be covered by U.S. and Foreign Patents, patents in
|
|
# process, and are protected by trade secret or copyright
|
|
# law. Dissemination of this information or reproduction of
|
|
# this material is strictly forbidden unless prior written
|
|
# permission is obtained from Elasticsearch B.V.
|
|
|
|
.PHONY: api-docs
|
|
api-docs: ## Generate Serverless and ESS Kibana OpenAPI bundles
|
|
$(MAKE) merge-api-docs
|
|
$(MAKE) api-docs-overlay
|
|
|
|
.PHONY: merge-api-docs
|
|
merge-api-docs: ## Merge Serverless and ESS Kibana OpenAPI bundles with kbn-openapi-bundler
|
|
@node scripts/merge_serverless_oas.js
|
|
@node scripts/merge_ess_oas.js
|
|
|
|
.PHONY: merge-api-docs-stateful
|
|
merge-api-docs-stateful: ## Merge only kibana.yaml
|
|
@node scripts/merge_ess_oas.js
|
|
|
|
.PHONY: merge-api-docs-serverless
|
|
merge-api-docs-serverless: ## Merge only kibana.serverless.yaml
|
|
@node scripts/merge_serverless_oas.js
|
|
|
|
.PHONY: api-docs-lint
|
|
api-docs-lint: ## Run redocly API docs linter
|
|
@npx @redocly/cli lint "output/*.yaml" --config "linters/redocly.yaml" --format stylish --max-problems 500
|
|
|
|
.PHONY: api-docs-lint-stateful
|
|
api-docs-lint-stateful: ## Run redocly API docs linter on kibana.yaml
|
|
@npx @redocly/cli lint "output/kibana.yaml" --config "linters/redocly.yaml" --format stylish --max-problems 500
|
|
|
|
.PHONY: api-docs-lint-serverless
|
|
api-docs-lint-serverless: ## Run redocly API docs linter on kibana.serverless.yaml
|
|
@npx @redocly/cli lint "output/kibana.serverless.yaml" --config "linters/redocly.yaml" --format stylish --max-problems 500
|
|
|
|
.PHONY: api-docs-overlay
|
|
api-docs-overlay: ## Apply all overlays
|
|
@npx bump-cli overlay "output/kibana.serverless.yaml" "overlays/kibana.overlays.serverless.yaml" > "output/kibana.serverless.tmp1.yaml"
|
|
@npx bump-cli overlay "output/kibana.serverless.tmp1.yaml" "overlays/alerting.overlays.yaml" > "output/kibana.serverless.tmp2.yaml"
|
|
@npx bump-cli overlay "output/kibana.serverless.tmp2.yaml" "overlays/connectors.overlays.yaml" > "output/kibana.serverless.tmp3.yaml"
|
|
@npx bump-cli overlay "output/kibana.serverless.tmp3.yaml" "overlays/kibana.overlays.shared.yaml" > "output/kibana.serverless.tmp4.yaml"
|
|
@npx bump-cli overlay "output/kibana.yaml" "overlays/kibana.overlays.yaml" > "output/kibana.tmp1.yaml"
|
|
@npx bump-cli overlay "output/kibana.tmp1.yaml" "overlays/alerting.overlays.yaml" > "output/kibana.tmp2.yaml"
|
|
@npx bump-cli overlay "output/kibana.tmp2.yaml" "overlays/connectors.overlays.yaml" > "output/kibana.tmp3.yaml"
|
|
@npx bump-cli overlay "output/kibana.tmp3.yaml" "overlays/kibana.overlays.shared.yaml" > "output/kibana.tmp4.yaml"
|
|
@npx @redocly/cli bundle output/kibana.serverless.tmp4.yaml --ext yaml -o output/kibana.serverless.yaml
|
|
@npx @redocly/cli bundle output/kibana.tmp4.yaml --ext yaml -o output/kibana.yaml
|
|
rm output/kibana.tmp*.yaml
|
|
rm output/kibana.serverless.tmp*.yaml
|
|
|
|
.PHONY: api-docs-preview
|
|
api-docs-preview: ## Generate a preview for kibana.yaml and kibana.serverless.yaml
|
|
@echo "Rendering stateful docs preview..."
|
|
@npx bump-cli preview "output/kibana.yaml"
|
|
@echo "Rendering serverless docs preview..."
|
|
@npx bump-cli preview "output/kibana.serverless.yaml"
|
|
|
|
help: ## Display help
|
|
@awk 'BEGIN {FS = ":.*##"; printf "Usage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
|
|
#------------- <https://suva.sh/posts/well-documented-makefiles> --------------
|
|
|
|
.DEFAULT_GOAL := help
|