mirror of
https://github.com/rancher/k3k.git
synced 2026-03-04 18:54:14 +00:00
* updated README, docs folder * updated architecture doc * shared and virtual architecture images * advanced usage * added crd-ref-docs tool for CRDs documentation * small fixes * requested changes * full example in advanced usage * removed security part * Apply suggestions from code review Co-authored-by: jpgouin <jp-gouin@hotmail.fr> --------- Co-authored-by: jpgouin <jp-gouin@hotmail.fr>
7 lines
259 B
Makefile
7 lines
259 B
Makefile
CRD_REF_DOCS_VER := v0.1.0
|
|
CRD_REF_DOCS := go run github.com/elastic/crd-ref-docs@$(CRD_REF_DOCS_VER)
|
|
|
|
.PHONY: generate
|
|
generate:
|
|
$(CRD_REF_DOCS) --config=config.yaml --renderer=markdown --source-path=../../pkg/apis/k3k.io/v1alpha1 --output-path=crd-docs.md
|