@ -50,8 +69,10 @@ var imageUpdateArgs = imageUpdateFlags{}
funcinit(){
flags:=createImageUpdateCmd.Flags()
flags.StringVar(&imageUpdateArgs.gitRepoRef,"git-repo-ref","","the name of a GitRepository resource with details of the upstream git repository")
flags.StringVar(&imageUpdateArgs.branch,"branch","","the branch to checkout and push commits to")
flags.StringVar(&imageUpdateArgs.gitRepoRef,"git-repo-ref","","the name of a GitRepository resource with details of the upstream Git repository")
flags.StringVar(&imageUpdateArgs.gitRepoPath,"git-repo-path","","path to the directory containing the manifests to be updated, defaults to the repository root")
flags.StringVar(&imageUpdateArgs.checkoutBranch,"checkout-branch","","the branch to checkout")
flags.StringVar(&imageUpdateArgs.pushBranch,"push-branch","","the branch to push commits to, defaults to the checkout branch if not specified")
flags.StringVar(&imageUpdateArgs.commitTemplate,"commit-template","","a template for commit messages")
flags.StringVar(&imageUpdateArgs.authorName,"author-name","","the name to use for commit author")
flags.StringVar(&imageUpdateArgs.authorEmail,"author-email","","the email to use for commit author")
logsCmd.Flags().StringVarP(&logsArgs.kind,"kind","",logsArgs.kind,"displays errors of a particular toolkit kind e.g GitRepository")
logsCmd.Flags().StringVarP(&logsArgs.name,"name","",logsArgs.name,"specifies the name of the object logs to be displayed")
logsCmd.Flags().BoolVarP(&logsArgs.follow,"follow","f",logsArgs.follow,"Specifies if the logs should be streamed")
logsCmd.Flags().BoolVarP(&logsArgs.follow,"follow","f",logsArgs.follow,"specifies if the logs should be streamed")
logsCmd.Flags().Int64VarP(&logsArgs.tail,"tail","",logsArgs.tail,"lines of recent log file to display")
logsCmd.Flags().StringVarP(&logsArgs.fluxNamespace,"flux-namespace","",rootArgs.defaults.Namespace,"the namespace where the Flux components are running.")
logsCmd.Flags().StringVarP(&logsArgs.fluxNamespace,"flux-namespace","",rootArgs.defaults.Namespace,"the namespace where the Flux components are running")
logsCmd.Flags().BoolVarP(&logsArgs.allNamespaces,"all-namespaces","A",false,"displays logs for objects across all namespaces")