Skip to content

Commit f7cff1b

Browse files
committed
Update cluster configuration message
(cherry picked from commit b3cd962)
1 parent 086e500 commit f7cff1b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

cli/cmd/lib_cluster_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,6 @@ func confirmClusterConfig(clusterConfig *clusterconfig.ClusterConfig, awsCreds *
245245

246246
fmt.Println(table.AlignKeyValue(items, ":", 1) + "\n")
247247

248-
exitMessage := fmt.Sprintf("cluster configuration can be modified via the cluster config file; see https://www.cortex.dev/v/%s/cluster-management/config", consts.CortexVersion)
248+
exitMessage := fmt.Sprintf("cluster configuration can be modified via the cluster config file; see https://www.cortex.dev/v/%s/cluster-management/config", consts.CortexVersionMinor)
249249
prompt.YesOrExit("is the configuration above correct?", exitMessage)
250250
}

pkg/consts/consts.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ limitations under the License.
1717
package consts
1818

1919
var (
20-
CortexVersion = "0.11.0" // CORTEX_VERSION
20+
CortexVersion = "0.11.0" // CORTEX_VERSION
21+
CortexVersionMinor = "0.11" // CORTEX_VERSION_MINOR
2122

2223
ContextCacheDir = "/mnt/context"
2324
EmptyDirMountPath = "/mnt"

0 commit comments

Comments
 (0)