Skip to content

Commit 57a5072

Browse files
committed
Install: Implement suggestions by CodeRabbit
1 parent 08979ea commit 57a5072

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

docs/install/cloud/aws/s3-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ instances.
2727
2828
It is recommended to restrict the permissions of CrateDB on S3 to only the
2929
required extent. First, an IAM role is required. This [AWS guide] gives a
30-
short description of how to create a policy offer using the CLI or the AWS
31-
management console. Further, access of the snapshot to the S3 bucket needs to
30+
short description of how to create a policy either using the CLI or the AWS
31+
Management Console. Further, access of the snapshot to the S3 bucket needs to
3232
be restricted. An example policy file granting anybody access to a bucket
3333
called `snaps.example.com` is attached below:
3434

docs/install/container/docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Breaking the command down:
8484
- Defines the environment variable {ref}`CRATE_HEAP_SIZE <crate-reference:conf-env-heap-size>`,
8585
which is used by CrateDB to allocate 1 GB for its heap memory.
8686
- Runs the command `crate` inside the container with parameters:
87-
: - `network.host`: The `_site_` value results in the binding of the
87+
- `network.host`: The `_site_` value results in the binding of the
8888
CrateDB process to a site-local IP address.
8989
- `node.name`: Defines the node's name as `crate01` (used by
9090
master election).

docs/install/container/kubernetes/kubernetes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,9 @@ spec:
234234
- -Cgateway.expected_data_nodes=${EXPECTED_NODES}
235235
- -Cpath.data=/data
236236
volumeMounts:
237-
# Mount the `/data` directory as a volume named `data`.
237+
# Mount the volume named `cratedb-data` to the `/data` directory.
238238
- mountPath: /data
239-
name: data
239+
name: cratedb-data
240240
resources:
241241
limits:
242242
# How much memory each pod gets.

docs/install/redhat.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,16 @@ can read more about the [release workflow].
5454

5555
If `sudo` is missing, run this as root:
5656
```shell
57-
# Red Hat-compatible systems
57+
# Red Hat-compatible systems (RHEL/CentOS 8+)
5858
dnf install sudo
5959
```
6060
or:
6161
```shell
62+
# Red Hat-compatible systems (RHEL/CentOS 7)
63+
yum install sudo
64+
```
65+
or:
66+
```shell
6267
# SUSE-based systems
6368
zypper install sudo
6469
```
@@ -68,8 +73,14 @@ zypper install sudo
6873
With everything set up, you can install CrateDB:
6974

7075
```shell
76+
# Red Hat-compatible systems
7177
sudo dnf install --enablerepo=cratedb-ce-stable crate
7278
```
79+
or:
80+
```shell
81+
# SUSE-based systems
82+
sudo zypper install --repo=cratedb-ce-stable crate
83+
```
7384

7485
:::{TIP}
7586
On older Red Hat and CentOS installations, please use the `yum` command

0 commit comments

Comments
 (0)