File tree Expand file tree Collapse file tree 4 files changed +17
-6
lines changed Expand file tree Collapse file tree 4 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ instances.
2727
2828It is recommended to restrict the permissions of CrateDB on S3 to only the
2929required 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
3232be restricted. An example policy file granting anybody access to a bucket
3333called ` snaps.example.com` is attached below:
3434
Original file line number Diff line number Diff 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).
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change @@ -54,11 +54,16 @@ can read more about the [release workflow].
5454
5555If ` sudo ` is missing, run this as root:
5656``` shell
57- # Red Hat-compatible systems
57+ # Red Hat-compatible systems (RHEL/CentOS 8+)
5858dnf install sudo
5959```
6060or:
6161``` shell
62+ # Red Hat-compatible systems (RHEL/CentOS 7)
63+ yum install sudo
64+ ```
65+ or:
66+ ``` shell
6267# SUSE-based systems
6368zypper install sudo
6469```
@@ -68,8 +73,14 @@ zypper install sudo
6873With everything set up, you can install CrateDB:
6974
7075``` shell
76+ # Red Hat-compatible systems
7177sudo 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}
7586On older Red Hat and CentOS installations, please use the ` yum ` command
You can’t perform that action at this time.
0 commit comments