Skip to content

Commit c5677ec

Browse files
authored
chore: update chart (#1129)
Signed-off-by: Miguel <[email protected]>
1 parent c4a5837 commit c5677ec

File tree

2 files changed

+31
-31
lines changed

2 files changed

+31
-31
lines changed

deployment/chainloop/README.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -520,22 +520,22 @@ chainloop config save \
520520

521521
### Control Plane
522522

523-
| Name | Description | Value |
524-
| ---------------------------------------------- | ----------------------------------------------------------------------------------------------- | -------------------------------------------------- |
525-
| `controlplane.replicaCount` | Number of replicas | `2` |
526-
| `controlplane.image.registry` | Image registry | `ghcr.io` |
527-
| `controlplane.image.repository` | Image repository | `chainloop-dev/chainloop/control-plane` |
528-
| `controlplane.tlsConfig.secret.name` | name of a secret containing TLS certificate to be used by the controlplane grpc server. | `""` |
529-
| `controlplane.pluginsDir` | Directory where to look for plugins | `/plugins` |
530-
| `controlplane.referrerSharedIndex` | Configure the shared, public index API endpoint that can be used to discover metadata referrers | |
531-
| `controlplane.referrerSharedIndex.enabled` | Enable index API endpoint | `false` |
532-
| `controlplane.referrerSharedIndex.allowedOrgs` | List of UUIDs of organizations that are allowed to publish to the shared index | `[]` |
533-
| `controlplane.onboarding.name` | Name of the organization to onboard | |
534-
| `controlplane.onboarding.role` | Role of the organization to onboard | |
535-
| `controlplane.prometheus_org_metrics` | List of organizations to expose metrics for using Prometheus | |
536-
| `controlplane.migration.image.registry` | Image registry | `ghcr.io` |
537-
| `controlplane.migration.image.repository` | Image repository | `chainloop-dev/chainloop/control-plane-migrations` |
538-
| `controlplane.migration.ssl` | Connect to the database using SSL (required fro AWS RDS, etc) | `false` |
523+
| Name | Description | Value |
524+
| ---------------------------------------------- | ----------------------------------------------------------------------------------------------- | ----------------- |
525+
| `controlplane.replicaCount` | Number of replicas | `2` |
526+
| `controlplane.image.registry` | Image registry | `REGISTRY_NAME` |
527+
| `controlplane.image.repository` | Image repository | `REPOSITORY_NAME` |
528+
| `controlplane.tlsConfig.secret.name` | name of a secret containing TLS certificate to be used by the controlplane grpc server. | `""` |
529+
| `controlplane.pluginsDir` | Directory where to look for plugins | `/plugins` |
530+
| `controlplane.referrerSharedIndex` | Configure the shared, public index API endpoint that can be used to discover metadata referrers | |
531+
| `controlplane.referrerSharedIndex.enabled` | Enable index API endpoint | `false` |
532+
| `controlplane.referrerSharedIndex.allowedOrgs` | List of UUIDs of organizations that are allowed to publish to the shared index | `[]` |
533+
| `controlplane.onboarding.name` | Name of the organization to onboard | |
534+
| `controlplane.onboarding.role` | Role of the organization to onboard | |
535+
| `controlplane.prometheus_org_metrics` | List of organizations to expose metrics for using Prometheus | |
536+
| `controlplane.migration.image.registry` | Image registry | `REGISTRY_NAME` |
537+
| `controlplane.migration.image.repository` | Image repository | `REPOSITORY_NAME` |
538+
| `controlplane.migration.ssl` | Connect to the database using SSL (required fro AWS RDS, etc) | `false` |
539539

540540
### Control Plane Database
541541

@@ -631,7 +631,7 @@ chainloop config save \
631631
| `controlplane.keylessSigning.fileCA.cert` | The PEM-encoded certificate of the file based CA | `""` |
632632
| `controlplane.keylessSigning.fileCA.key` | The PEM-encoded private key of the file based CA | `""` |
633633
| `controlplane.keylessSigning.fileCA.keyPass` | The secret key pass | `""` |
634-
| `controlplane.keylessSigning.ejbcaCA.serverURL` | The url of the EJBCA service (https://host/ejbca) | `""` |
634+
| `controlplane.keylessSigning.ejbcaCA.serverURL` | The url of the EJBCA service ("https://host/ejbca") | `""` |
635635
| `controlplane.keylessSigning.ejbcaCA.clientKey` | PEM-encoded the private key for EJBCA cert authentication | `""` |
636636
| `controlplane.keylessSigning.ejbcaCA.clientCert` | PEM-encoded certificate for EJBCA cert authentication | `""` |
637637
| `controlplane.keylessSigning.ejbcaCA.certProfileName` | Name of the certificate profile to use in EJBCA | `""` |
@@ -641,12 +641,12 @@ chainloop config save \
641641

642642
### Artifact Content Addressable (CAS) API
643643

644-
| Name | Description | Value |
645-
| --------------------------- | --------------------------------------------------------------------------------------- | -------------------------------------- |
646-
| `cas.replicaCount` | Number of replicas | `2` |
647-
| `cas.image.registry` | Image registry | `ghcr.io` |
648-
| `cas.image.repository` | Image repository | `chainloop-dev/chainloop/artifact-cas` |
649-
| `cas.tlsConfig.secret.name` | name of a secret containing TLS certificate to be used by the controlplane grpc server. | `""` |
644+
| Name | Description | Value |
645+
| --------------------------- | --------------------------------------------------------------------------------------- | ----------------- |
646+
| `cas.replicaCount` | Number of replicas | `2` |
647+
| `cas.image.registry` | Image registry | `REGISTRY_NAME` |
648+
| `cas.image.repository` | Image repository | `REPOSITORY_NAME` |
649+
| `cas.tlsConfig.secret.name` | name of a secret containing TLS certificate to be used by the controlplane grpc server. | `""` |
650650

651651
### CAS Networking
652652

deployment/chainloop/values.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright Chainloop, Inc. All Rights Reserved.
1+
# Copyright Broadcom, Inc. All Rights Reserved.
22
# SPDX-License-Identifier: APACHE-2.0
33

44
## Default values for Chainloop Helm Chart
@@ -114,8 +114,8 @@ controlplane:
114114
## @param controlplane.replicaCount Number of replicas
115115
replicaCount: 2
116116

117-
## @param controlplane.image.registry Image registry
118-
## @param controlplane.image.repository Image repository
117+
## @param controlplane.image.registry [default: REGISTRY_NAME] Image registry
118+
## @param controlplane.image.repository [default: REPOSITORY_NAME] Image repository
119119
## @skip controlplane.image.tag
120120
image:
121121
registry: ghcr.io
@@ -149,8 +149,8 @@ controlplane:
149149
# - org_name: "read-only-demo"
150150

151151
# Database migration
152-
## @param controlplane.migration.image.registry Image registry
153-
## @param controlplane.migration.image.repository Image repository
152+
## @param controlplane.migration.image.registry [default: REGISTRY_NAME] Image registry
153+
## @param controlplane.migration.image.repository [default: REPOSITORY_NAME] Image repository
154154
## @param controlplane.migration.ssl Connect to the database using SSL (required fro AWS RDS, etc)
155155
## @skip controlplane.migration.image.tag
156156
migration:
@@ -508,7 +508,7 @@ controlplane:
508508
## ...
509509
## -----END RSA PRIVATE KEY-----
510510
## @param controlplane.keylessSigning.fileCA.keyPass The secret key pass
511-
## @param controlplane.keylessSigning.ejbcaCA.serverURL The url of the EJBCA service (https://host/ejbca)
511+
## @param controlplane.keylessSigning.ejbcaCA.serverURL The url of the EJBCA service ("https://host/ejbca")
512512
## @param controlplane.keylessSigning.ejbcaCA.clientKey PEM-encoded the private key for EJBCA cert authentication
513513
## @param controlplane.keylessSigning.ejbcaCA.clientCert PEM-encoded certificate for EJBCA cert authentication
514514
## @param controlplane.keylessSigning.ejbcaCA.certProfileName Name of the certificate profile to use in EJBCA
@@ -541,8 +541,8 @@ cas:
541541
## @param cas.replicaCount Number of replicas
542542
replicaCount: 2
543543

544-
## @param cas.image.registry Image registry
545-
## @param cas.image.repository Image repository
544+
## @param cas.image.registry [default: REGISTRY_NAME] Image registry
545+
## @param cas.image.repository [default: REPOSITORY_NAME] Image repository
546546
## @skip cas.image.tag
547547
image:
548548
registry: ghcr.io

0 commit comments

Comments
 (0)