Skip to content

Commit 319b2a5

Browse files
authored
fix(chart): do not render CAs when merged (#1828)
Signed-off-by: Miguel Martinez <[email protected]>
1 parent 2b1e768 commit 319b2a5

File tree

2 files changed

+30
-30
lines changed

2 files changed

+30
-30
lines changed

deployment/chainloop/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Chainloop is an open source software supply chain control plane, a
77

88
type: application
99
# Bump the patch (not minor, not major) version on each change in the Chart Source code
10-
version: 1.183.0
10+
version: 1.183.1
1111
# Do not update appVersion, this is handled automatically by the release process
1212
appVersion: v0.165.0
1313

deployment/chainloop/values.yaml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -665,43 +665,43 @@ controlplane:
665665

666666
## Configuration for keyless signing using one of the supported providers
667667
## @param controlplane.keylessSigning.enabled Activates or deactivates the feature
668-
## @param controlplane.keylessSigning.backends[0].issuer Whether this backend should be used to issue new certificates. Only one can be set at a time.
669-
## @param controlplane.keylessSigning.backends[0].type backend type. Only "fileCA" and "ejbcaCA" are supported
670-
## @param controlplane.keylessSigning.backends[0].fileCA.cert The PEM-encoded certificate of the file based CA
668+
## @extra controlplane.keylessSigning.backends[0].issuer Whether this backend should be used to issue new certificates. Only one can be set at a time.
669+
## @extra controlplane.keylessSigning.backends[0].type backend type. Only "fileCA" and "ejbcaCA" are supported
670+
## @extra controlplane.keylessSigning.backends[0].fileCA.cert The PEM-encoded certificate of the file based CA
671671
## -----BEGIN CERTIFICATE-----
672672
## ...
673673
## -----END CERTIFICATE-----
674-
## @param controlplane.keylessSigning.backends[0].fileCA.key The PEM-encoded private key of the file based CA
674+
## @extra controlplane.keylessSigning.backends[0].fileCA.key The PEM-encoded private key of the file based CA
675675
## -----BEGIN RSA PRIVATE KEY-----
676676
## ...
677677
## -----END RSA PRIVATE KEY-----
678-
## @param controlplane.keylessSigning.backends[0].fileCA.keyPass The secret key pass
679-
## @param controlplane.keylessSigning.backends[1].type backend type. Only "fileCA" and "ejbcaCA" are supported
680-
## @param controlplane.keylessSigning.backends[1].ejbcaCA.serverURL The url of the EJBCA service ("https://host/ejbca")
681-
## @param controlplane.keylessSigning.backends[1].ejbcaCA.clientKey PEM-encoded the private key for EJBCA cert authentication
682-
## @param controlplane.keylessSigning.backends[1].ejbcaCA.clientCert PEM-encoded certificate for EJBCA cert authentication
683-
## @param controlplane.keylessSigning.backends[1].ejbcaCA.caCert PEM-encoded certificate of the root CA
684-
## @param controlplane.keylessSigning.backends[1].ejbcaCA.certProfileName Name of the certificate profile to use in EJBCA
685-
## @param controlplane.keylessSigning.backends[1].ejbcaCA.endEntityProfileName Name of the Entity Profile to use in EJBCA
686-
## @param controlplane.keylessSigning.backends[1].ejbcaCA.caName Name of the CA issuer to use in EJBCA
678+
## @extra controlplane.keylessSigning.backends[0].fileCA.keyPass The secret key pass
679+
## @extra controlplane.keylessSigning.backends[1].type backend type. Only "fileCA" and "ejbcaCA" are supported
680+
## @extra controlplane.keylessSigning.backends[1].ejbcaCA.serverURL The url of the EJBCA service ("https://host/ejbca")
681+
## @extra controlplane.keylessSigning.backends[1].ejbcaCA.clientKey PEM-encoded the private key for EJBCA cert authentication
682+
## @extra controlplane.keylessSigning.backends[1].ejbcaCA.clientCert PEM-encoded certificate for EJBCA cert authentication
683+
## @extra controlplane.keylessSigning.backends[1].ejbcaCA.caCert PEM-encoded certificate of the root CA
684+
## @extra controlplane.keylessSigning.backends[1].ejbcaCA.certProfileName Name of the certificate profile to use in EJBCA
685+
## @extra controlplane.keylessSigning.backends[1].ejbcaCA.endEntityProfileName Name of the Entity Profile to use in EJBCA
686+
## @extra controlplane.keylessSigning.backends[1].ejbcaCA.caName Name of the CA issuer to use in EJBCA
687687
keylessSigning:
688688
enabled: false
689-
backends:
690-
- type: fileCA
691-
fileCA:
692-
cert: ""
693-
key: ""
694-
keyPass: "foo"
695-
issuer: true
696-
- type: ejbcaCA
697-
ejbcaCA:
698-
serverURL: ""
699-
clientKey: ""
700-
clientCert: ""
701-
caCert: ""
702-
certProfileName: ""
703-
endEntityProfileName: ""
704-
caName: ""
689+
# backends:
690+
# - type: fileCA
691+
# fileCA:
692+
# cert: ""
693+
# key: ""
694+
# keyPass: "foo"
695+
# issuer: true
696+
# - type: ejbcaCA
697+
# ejbcaCA:
698+
# serverURL: ""
699+
# clientKey: ""
700+
# clientCert: ""
701+
# caCert: ""
702+
# certProfileName: ""
703+
# endEntityProfileName: ""
704+
# caName: ""
705705

706706
## Inject custom CA certificates to the controlplane container
707707
## @param controlplane.customCAs List of custom CA certificates content

0 commit comments

Comments
 (0)