Skip to content

Commit 13a46a8

Browse files
improve naming scheme for extrernal credential config
Co-authored-by: saisatish karra <[email protected]> Signed-off-by: Wayne Starr <[email protected]>
1 parent 41c00ed commit 13a46a8

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

charts/fulcio/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: |
55
66
type: application
77

8-
version: 2.4.2
8+
version: 2.4.0
99
appVersion: 1.5.1
1010

1111
keywords:

charts/fulcio/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- This README.md is generated. Please edit README.md.gotmpl -->
44

5-
![Version: 2.4.2](https://img.shields.io/badge/Version-2.4.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.5.1](https://img.shields.io/badge/AppVersion-1.5.1-informational?style=flat-square)
5+
![Version: 2.4.0](https://img.shields.io/badge/Version-2.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.5.1](https://img.shields.io/badge/AppVersion-1.5.1-informational?style=flat-square)
66

77
Fulcio is a free code signing Certificate Authority, built to make short-lived certificates available to anyone.
88

@@ -114,7 +114,7 @@ helm uninstall [RELEASE_NAME]
114114
| server.affinity | object | `{}` | |
115115
| server.args.aws_hsm_root_ca_path | string | `nil` | |
116116
| server.args.certificateAuthority | string | `"fileca"` | |
117-
| server.args.creds | string | `""` | |
117+
| server.args.cloud_credential_config | string | `""` | |
118118
| server.args.ct_log_url | string | `""` | |
119119
| server.args.disable_ct_log | bool | `false` | |
120120
| server.args.gcp_private_ca_parent | string | `"projects/test/locations/us-east1/caPools/test"` | |

charts/fulcio/templates/fulcio-configmap.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@ data:
1111
{{- if (eq .Values.server.args.certificateAuthority "kmsca")}}
1212
chain.pem: {{.Values.server.args.kms_cert_chain | quote }}
1313
{{- end }}
14-
cloud_credentials: {{.Values.server.args.creds | quote }}
14+
{{- if .Values.server.args.cloud_credential_config }}
15+
cloud_credential_config: {{.Values.server.args.cloud_credential_config | quote }}
16+
{{- end }}

charts/fulcio/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ server:
2727
port: 5555
2828
grpcPort: 5554
2929
# valid values: GCP workload identity config json for trusted external cloud providers
30-
creds: ""
30+
cloud_credential_config: ""
3131
# Valid values: googleca, pkcs11ca, aws-hsm-root-ca-path, fileca, kmsca
3232
certificateAuthority: fileca
3333
# kms_resource: gcpkms://....

0 commit comments

Comments
 (0)