You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deployment/chainloop/Chart.yaml
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,9 @@ name: chainloop
3
3
description: Chainloop is an open source software supply chain control plane, a single source of truth for artifacts plus a declarative attestation crafting process.
4
4
5
5
type: application
6
-
version: 1.1.1
6
+
# Bump the patch (not minor, not major) version on each change in the Chart Source code
7
+
version: 1.1.2
8
+
# Do not update appVersion, this is handled automatically by the release process
Deploy Chainloop in [development mode](#development) by running
@@ -387,7 +392,7 @@ sentry:
387
392
| `controlplane.ingressAPI.hostname` | Default host for the ingress record | `api.cp.dev.local` |
388
393
| `controlplane.ingressAPI.ingressClassName` | IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) | `""` |
389
394
| `controlplane.ingressAPI.path` | Default path for the ingress record | `/` |
390
-
| `controlplane.ingressAPI.annotations` | Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations. | `{}` |
395
+
| `controlplane.ingressAPI.annotations` | Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations. | |
391
396
| `controlplane.ingressAPI.tls` | Enable TLS configuration for the host defined at `controlplane.ingress.hostname` parameter | `false` |
392
397
| `controlplane.ingressAPI.selfSigned` | Create a TLS secret for this ingress record using self-signed certificates generated by Helm | `false` |
393
398
| `controlplane.ingressAPI.extraHosts` | An array with additional hostname(s) to be covered with the ingress record | `[]` |
@@ -432,7 +437,7 @@ sentry:
432
437
| `cas.ingressAPI.hostname` | Default host for the ingress record | `api.cp.dev.local` |
433
438
| `cas.ingressAPI.ingressClassName` | IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) | `""` |
434
439
| `cas.ingressAPI.path` | Default path for the ingress record | `/` |
435
-
| `cas.ingressAPI.annotations` | Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations. | `{}` |
440
+
| `cas.ingressAPI.annotations` | Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations. | |
436
441
| `cas.ingressAPI.tls` | Enable TLS configuration for the host defined at `controlplane.ingress.hostname` parameter | `false` |
437
442
| `cas.ingressAPI.selfSigned` | Create a TLS secret for this ingress record using self-signed certificates generated by Helm | `false` |
438
443
| `cas.ingressAPI.extraHosts` | An array with additional hostname(s) to be covered with the ingress record | `[]` |
Copy file name to clipboardExpand all lines: deployment/chainloop/values.yaml
+15-4Lines changed: 15 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -292,15 +292,18 @@ controlplane:
292
292
## NOTE: You may need to set this to '/*' in order to use this with ALB ingress controllers
293
293
##
294
294
path: /
295
-
## @param controlplane.ingressAPI.annotations Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations.
295
+
## @extra controlplane.ingressAPI.annotations Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations.
296
296
## Use this parameter to set the required annotations for cert-manager, see
## @param controlplane.ingressAPI.tls Enable TLS configuration for the host defined at `controlplane.ingress.hostname` parameter
306
309
## TLS certificates will be retrieved from a TLS secret with name: `{{- printf "%s-tls" .Values.controlplane.ingress.hostname }}`
@@ -466,15 +469,23 @@ cas:
466
469
## NOTE: You may need to set this to '/*' in order to use this with ALB ingress controllers
467
470
##
468
471
path: /
469
-
## @param cas.ingressAPI.annotations Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations.
472
+
## @extra cas.ingressAPI.annotations Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations.
470
473
## Use this parameter to set the required annotations for cert-manager, see
0 commit comments