From dd0f340ff67e6c553fd8385fad531320f190e98f Mon Sep 17 00:00:00 2001 From: ianhundere <138915+ianhundere@users.noreply.github.com> Date: Tue, 28 Jan 2025 20:36:08 -0500 Subject: [PATCH] chore: adds default path certmaker certs to make file. Signed-off-by: ianhundere <138915+ianhundere@users.noreply.github.com> --- Makefile | 3 +++ README.md | 9 ++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c35fa397a..987de29d5 100644 --- a/Makefile +++ b/Makefile @@ -87,6 +87,9 @@ clean: ## Clean the workspace rm -rf dist rm -rf fulcio rm -rf certificate-maker + rm -rf root.pem + rm -rf intermediate.pem + rm -rf leaf.pem clean-gen: clean rm -rf $(shell find pkg/generated -iname "*.go") *.swagger.json diff --git a/README.md b/README.md index 68c475477..dc621825d 100644 --- a/README.md +++ b/README.md @@ -77,10 +77,13 @@ mygUY7Ii2zbdCdliiow= ### Certificate Maker -The Fulcio's Certificate Maker is a tool for creating Fulcio compliant certificate chains. It supports: +Certificate Maker is a tool for creating [Fulcio compliant certificate chains](docs/certificate-specification.md). It supports: -* Two-level chains (root -> leaf) -* Three-level chains (root -> intermediate -> leaf) +* Two-level chains: + * root → leaf + * root → intermediate +* Three-level chains: + * root → intermediate → leaf * Multiple KMS providers (AWS, Google Cloud, Azure, HashiCorp Vault) For detailed usage instructions and examples, see the [Certificate Maker documentation](docs/certificate-maker.md).