...
1## cosign triangulate
2
3Outputs the located cosign image reference. This is the location where cosign stores the specified artifact type.
4
5```
6cosign triangulate [flags]
7```
8
9### Examples
10
11```
12 cosign triangulate <IMAGE>
13```
14
15### Options
16
17```
18 --allow-http-registry whether to allow using HTTP protocol while connecting to registries. Don't use this for anything but testing
19 --allow-insecure-registry whether to allow insecure connections to registries (e.g., with expired or self-signed TLS certificates). Don't use this for anything but testing
20 --attachment-tag-prefix [AttachmentTagPrefix]sha256-[TargetImageDigest].[AttachmentName] optional custom prefix to use for attached image tags. Attachment images are tagged as: [AttachmentTagPrefix]sha256-[TargetImageDigest].[AttachmentName]
21 -h, --help help for triangulate
22 --k8s-keychain whether to use the kubernetes keychain instead of the default keychain (supports workload identity).
23 --registry-password string registry basic auth password
24 --registry-token string registry bearer auth token
25 --registry-username string registry basic auth username
26 --type string related attachment to triangulate (attestation|sbom|signature|digest), default signature (sbom is deprecated) (default "signature")
27```
28
29### Options inherited from parent commands
30
31```
32 --output-file string log output to a file
33 -t, --timeout duration timeout for commands (default 3m0s)
34 -d, --verbose log debug output
35```
36
37### SEE ALSO
38
39* [cosign](cosign.md) - A tool for Container Signing, Verification and Storage in an OCI registry.
40
View as plain text