Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note for deploying free clusters #517

Merged
merged 1 commit into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 2 additions & 1 deletion croud/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
5 changes: 5 additions & 0 deletions docs/commands/clusters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``
==================
Expand Down
Loading