diff --git a/charts/scaffold/Chart.yaml b/charts/scaffold/Chart.yaml index ff5e334c..8bcf7299 100644 --- a/charts/scaffold/Chart.yaml +++ b/charts/scaffold/Chart.yaml @@ -4,7 +4,7 @@ description: Scaffolding the components of the sigstore architecture type: application -version: 0.6.38 +version: 0.6.39 keywords: - security - pki diff --git a/charts/scaffold/README.md b/charts/scaffold/README.md index 909befea..7541956b 100644 --- a/charts/scaffold/README.md +++ b/charts/scaffold/README.md @@ -2,7 +2,7 @@ -![Version: 0.6.38](https://img.shields.io/badge/Version-0.6.38-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.6.39](https://img.shields.io/badge/Version-0.6.39-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Scaffolding the components of the sigstore architecture @@ -102,11 +102,11 @@ helm uninstall [RELEASE_NAME] | tuf.namespace.create | bool | `true` | | | tuf.namespace.name | string | `"tuf-system"` | | | tuf.secrets.ctlog.name | string | `"ctlog-public-key"` | | -| tuf.secrets.ctlog.path | string | `"ctlog-pubkey"` | | +| tuf.secrets.ctlog.path | string | `"ctfe.pub"` | | | tuf.secrets.fulcio.name | string | `"fulcio-server-secret"` | | -| tuf.secrets.fulcio.path | string | `"fulcio-cert"` | | +| tuf.secrets.fulcio.path | string | `"fulcio_v1.crt.pem"` | | | tuf.secrets.rekor.name | string | `"rekor-public-key"` | | -| tuf.secrets.rekor.path | string | `"rekor-pubkey"` | | +| tuf.secrets.rekor.path | string | `"rekor.pub"` | | ---------------------------------------------- diff --git a/charts/scaffold/values.schema.json b/charts/scaffold/values.schema.json index f4184d70..3d4ab601 100644 --- a/charts/scaffold/values.schema.json +++ b/charts/scaffold/values.schema.json @@ -868,15 +868,15 @@ "secrets": { "rekor": { "name": "rekor-public-key", - "path": "rekor-pubkey" + "path": "rekor.pub" }, "fulcio": { "name": "fulcio-server-secret", - "path": "fulcio-cert" + "path": "fulcio_v1.crt.pem" }, "ctlog": { "name": "ctlog-public-key", - "path": "ctlog-pubkey" + "path": "ctfe.pub" } } }] diff --git a/charts/scaffold/values.yaml b/charts/scaffold/values.yaml index a486a711..cd32e6ab 100644 --- a/charts/scaffold/values.yaml +++ b/charts/scaffold/values.yaml @@ -73,13 +73,13 @@ tuf: secrets: rekor: name: rekor-public-key - path: rekor-pubkey + path: rekor.pub fulcio: name: fulcio-server-secret - path: fulcio-cert + path: fulcio_v1.crt.pem ctlog: name: ctlog-public-key - path: ctlog-pubkey + path: ctfe.pub copySecretJob: enabled: false