Skip to content

Commit

Permalink
website: Refining the explanation for how to create certificates (#572)
Browse files Browse the repository at this point in the history
Explain in more detail to use the same fabric files for peers in the same fabric.
Signed-off-by: Kfir Toledo <[email protected]>
  • Loading branch information
kfirtoledo authored May 9, 2024
1 parent 7650794 commit c030f76
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions website/content/en/docs/main/getting-started/users.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For example, you can set up a local environment using [kind][].

To set up ClusterLink on a Kubernetes cluster, follow these steps:

1. {{< anchor create-fabric-ca >}}Create the fabric's CA certificate and private key:
1. {{< anchor create-fabric-ca >}}Create the fabric's certificate authority (CA) certificate and private key:

```sh
clusterlink create fabric --name <fabric_name>
Expand All @@ -51,7 +51,11 @@ To set up ClusterLink on a Kubernetes cluster, follow these steps:
The `--path <path>` flag can be used to change the directory location.
The `--name` option is optional, and by default, "default_fabric" will be used.

1. {{< anchor install-cl-operator >}}Install ClusterLink deployment operator:
{{< notice note >}}
All the peer certificates in the fabric should be created from the same fabric CA files in step 1.
{{< /notice >}}

1. {{< anchor install-cl-operator >}}Install ClusterLink deployment:

```sh
clusterlink deploy peer --name <peer_name> --fabric <fabric_name>
Expand All @@ -69,7 +73,8 @@ To set up ClusterLink on a Kubernetes cluster, follow these steps:
The `--fabric` option is optional, and by default, "default_fabric" will be used.
For more details and deployment configuration see [ClusterLink deployment operator][].
{{< notice note >}}
To deploy ClusterLink on another cluster, repeat steps 2-3 in a console with access to the cluster.
To set up ClusterLink on another cluster, create another set of peer certificates (step 2).
Deploy ClusterLink in a console with access to the cluster (step 3).
{{< /notice >}}

## Try it out
Expand Down

0 comments on commit c030f76

Please sign in to comment.