diff --git a/cli/cmd/cluster.go b/cli/cmd/cluster.go index 6c7c619c99..f1891d2009 100644 --- a/cli/cmd/cluster.go +++ b/cli/cmd/cluster.go @@ -184,7 +184,7 @@ var downCmd = &cobra.Command{ errors.Exit(err) } - prompt.YesOrExit("are you sure you want to uninstall cortex? (your cluster will be spun down and all apis will be deleted)", "") + prompt.YesOrExit("your cluster will be spun down and all apis will be deleted, are you sure you want to uninstall cortex?", "") awsCreds, err := getAWSCredentials(flagClusterConfig) if err != nil { diff --git a/pkg/lib/clusterconfig/config_key.go b/pkg/lib/clusterconfig/config_key.go index a0d5a861f6..41fe748836 100644 --- a/pkg/lib/clusterconfig/config_key.go +++ b/pkg/lib/clusterconfig/config_key.go @@ -66,15 +66,15 @@ const ( InstanceDistributionUserFacingKey = "spot instance distribution" OnDemandBaseCapacityUserFacingKey = "spot on demand base capacity" OnDemandPercentageAboveBaseCapacityUserFacingKey = "spot on demand percentage above base capacity" - MaxPriceUserFacingKey = "spot max price (USD per hour)" + MaxPriceUserFacingKey = "spot max price ($ per hour)" InstancePoolsUserFacingKey = "spot instance pools" - LogGroupUserFacingKey = "CloudWatch log group" + LogGroupUserFacingKey = "cloudwatch log group" TelemetryUserFacingKey = "telemetry" ImagePredictorServeUserFacingKey = "predictor serving image" ImagePredictorServeGPUUserFacingKey = "predictor serving gpu image" ImageTFServeUserFacingKey = "tensorflow serving image" ImageTFServeGPUUserFacingKey = "tensorflow serving gpu image" - ImageTFAPIUserFacingKey = "tensorflow API image" + ImageTFAPIUserFacingKey = "tensorflow api image" ImageONNXServeUserFacingKey = "onnx serving image" ImageONNXServeGPUUserFacingKey = "onnx serving gpu image" ImageOperatorUserFacingKey = "operator image"