diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index c846ca01..5eb7a6fb 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -4,4 +4,4 @@ # the repo. Unless a later match takes precedence, # The users listed below are global owners and will be # requested for review when someone opens a pull request. -* @plaharanne @tomach @WalBeh @Taliik @juanpardo @SStorm +* @plaharanne @tomach @WalBeh @Taliik @juanpardo diff --git a/croud/__main__.py b/croud/__main__.py index ace2e420..775e3d2f 100644 --- a/croud/__main__.py +++ b/croud/__main__.py @@ -493,7 +493,8 @@ ), Argument( "--subscription-id", type=str, required=True, - help="The subscription to use for billing of this cluster.", + help="The subscription to use for billing of this cluster. Use " + "``free_tier`` to deploy a free cluster.", ), Argument( "--channel", type=str, default="stable", required=False, diff --git a/docs/commands/clusters.rst b/docs/commands/clusters.rst index c0766fab..23181012 100644 --- a/docs/commands/clusters.rst +++ b/docs/commands/clusters.rst @@ -130,6 +130,11 @@ Example --channel nightly --unit 0 +.. note:: + + Free clusters can be deployed without a paid subscription. Therefore you can use + ``--subscription-id free_tier --product-name crfree``. + ``clusters scale`` ==================