Skip to content

Commit

Permalink
docs: switch preposition, IN a cluster not ON a cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
NHingerl committed Feb 21, 2024
1 parent 309ab88 commit 5663af1
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 @@ -12,19 +12,19 @@ NATS Manager is a standard Kubernetes operator that observes the state of NATS J

This project aims to follow the [Kubernetes Operator pattern](https://kubernetes.io/docs/concepts/extend-kubernetes/operator/).

It uses [Controllers](https://kubernetes.io/docs/concepts/architecture/controller/), which provide a reconcile function responsible for synchronizing resources until the desired state is reached on the cluster.
It uses [Controllers](https://kubernetes.io/docs/concepts/architecture/controller/), which provide a reconcile function responsible for synchronizing resources until the desired state is reached in the cluster.

This project is scaffolded using [Kubebuilder](https://book.kubebuilder.io), and all the Kubebuilder [`makefile` helpers](https://book.kubebuilder.io/reference/makefile-helpers.html) can be used.

## Installation

1. To install the latest version of the NATS manager on your cluster, run:
1. To install the latest version of the NATS manager in your cluster, run:

```bash
kubectl apply -f https://github.com/kyma-project/nats-manager/releases/latest/download/nats-manager.yaml
```

2. To install the latest version of the default NATS CR on your cluster, run:
2. To install the latest version of the default NATS CR in your cluster, run:

```bash
kubectl apply -f https://github.com/kyma-project/nats-manager/releases/latest/download/nats-default-cr.yaml
Expand Down Expand Up @@ -118,7 +118,7 @@ You’ll need a Kubernetes cluster to run against. You can use [k3d](https://k3d
> **NOTE:** Your NATS Manager automatically uses the current context in your kubeconfig file, that is, whatever cluster `kubectl cluster-info` shows.
### Deploy on the Cluster
### Deploy in the Cluster
1. Download Go packages:
Expand Down Expand Up @@ -176,7 +176,7 @@ For the E2E tests, provide a Kubernetes cluster and run:
make e2e IMG=<container-registry>/nats-manager:<tag>
```

If you already have deployed the NATS-Manager on your cluster, you can simply run:
If you already have deployed the NATS-Manager in your cluster, you can simply run:

```shell
make e2e-only
Expand Down
2 changes: 1 addition & 1 deletion docs/contributor/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ For information about the prerequisites, refer to [Development](./development.md
make uninstall
```

## Run the NATS Manager on a Cluster Using the Go Runtime Environment
## Run the NATS Manager in a Cluster Using the Go Runtime Environment

### Installation

Expand Down
2 changes: 1 addition & 1 deletion docs/contributor/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Because E2E tests need a Kubernetes cluster to run on, they are separate from th

2. Execute the E2E test.

If NATS Manager has not yet been deployed on the cluster, run:
If NATS Manager has not yet been deployed in the cluster, run:

```sh
make e2e IMG=<container-registry>/nats-manager:<tag>
Expand Down

0 comments on commit 5663af1

Please sign in to comment.