mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
0811000bb0
* app/vmctl: Add insecure skip verify flag for remote read protocol
25 lines
631 B
Go
25 lines
631 B
Go
package utils
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
// Transport creates http.Transport object based on provided URL.
|
|
// Returns Transport with TLS configuration if URL contains `https` prefix
|
|
func Transport(URL string, insecureSkipVerify bool) *http.Transport {
|
|
t := http.DefaultTransport.(*http.Transport).Clone()
|
|
if !strings.HasPrefix(URL, "https") {
|
|
return t
|
|
}
|
|
t.TLSClientConfig = TLSConfig(insecureSkipVerify)
|
|
return t
|
|
}
|
|
|
|
// TLSConfig creates tls.Config object from provided arguments
|
|
func TLSConfig(insecureSkipVerify bool) *tls.Config {
|
|
return &tls.Config{
|
|
InsecureSkipVerify: insecureSkipVerify,
|
|
}
|
|
}
|