Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/guides/dependency-track/dependency-track.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ You can also use interpolation to calculate the project name dynamically based o
...
```

You can then use the `{{ .Material.Annotations.Component }}` or `{{ .Attestation.Annotations.Asset }} templates during attachment, for example
You can then use the `{{ .Material.Annotations.Component }}` or `{{ .Attestation.Annotations.Asset }}` templates during attachment, for example

```bash
$ chainloop integration attached add \
Expand Down
16 changes: 8 additions & 8 deletions docs/docs/guides/deployment/k8s/k8s.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ During installation, you'll need to provide

- Open ID Connect Identity Provider (IDp) settings i.e [Auth0 settings](https://auth0.com/docs/get-started/applications/application-settings#basic-information)
- Connection settings for a secrets storage backend, either [Hashicorp Vault](https://www.vaultproject.io/) or [AWS Secrets Manager](https://aws.amazon.com/secrets-manager)
- ECDSA (ES512) key-pair used for Controlplane <-> CAS Authentication
- ECDSA (ES512) key-pair used for Controlplane \<-> CAS Authentication

Instructions on how to create the ECDSA keypair can be found [here](#generate-a-ecdsa-key-pair).

Expand Down Expand Up @@ -165,7 +165,7 @@ During installation, you'll need to provide

- Open ID Connect Identity Provider (IDp) settings i.e [Auth0 settings](https://auth0.com/docs/get-started/applications/application-settings#basic-information)
- ~~Connection settings for a secrets storage backend, either [Hashicorp Vault](https://www.vaultproject.io/) or [AWS Secrets Manager](https://aws.amazon.com/secrets-manager)~~
- ~~ECDSA (ES512) key-pair used for Controlplane <-> CAS Authentication~~
- ~~ECDSA (ES512) key-pair used for Controlplane \<-> CAS Authentication~~

#### Installation Examples

Expand Down Expand Up @@ -440,7 +440,7 @@ chainloop config save \

| Name | Description | Value |
| ------------------ | ---------------------------------------------------------------------- | ----- |
| `casJWTPrivateKey` | ECDSA (ES512) private key used for Controlplane <-> CAS Authentication | `""` |
| `casJWTPrivateKey` | ECDSA (ES512) private key used for Controlplane \<-> CAS Authentication | `""` |
| `casJWTPublicKey` | ECDSA (ES512) public key | `""` |

### Control Plane
Expand Down Expand Up @@ -483,12 +483,12 @@ chainloop config save \
| `controlplane.service.type` | Service type | `ClusterIP` |
| `controlplane.service.port` | Service port | `80` |
| `controlplane.service.targetPort` | Service target Port | `http` |
| `controlplane.service.nodePorts.http` | Node port for HTTP. NOTE: choose port between <30000-32767> | |
| `controlplane.service.nodePorts.http` | Node port for HTTP. NOTE: choose port between \<30000-32767> | |
| `controlplane.serviceAPI.type` | Service type | `ClusterIP` |
| `controlplane.serviceAPI.port` | Service port | `80` |
| `controlplane.serviceAPI.targetPort` | Service target Port | `grpc` |
| `controlplane.serviceAPI.annotations` | Service annotations | |
| `controlplane.serviceAPI.nodePorts.http` | Node port for HTTP. NOTE: choose port between <30000-32767> | |
| `controlplane.serviceAPI.nodePorts.http` | Node port for HTTP. NOTE: choose port between \<30000-32767> | |
| `controlplane.ingress.enabled` | Enable ingress record generation for %%MAIN_CONTAINER_NAME%% | `false` |
| `controlplane.ingress.pathType` | Ingress path type | `ImplementationSpecific` |
| `controlplane.ingress.hostname` | Default host for the ingress record | `cp.dev.local` |
Expand Down Expand Up @@ -549,12 +549,12 @@ chainloop config save \
| `cas.service.type` | Service type | `ClusterIP` |
| `cas.service.port` | Service port | `80` |
| `cas.service.targetPort` | Service target Port | `http` |
| `cas.service.nodePorts.http` | Node port for HTTP. NOTE: choose port between <30000-32767> | |
| `cas.service.nodePorts.http` | Node port for HTTP. NOTE: choose port between \<30000-32767> | |
| `cas.serviceAPI.type` | Service type | `ClusterIP` |
| `cas.serviceAPI.port` | Service port | `80` |
| `cas.serviceAPI.targetPort` | Service target Port | `grpc` |
| `cas.serviceAPI.annotations` | Service annotations | |
| `cas.serviceAPI.nodePorts.http` | Node port for HTTP. NOTE: choose port between <30000-32767> | |
| `cas.serviceAPI.nodePorts.http` | Node port for HTTP. NOTE: choose port between \<30000-32767> | |
| `cas.ingress.enabled` | Enable ingress record generation for %%MAIN_CONTAINER_NAME%% | `false` |
| `cas.ingress.pathType` | Ingress path type | `ImplementationSpecific` |
| `cas.ingress.hostname` | Default host for the ingress record | `cas.dev.local` |
Expand Down Expand Up @@ -620,7 +620,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

<http://www.apache.org/licenses/LICENSE-2.0>
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
Loading