Skip to content

Commit

Permalink
Small typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dgtlntv committed Dec 4, 2024
1 parent 0c96b80 commit 87fc602
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -586,15 +586,14 @@ Commands:
cluster add Generates a token for a new node to join the cluster.
cluster join Joins the node to a cluster when given a join token.
cluster remove Removes a node from the MAAS Anvil cluster.
cluster refresh Updates all charms within their current channel.
Configure and update the cluster:
manifest list Lists manifest files that were used in the cluster.
manifest show Shows the contents of a manifest file given an id.
manifest generate Generates a manifest file.
refresh Updates all charms within their current channel.
Manage and debug the cluster:
Debug the cluster:
cluster list Lists all nodes in the MAAS Anvil cluster.
inspect Inspects the cluster and reports any issues it finds.
juju-login Logs into the Juju controller used by MAAS Anvil.
Expand Down Expand Up @@ -693,7 +692,7 @@ Example:
and use the token previously created with 'maas-anvil cluster add' on the bootstrap node.
maas-anvil cluster join \
--role database --role region --role agent --role haproxy \
--token $JOIN_TOKEN
--token $JOINTOKEN
```

#### maas-anvil cluster list [OPTIONS]
Expand All @@ -707,7 +706,7 @@ Options:
-h, --help Show this message and exit.
Example:
Verify the status of your MAAS Anvil cluster.
Verify the status of the MAAS Anvil cluster.
maas-anvil cluster list
```

Expand Down Expand Up @@ -760,7 +759,8 @@ Example:
```text
Generates and manages manifest files. A manifest file is a declarative YAML
file with which configurations for a MAAS Anvil cluster deployment can be
set. The manifest commands are read only.
set. The manifest commands are read only. A manifest can be applied with
"cluster bootstrap" or "cluster refresh".
Options:
-h, --help Show this message and exit.
Expand Down
2 changes: 1 addition & 1 deletion anvil-python/anvil/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def manifest(ctx: click.Context) -> None:
"""Generates and manages manifest files.
A manifest file is a declarative YAML file with which configurations for
a MAAS Anvil cluster deployment can be set. The manifest commands are read
only.
only. A manifest can be applied with "cluster bootstrap" or "cluster refresh".
"""


Expand Down
2 changes: 1 addition & 1 deletion anvil-python/anvil/provider/local/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ def join(
cls=FormatEpilogCommand,
epilog="""
\b
Verify the status of your MAAS Anvil cluster.
Verify the status of the MAAS Anvil cluster.
maas-anvil cluster list
""",
)
Expand Down

0 comments on commit 87fc602

Please sign in to comment.