From f99b7749b65212596638bb3488ed6ecb07db2560 Mon Sep 17 00:00:00 2001 From: Miguel Martinez Date: Mon, 22 Sep 2025 15:58:09 +0200 Subject: [PATCH] chore(cli): move action package to pkg Signed-off-by: Miguel Martinez --- app/cli/cmd/config.go | 4 - app/cli/cmd/root.go | 28 +++--- app/cli/documentation/cli-reference.mdx | 113 ------------------------ 3 files changed, 11 insertions(+), 134 deletions(-) diff --git a/app/cli/cmd/config.go b/app/cli/cmd/config.go index f8861fc96..e49233965 100644 --- a/app/cli/cmd/config.go +++ b/app/cli/cmd/config.go @@ -54,10 +54,6 @@ var confOptions = struct { viperKey: "organization", flagName: "org", }, - platformAPI: &confOpt{ - viperKey: "platform.API", - flagName: "platform", - }, } type confOpt struct { diff --git a/app/cli/cmd/root.go b/app/cli/cmd/root.go index 1f9340efb..1e8814600 100644 --- a/app/cli/cmd/root.go +++ b/app/cli/cmd/root.go @@ -41,16 +41,15 @@ import ( ) var ( - flagCfgFile string - flagDebug bool - flagOutputFormat string - ActionOpts *action.ActionsOpts - logger zerolog.Logger - defaultCPAPI = "api.cp.chainloop.dev:443" - defaultCASAPI = "api.cas.chainloop.dev:443" - defaultPlatformAPI = "api.app.chainloop.dev:443" - apiToken string - flagYes bool + flagCfgFile string + flagDebug bool + flagOutputFormat string + ActionOpts *action.ActionsOpts + logger zerolog.Logger + defaultCPAPI = "api.cp.chainloop.dev:443" + defaultCASAPI = "api.cas.chainloop.dev:443" + apiToken string + flagYes bool ) const ( @@ -106,7 +105,7 @@ func NewRootCmd(l zerolog.Logger) *cobra.Command { logger.Warn().Msg("API contacted in insecure mode") } - authToken, isUserToken, err := loadControlplaneAuthToken(cmd) + authToken, isUserToken, err := LoadAuthToken(cmd) if err != nil { return err } @@ -224,11 +223,6 @@ func NewRootCmd(l zerolog.Logger) *cobra.Command { cobra.CheckErr(viper.BindPFlag(confOptions.CASCA.viperKey, rootCmd.PersistentFlags().Lookup(confOptions.CASCA.flagName))) cobra.CheckErr(viper.BindEnv(confOptions.CASCA.viperKey, calculateEnvVarName(confOptions.CASCA.viperKey))) - // Platform API configuration - rootCmd.PersistentFlags().String(confOptions.platformAPI.flagName, defaultPlatformAPI, fmt.Sprintf("URL for the Platform API ($%s)", calculateEnvVarName(confOptions.platformAPI.viperKey))) - cobra.CheckErr(viper.BindPFlag(confOptions.platformAPI.viperKey, rootCmd.PersistentFlags().Lookup(confOptions.platformAPI.flagName))) - cobra.CheckErr(viper.BindEnv(confOptions.platformAPI.viperKey, calculateEnvVarName(confOptions.platformAPI.viperKey))) - rootCmd.PersistentFlags().BoolP("insecure", "i", false, fmt.Sprintf("Skip TLS transport during connection to the control plane ($%s)", calculateEnvVarName(confOptions.insecure.viperKey))) cobra.CheckErr(viper.BindPFlag(confOptions.insecure.viperKey, rootCmd.PersistentFlags().Lookup("insecure"))) cobra.CheckErr(viper.BindEnv(confOptions.insecure.viperKey, calculateEnvVarName(confOptions.insecure.viperKey))) @@ -359,7 +353,7 @@ func cleanup(conn *grpc.ClientConn) error { // 2.2 Load the token from the environment variable and from the auth login config file // 2.3 if they both exist, we default to the user token // 2.4 otherwise to the one that's set -func loadControlplaneAuthToken(cmd *cobra.Command) (string, bool, error) { +func LoadAuthToken(cmd *cobra.Command) (string, bool, error) { // Load the APIToken from the env variable apiTokenFromVar := os.Getenv(tokenEnvVarName) diff --git a/app/cli/documentation/cli-reference.mdx b/app/cli/documentation/cli-reference.mdx index 1d2b57a60..93fb77c94 100755 --- a/app/cli/documentation/cli-reference.mdx +++ b/app/cli/documentation/cli-reference.mdx @@ -30,7 +30,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -63,7 +62,6 @@ Options inherited from parent commands --debug Enable debug/verbose logging mode -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -99,7 +97,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -131,7 +128,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -166,7 +162,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -223,7 +218,6 @@ Options inherited from parent commands --local-state-path string path to store the attestation state locally, default: [tmpDir]/chainloop_attestation.tmp.json -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -261,7 +255,6 @@ Options inherited from parent commands --local-state-path string path to store the attestation state locally, default: [tmpDir]/chainloop_attestation.tmp.json -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -303,7 +296,6 @@ Options inherited from parent commands --local-state-path string path to store the attestation state locally, default: [tmpDir]/chainloop_attestation.tmp.json -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -366,7 +358,6 @@ Options inherited from parent commands --local-state-path string path to store the attestation state locally, default: [tmpDir]/chainloop_attestation.tmp.json -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -402,7 +393,6 @@ Options inherited from parent commands --local-state-path string path to store the attestation state locally, default: [tmpDir]/chainloop_attestation.tmp.json -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -437,7 +427,6 @@ Options inherited from parent commands --local-state-path string path to store the attestation state locally, default: [tmpDir]/chainloop_attestation.tmp.json -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -485,7 +474,6 @@ Options inherited from parent commands --local-state-path string path to store the attestation state locally, default: [tmpDir]/chainloop_attestation.tmp.json -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -512,7 +500,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -543,7 +530,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -579,7 +565,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -611,7 +596,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -638,7 +622,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -668,7 +651,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -707,7 +689,6 @@ Options inherited from parent commands --name string CAS backend name -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -746,7 +727,6 @@ Options inherited from parent commands --name string CAS backend name -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -785,7 +765,6 @@ Options inherited from parent commands --name string CAS backend name -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -822,7 +801,6 @@ Options inherited from parent commands --name string CAS backend name -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -854,7 +832,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -890,7 +867,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -922,7 +898,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -952,7 +927,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -989,7 +963,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1026,7 +999,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1065,7 +1037,6 @@ Options inherited from parent commands --name string CAS backend name -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1099,7 +1070,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1135,7 +1105,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1162,7 +1131,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1198,7 +1166,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1229,7 +1196,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1261,7 +1227,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1297,7 +1262,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1333,7 +1297,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1364,7 +1327,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1395,7 +1357,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1432,7 +1393,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1463,7 +1423,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1497,7 +1456,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1524,7 +1482,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1551,7 +1508,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1596,7 +1552,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1628,7 +1583,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1664,7 +1618,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1697,7 +1650,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1724,7 +1676,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1757,7 +1708,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1793,7 +1743,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1824,7 +1773,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1860,7 +1808,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1887,7 +1834,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1927,7 +1873,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1959,7 +1904,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -1995,7 +1939,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2026,7 +1969,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2053,7 +1995,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2084,7 +2025,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2119,7 +2059,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string output format, valid options are table, json, token (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2155,7 +2094,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2189,7 +2127,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2221,7 +2158,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2253,7 +2189,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2289,7 +2224,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2320,7 +2254,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2356,7 +2289,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2388,7 +2320,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2419,7 +2350,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2446,7 +2376,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2478,7 +2407,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2514,7 +2442,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2541,7 +2468,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2574,7 +2500,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2610,7 +2535,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2641,7 +2565,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2673,7 +2596,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2732,7 +2654,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2765,7 +2686,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2810,7 +2730,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2844,7 +2763,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2871,7 +2789,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2899,7 +2816,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2950,7 +2866,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -2986,7 +2901,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3038,7 +2952,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3078,7 +2991,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3114,7 +3026,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3145,7 +3056,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3172,7 +3082,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3199,7 +3108,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3244,7 +3152,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3276,7 +3183,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3312,7 +3218,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3345,7 +3250,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3372,7 +3276,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3407,7 +3310,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3439,7 +3341,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3472,7 +3373,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string output format, valid options are table, json or schema (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3508,7 +3408,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3539,7 +3438,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3573,7 +3471,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3628,7 +3525,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3661,7 +3557,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3694,7 +3589,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3730,7 +3624,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3781,7 +3674,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3818,7 +3710,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3845,7 +3736,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3882,7 +3772,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string output format, valid options are table, json, attestation, statement or payload-pae (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3918,7 +3807,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ``` @@ -3955,7 +3843,6 @@ Options inherited from parent commands -i, --insecure Skip TLS transport during connection to the control plane ($CHAINLOOP_API_INSECURE) -n, --org string organization name -o, --output string Output format, valid options are json and table (default "table") ---platform string URL for the Platform API ($CHAINLOOP_PLATFORM_API) (default "api.app.chainloop.dev:443") -t, --token string API token. NOTE: Alternatively use the env variable CHAINLOOP_TOKEN -y, --yes Skip confirmation ```