Skip to content

Commit 11bf358

Browse files
committed
Lower case nits and clean up cluster uninstall (#599)
(cherry picked from commit 41ddd8a)
1 parent 1273291 commit 11bf358

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cli/cmd/cluster.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ var downCmd = &cobra.Command{
184184
errors.Exit(err)
185185
}
186186

187-
prompt.YesOrExit("are you sure you want to uninstall cortex? (your cluster will be spun down and all apis will be deleted)", "")
187+
prompt.YesOrExit("your cluster will be spun down and all apis will be deleted, are you sure you want to uninstall cortex?", "")
188188

189189
awsCreds, err := getAWSCredentials(flagClusterConfig)
190190
if err != nil {

pkg/lib/clusterconfig/config_key.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ const (
6666
InstanceDistributionUserFacingKey = "spot instance distribution"
6767
OnDemandBaseCapacityUserFacingKey = "spot on demand base capacity"
6868
OnDemandPercentageAboveBaseCapacityUserFacingKey = "spot on demand percentage above base capacity"
69-
MaxPriceUserFacingKey = "spot max price (USD per hour)"
69+
MaxPriceUserFacingKey = "spot max price ($ per hour)"
7070
InstancePoolsUserFacingKey = "spot instance pools"
71-
LogGroupUserFacingKey = "CloudWatch log group"
71+
LogGroupUserFacingKey = "cloudwatch log group"
7272
TelemetryUserFacingKey = "telemetry"
7373
ImagePredictorServeUserFacingKey = "predictor serving image"
7474
ImagePredictorServeGPUUserFacingKey = "predictor serving gpu image"
7575
ImageTFServeUserFacingKey = "tensorflow serving image"
7676
ImageTFServeGPUUserFacingKey = "tensorflow serving gpu image"
77-
ImageTFAPIUserFacingKey = "tensorflow API image"
77+
ImageTFAPIUserFacingKey = "tensorflow api image"
7878
ImageONNXServeUserFacingKey = "onnx serving image"
7979
ImageONNXServeGPUUserFacingKey = "onnx serving gpu image"
8080
ImageOperatorUserFacingKey = "operator image"

0 commit comments

Comments
 (0)