(operatorEndpoint string)
| 982 | } |
| 983 | |
| 984 | func getInfoOperatorResponse(operatorEndpoint string) (*schema.InfoResponse, error) { |
| 985 | operatorConfig := cluster.OperatorConfig{ |
| 986 | Telemetry: isTelemetryEnabled(), |
| 987 | ClientID: clientID(), |
| 988 | OperatorEndpoint: operatorEndpoint, |
| 989 | } |
| 990 | return cluster.Info(operatorConfig) |
| 991 | } |
| 992 | |
| 993 | func printInfoPricing(infoResponse *schema.InfoResponse, clusterConfig clusterconfig.Config) { |
| 994 | eksPrice := awslib.EKSPrices[clusterConfig.Region] |
no test coverage detected