Commit 22a3d5af authored by Clement Bois's avatar Clement Bois
Browse files

fix(cosign): sign all images in multi-arch

parent 69950a9c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -243,7 +243,7 @@ The signing process can be configured with the following variables:
| Input / Variable                                          | Description                                  | Default value         |
| --------------------------------------------------------- | -------------------------------------------- | --------------------- |
| `cosign-strategy` / `DOCKER_COSIGN_STRATEGY`              | Determines when images should be signed with [cosign](https://github.com/sigstore/cosign (`never`: disabled, `onrelease`: only on `$INTEG_REF`, `$PROD_REF` and `$RELEASE_REF` pipelines; `always`: any pipeline).<br/>:warning: `cosign-enabled` / `DOCKER_COSIGN_ENABLED` takes precedence | `never` |
| `cosign-opts` / `DOCKER_COSIGN_OPTS`                      | Options for [`cosign sign`](https://docs.sigstore.dev/cosign/signing/signing_with_containers/) command | `--tlog-upload=false` |
| `cosign-opts` / `DOCKER_COSIGN_OPTS`                      | Options for [`cosign sign`](https://docs.sigstore.dev/cosign/signing/signing_with_containers/) command | `--tlog-upload=false --recursive` |
| `cosign-attest-opts` / `DOCKER_COSIGN_ATTEST_OPTS`        | Options for [`cosign attest`](https://docs.sigstore.dev/cosign/verifying/attestation/) command
 | `--tlog-upload=false` |
| `cosign-dist-url` / `DOCKER_COSIGN_DIST_URL`              | Url to the `linux-amd64` binary of Cosign to use (ex: `https://github.com/sigstore/cosign/releases/download/v2.5.0/cosign-linux-amd64`)<br/>_When unset, the latest version will be used_ | _none_ |
+1 −1
Original line number Diff line number Diff line
@@ -232,7 +232,7 @@
        {
          "name": "DOCKER_COSIGN_OPTS",
          "description": "Options for [`cosign sign`](https://docs.sigstore.dev/cosign/signing/signing_with_containers/) command",
          "default": "--tlog-upload=false",
          "default": "--tlog-upload=false --recursive",
          "advanced": true
        },
        {
+1 −1
Original line number Diff line number Diff line
@@ -181,7 +181,7 @@ spec:
      default: never
    cosign-opts:
      description: Options for [`cosign sign`](https://docs.sigstore.dev/cosign/signing/signing_with_containers/) command
      default: --tlog-upload=false
      default: --tlog-upload=false --recursive
    cosign-attest-opts:
      description: Options for [`cosign attest`](https://docs.sigstore.dev/cosign/verifying/attestation/) command
      default: --tlog-upload=false