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
Bump osd-network-verifier to v1.7.0 and add AWS GovCloud support (#885)
* Bump osd-network-verifier to v1.7.0 and add AWS GovCloud support
* Add AWS GovCloud support to network verifier
- Add cloud.AWSGovCloudClassic to setupCloudProviderVerification switch
- Add cloud.AWSGovCloudClassic to pod mode region setup
- Update platform flag documentation to include aws-govcloud-classic
- Regenerate command documentation
This enables network verification for AWS GovCloud clusters in both
regular and pod modes using osd-network-verifier v1.7.0.
validateEgressCmd.Flags().StringVar(&e.Region, "region", "", "(optional) AWS region, required for --pod-mode if not passing a --cluster-id")
194
194
validateEgressCmd.Flags().BoolVar(&e.Debug, "debug", false, "(optional) if provided, enable additional debug-level logging")
195
195
validateEgressCmd.Flags().BoolVarP(&e.AllSubnets, "all-subnets", "A", false, "(optional) an option for AWS Privatelink clusters to run osd-network-verifier against all subnets listed by ocm.")
196
-
validateEgressCmd.Flags().StringVar(&e.platformName, "platform", "", "(optional) override for cloud platform/product. E.g., 'aws-classic' (OSD/ROSA Classic), 'aws-hcp' (ROSA HCP), or 'aws-hcp-zeroegress'")
validateEgressCmd.Flags().DurationVar(&e.EgressTimeout, "egress-timeout", onv.DefaultTimeout, "(optional) timeout for individual egress verification requests")
198
198
validateEgressCmd.Flags().BoolVar(&e.Version, "version", false, "When present, prints out the version of osd-network-verifier being used")
199
199
validateEgressCmd.Flags().StringVar(&e.Probe, "probe", "curl", "(optional) select the probe to be used for egress testing. Either 'curl' (default) or 'legacy'")
@@ -789,7 +789,7 @@ func (e *EgressVerification) setupPodModeVerification(ctx context.Context, platf
789
789
}
790
790
791
791
// For AWS-based platforms in pod mode, ensure region is set for proper egress list generation
0 commit comments