Skip to content

Commit 8d84599

Browse files
author
Pat
authored
linux: add AL 2022 as a supported platform (#927)
Signed-off-by: Patrick Stephens <[email protected]> Signed-off-by: Patrick Stephens <[email protected]>
1 parent 1180079 commit 8d84599

File tree

3 files changed

+24
-10
lines changed

3 files changed

+24
-10
lines changed

installation/linux/amazon-linux.md

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Amazon Linux
22

3-
## Install on Amazon Linux 2
3+
## Install on Amazon Linux
44

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

77
* x86\_64
88
* aarch64 / arm64v8
@@ -21,7 +21,9 @@ If this fails or for more details on the installation then please refer to the s
2121

2222
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:
2323

24-
```
24+
### Amazon Linux 2
25+
26+
```config
2527
[fluent-bit]
2628
name = Fluent Bit
2729
baseurl = https://packages.fluentbit.io/amazonlinux/2/$basearch/
@@ -30,15 +32,26 @@ gpgkey=https://packages.fluentbit.io/fluentbit.key
3032
enabled=1
3133
```
3234

33-
note: we encourage you always enable the _gpgcheck_ for security reasons. All our packages are signed.
35+
### Amazon Linux 2022
36+
37+
```config
38+
[fluent-bit]
39+
name = Fluent Bit
40+
baseurl = https://packages.fluentbit.io/amazonlinux/2022/$basearch/
41+
gpgcheck=1
42+
gpgkey=https://packages.fluentbit.io/fluentbit.key
43+
enabled=1
44+
```
45+
46+
Note: we encourage you always enable the _gpgcheck_ for security reasons. All our packages are signed.
3447

3548
### Updated key from March 2022
3649

3750
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.
3851

3952
The GPG Key fingerprint of the new key is:
4053

41-
```
54+
```text
4255
C3C0 A285 34B9 293E AF51 FABD 9F9D DC08 3888 C1CD
4356
Fluentbit releases (Releases signing key) <[email protected]>
4457
```
@@ -47,7 +60,7 @@ The previous key is still available at [https://packages.fluentbit.io/fluentbit-
4760

4861
The GPG Key fingerprint of the old key is:
4962

50-
```
63+
```text
5164
F209 D876 2A60 CD49 E680 633B 4FF8 368B 6EA0 722A
5265
```
5366

@@ -58,13 +71,13 @@ Refer to the [supported platform documentation](../supported-platforms.md) to se
5871
Once your repository is configured, run the following command to install it:
5972

6073
```bash
61-
$ yum install fluent-bit
74+
yum install fluent-bit
6275
```
6376

6477
Now the following step is to instruct _systemd_ to enable the service:
6578

6679
```bash
67-
$ sudo service fluent-bit start
80+
sudo service fluent-bit start
6881
```
6982

7083
If you do a status check, you should see a similar output like this:

installation/requirements.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Compiler: GCC or clang
66
* CMake
77
* Flex & Bison: only if you enable the Stream Processor or Record Accessor feature \(both enabled by default\)
8+
* Libyaml development headers and libraries
89

910
In the core there are not other dependencies, For certain features that depends on third party components like output plugins with special backend libraries \(e.g: kafka\), those are included in the main source code repository.
1011

installation/supported-platforms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ The following operating systems and architectures are supported in Fluent Bit.
44

55
| Operating System | Distribution | Architectures |
66
| :--- | :--- | :--- |
7-
| Linux | [Amazon Linux 2](linux/amazon-linux.md) | x86\_64, Arm64v8 |
7+
| Linux | [Amazon Linux 2022](linux/amazon-linux.md) | x86\_64, Arm64v8 |
8+
| | [Amazon Linux 2](linux/amazon-linux.md) | x86\_64, Arm64v8 |
89
| | [Centos 8](linux/redhat-centos.md) | x86\_64, Arm64v8 |
910
| | [Centos 7](linux/redhat-centos.md) | x86\_64, Arm64v8 |
1011
| | [Rocky Linux 8](linux/redhat-centos.md) | x86\_64, Arm64v8 |
@@ -24,4 +25,3 @@ The following operating systems and architectures are supported in Fluent Bit.
2425
From an architecture support perspective, Fluent Bit is fully functional on x86\_64, Arm64v8 and Arm32v7 based processors.
2526

2627
Fluent Bit can work also on OSX and \*BSD systems, but not all plugins will be available on all platforms. Official support will be expanding based on community demand. Fluent Bit may run on older operating systems though will need to be built from source, or use custom packages from [enterprise providers](https://fluentbit.io/enterprise)
27-

0 commit comments

Comments
 (0)