You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 3, 2025. It is now read-only.
cmd.Flags().StringVarP(&coderURL,"coder-url","cu",os.Getenv("CODER_URL"),"URL of the Coder instance")
99
+
cmd.Flags().StringVarP(&coderURL,"coder-url","",os.Getenv("CODER_URL"),"URL of the Coder instance")
100
+
cmd.Flags().StringVarP(&coderToken,"coder-token","",os.Getenv("CODER_TOKEN"),"Access Token for the Coder instance. Requires Template Admin privileges.")
76
101
cmd.Flags().StringVarP(&artifactoryURL,"artifactory-url","",os.Getenv("ARTIFACTORY_URL"),"URL of the JFrog Artifactory instance")
77
102
cmd.Flags().StringVarP(&artifactoryToken,"artifactory-token","",os.Getenv("ARTIFACTORY_TOKEN"),"Access Token for JFrog Artifactory instance")
78
103
cmd.Flags().StringVarP(&artifactoryUser,"artifactory-user","",os.Getenv("ARTIFACTORY_USER"),"User to interface with JFrog Artifactory instance")
79
-
cmd.Flags().StringVarP(&kubeConfig,"kubeconfig","k","~/.kube/config","Path to the kubeconfig file")
104
+
cmd.Flags().StringVarP(&kubeConfig,"kubeconfig","k","/home/coder/.kube/config","Path to the kubeconfig file")
80
105
cmd.Flags().StringVarP(&namespace,"namespace","n",os.Getenv("CODER_NAMESPACE"),"Namespace to use when listing pods")
81
106
cmd.Flags().StringVarP(&fieldSelector,"field-selector","f","","Field selector to use when listing pods")
82
107
cmd.Flags().StringVarP(&labelSelector,"label-selector","l","","Label selector to use when listing pods")
83
-
cmd.Flags().StringVarP(&artifactoryToken,"artifactory-token","","","Token to use to fetch scan results for an image")