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 has been archived by the owner on Jun 20, 2024. It is now read-only.
How do i set hubble.tls.enable to false?
Here is the code:
func main() {
flagsHubble := flags{
address: flag.String("hubble.address", "localhost:4245", "connect to Hubble on this address"),
tls: &flagsTLS{
enable: flag.Bool("hubble.tls.enable", false, "connect to Hubble using TLS"),
insecureSkipVerify: flag.Bool("hubble.tls.insecureSkipVerify", false, "disable TLS verification for Hubble"),
clientCertificate: flag.String("hubble.tls.clientCertificate", "", ""),
clientKey: flag.String("hubble.tls.clientKey", "", ""),
certificateAuthority: flag.String("hubble.tls.certificateAuthority", "", ""),
},
}
But i can't seem to set hubble.tls.enable. It complains that there's no flag.
The text was updated successfully, but these errors were encountered: