Skip to content

Commit 1cdb789

Browse files
committed
Updating amazon linux page for style and consistency
Signed-off-by: Lynette Miles <[email protected]>
1 parent d335e88 commit 1cdb789

File tree

1 file changed

+34
-27
lines changed

1 file changed

+34
-27
lines changed

installation/linux/amazon-linux.md

Lines changed: 34 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,35 @@
22

33
## Install on Amazon Linux
44

5-
Fluent Bit is distributed as **fluent-bit** package and is available for the latest Amazon Linux 2 and Amazon Linux 2023.
6-
The following architectures are supported
5+
Fluent Bit is distributed as the `fluent-bit` package and is available for the latest
6+
Amazon Linux 2 and Amazon Linux 2023. The following architectures are supported
77

8-
* x86\_64
9-
* aarch64 / arm64v8
8+
- x86_64
9+
- aarch64 / arm64v8
10+
11+
Amazon Linux 2022 is no longer supported.
1012

1113
## Single line install
1214

13-
A simple installation script is provided to be used for most Linux targets.
14-
This will always install the most recent version released.
15+
Fluent Bit provides an installation script to use for most Linux targets.
16+
This will always install the most recently released version.
1517

16-
```bash
18+
```bash copy
1719
curl https://raw.githubusercontent.com/fluent/fluent-bit/master/install.sh | sh
1820
```
1921

20-
This is purely a convenience helper and should always be validated prior to use.
21-
The recommended secure deployment approach is to follow the instructions below.
22-
23-
### Amazon Linux 2022
24-
25-
Amazon Linux 2022 was previously supported but is removed since it became GA Amazon Linux 2023
22+
This is a convenience helper and should always be validated prior to use.
23+
The recommended secure deployment approach is to use the following instructions:
2624

2725
## Configure Yum
2826

29-
We provide **fluent-bit** through a Yum repository. In order to add the repository reference to your system, please add a new file called _fluent-bit.repo_ in _/etc/yum.repos.d/_ with the following content:
27+
The `fluent-bit` is provided through a Yum repository. To add the repository
28+
reference to your system, add a new file called `fluent-bit.repo` in
29+
`/etc/yum.repos.d/` with the following content:
3030

3131
### Amazon Linux 2
3232

33-
```config
33+
```text copy
3434
[fluent-bit]
3535
name = Fluent Bit
3636
baseurl = https://packages.fluentbit.io/amazonlinux/2/
@@ -41,7 +41,7 @@ enabled=1
4141

4242
### Amazon Linux 2023
4343

44-
```config
44+
```text copy
4545
[fluent-bit]
4646
name = Fluent Bit
4747
baseurl = https://packages.fluentbit.io/amazonlinux/2023/
@@ -50,11 +50,14 @@ gpgkey=https://packages.fluentbit.io/fluentbit.key
5050
enabled=1
5151
```
5252

53-
Note: we encourage you always enable the _gpgcheck_ for security reasons. All our packages are signed.
53+
You should always enable `gpgcheck` for security reasons. All Fluent Bit packages
54+
are signed.
5455

5556
### Updated key from March 2022
5657

57-
From the 1.9.0 and 1.8.15 releases please note that the GPG key has been updated at [https://packages.fluentbit.io/fluentbit.key](https://packages.fluentbit.io/fluentbit.key) so ensure this new one is added.
58+
For the 1.9.0 and 1.8.15 and later releases, the
59+
[GPG key has been updated](https://packages.fluentbit.io/fluentbit.key). Ensure
60+
this new one is added.
5861

5962
The GPG Key fingerprint of the new key is:
6063

@@ -63,27 +66,29 @@ C3C0 A285 34B9 293E AF51 FABD 9F9D DC08 3888 C1CD
6366
Fluentbit releases (Releases signing key) <[email protected]>
6467
```
6568

66-
The previous key is still available at [https://packages.fluentbit.io/fluentbit-legacy.key](https://packages.fluentbit.io/fluentbit-legacy.key) and may be required to install previous versions.
69+
The previous key is [still available](https://packages.fluentbit.io/fluentbit-legacy.key)
70+
and might be required to install previous versions.
6771

6872
The GPG Key fingerprint of the old key is:
6973

7074
```text
7175
F209 D876 2A60 CD49 E680 633B 4FF8 368B 6EA0 722A
7276
```
7377

74-
Refer to the [supported platform documentation](../supported-platforms.md) to see which platforms are supported in each release.
78+
Refer to the [supported platform documentation](../supported-platforms.md) to see
79+
which platforms are supported in each release.
7580

7681
### Install
7782

78-
Once your repository is configured, run the following command to install it:
83+
1. After your repository is configured, run the following command to install it:
7984

80-
```bash
81-
sudo yum install fluent-bit
82-
```
85+
```bash copy
86+
sudo yum install fluent-bit
87+
```
8388

84-
Now the following step is to instruct _systemd_ to enable the service:
89+
1. Instruct `systemd` to enable the service:
8590

86-
```bash
91+
```bash copy
8792
sudo systemctl start fluent-bit
8893
```
8994

@@ -100,4 +105,6 @@ $ systemctl status fluent-bit
100105
...
101106
```
102107

103-
The default configuration of **fluent-bit** is collecting metrics of CPU usage and sending the records to the standard output, you can see the outgoing data in your _/var/log/messages_ file.
108+
The default Fluent Bit configuration collect metrics of CPU usage and sends the
109+
records to the standard output. You can see the outgoing data in your
110+
`/var/log/messages` file.

0 commit comments

Comments
 (0)