@@ -16,6 +16,11 @@ import (
16
16
17
17
"github.com/coder/coder-xray/jfrog"
18
18
"github.com/coder/coder-xray/reporter"
19
+
20
+ // *Never* remove this. Certificates are not bundled as part
21
+ // of the container, so this is necessary for all connections
22
+ // to not be insecure.
23
+ _ "github.com/breml/rootcerts"
19
24
)
20
25
21
26
func root () * cobra.Command {
@@ -108,7 +113,7 @@ func root() *cobra.Command {
108
113
cmd .Flags ().StringVarP (& artifactoryURL , "artifactory-url" , "" , os .Getenv ("CODER_ARTIFACTORY_URL" ), "URL of the JFrog Artifactory instance" )
109
114
cmd .Flags ().StringVarP (& artifactoryToken , "artifactory-token" , "" , os .Getenv ("CODER_ARTIFACTORY_TOKEN" ), "Access Token for JFrog Artifactory instance" )
110
115
cmd .Flags ().StringVarP (& artifactoryUser , "artifactory-user" , "" , os .Getenv ("CODER_ARTIFACTORY_USER" ), "User to interface with JFrog Artifactory instance" )
111
- cmd .Flags ().StringVarP (& kubeConfig , "kubeconfig" , "k" , "/home/coder /.kube/config" , "Path to the kubeconfig file" )
116
+ cmd .Flags ().StringVarP (& kubeConfig , "kubeconfig" , "k" , "~ /.kube/config" , "Path to the kubeconfig file" )
112
117
cmd .Flags ().StringVarP (& namespace , "namespace" , "n" , os .Getenv ("CODER_NAMESPACE" ), "Namespace to use when listing pods" )
113
118
cmd .Flags ().StringVarP (& fieldSelector , "field-selector" , "f" , "" , "Field selector to use when listing pods" )
114
119
cmd .Flags ().StringVarP (& labelSelector , "label-selector" , "l" , "" , "Label selector to use when listing pods" )
0 commit comments