...
1## cosign load
2
3Load a signed image on disk to a remote registry
4
5### Synopsis
6
7Load a signed image on disk to a remote registry
8
9```
10cosign load [flags]
11```
12
13### Examples
14
15```
16 cosign load --dir <path to directory> <IMAGE>
17```
18
19### Options
20
21```
22 --allow-http-registry whether to allow using HTTP protocol while connecting to registries. Don't use this for anything but testing
23 --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
24 --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]
25 --dir string path to directory where the signed image is stored on disk
26 -h, --help help for load
27 --k8s-keychain whether to use the kubernetes keychain instead of the default keychain (supports workload identity).
28 --registry-password string registry basic auth password
29 --registry-token string registry bearer auth token
30 --registry-username string registry basic auth username
31```
32
33### Options inherited from parent commands
34
35```
36 --output-file string log output to a file
37 -t, --timeout duration timeout for commands (default 3m0s)
38 -d, --verbose log debug output
39```
40
41### SEE ALSO
42
43* [cosign](cosign.md) - A tool for Container Signing, Verification and Storage in an OCI registry.
44
View as plain text