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
* Test `https-hosts` as part of `diagnose`
This helps customers test outbound HTTPS connectivity from the main subnet.
This helps assert connectivity (or not) for SSO and VCS integration
* update docs
Copy file name to clipboardExpand all lines: gitpod-network-check/cmd/root.go
+2
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ type NetworkConfig struct {
22
22
23
23
MainSubnets []string
24
24
PodSubnets []string
25
+
HttpsHosts []string
25
26
}
26
27
27
28
varnetworkConfig=NetworkConfig{LogLevel: "INFO"}
@@ -86,6 +87,7 @@ func init() {
86
87
networkCheckCmd.PersistentFlags().StringVar(&networkConfig.AwsRegion, "region", "eu-central-1", "AWS Region to create the cell in")
87
88
networkCheckCmd.PersistentFlags().StringSliceVar(&networkConfig.MainSubnets, "main-subnets", []string{}, "List of main subnets")
88
89
networkCheckCmd.PersistentFlags().StringSliceVar(&networkConfig.PodSubnets, "pod-subnets", []string{}, "List of pod subnets")
90
+
networkCheckCmd.PersistentFlags().StringSliceVar(&networkConfig.HttpsHosts, "https-hosts", []string{}, "Hosts to test for outbound HTTPS connectivity")
0 commit comments