From 408ad4260e416402ed1781091e273d3e46c11a73 Mon Sep 17 00:00:00 2001 From: Leandro Poroli Date: Wed, 2 Oct 2024 15:10:48 -0300 Subject: [PATCH] use small case for id flag --- kardinal-cli/cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kardinal-cli/cmd/root.go b/kardinal-cli/cmd/root.go index a858123..f94772f 100644 --- a/kardinal-cli/cmd/root.go +++ b/kardinal-cli/cmd/root.go @@ -642,7 +642,7 @@ func init() { createCmd.Flags().StringSliceVarP(&serviceImagePairs, "service-image", "s", []string{}, "Extra service and respective image to include in the same flow (can be used multiple times)") createCmd.Flags().StringVarP(&templateName, "template", "t", "", "Template name to use for the flow creation") createCmd.Flags().StringVarP(&templateArgsFile, "template-args", "a", "", "JSON with the template arguments or path to YAML file containing template arguments") - createCmd.Flags().StringVarP(&flowID, "ID", "i", "", "Set the flow id") + createCmd.Flags().StringVarP(&flowID, "id", "i", "", "Set the flow id") deployCmd.PersistentFlags().StringVarP(&kubernetesManifestFile, "k8s-manifest", "k", "", "Path to the K8S manifest file") deployCmd.MarkPersistentFlagRequired("k8s-manifest")