spiegel_podman/cmd/podman/secrets/exists.go
MayorFaj 31b956e0f1 Fix CLI help example indentation for multi-line examples
Signed-off-by: MayorFaj <mayorfaj@gmail.com>
2026-03-06 21:06:04 +00:00

36 lines
1 KiB
Go

package secrets
import (
"github.com/containers/podman/v6/cmd/podman/common"
"github.com/containers/podman/v6/cmd/podman/registry"
"github.com/spf13/cobra"
)
var existsCmd = &cobra.Command{
Use: "exists SECRET",
Short: "Check if a secret exists in local storage",
Long: `If the named secret exists in local storage, podman secret exists exits with 0, otherwise the exit code will be 1.`,
Args: cobra.ExactArgs(1),
RunE: exists,
ValidArgsFunction: common.AutocompleteSecrets,
Example: `podman secret exists ID
podman secret exists SECRET || podman secret create SECRET <secret source>`,
}
func init() {
registry.Commands = append(registry.Commands, registry.CliCommand{
Command: existsCmd,
Parent: secretCmd,
})
}
func exists(_ *cobra.Command, args []string) error {
found, err := registry.ContainerEngine().SecretExists(registry.Context(), args[0])
if err != nil {
return err
}
if !found.Value {
registry.SetExitCode(1)
}
return nil
}