-
Notifications
You must be signed in to change notification settings - Fork 539
packaging: add opensuse and sles #2103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Dan Illescas <[email protected]>
installation/downloads/linux/suse.md
Outdated
@@ -0,0 +1,140 @@ | |||
# openSUSE and SLES | |||
|
|||
Fluent Bit is distributed as the `fluent-bit` package and is available for the latest stable opensuse-leap and sles 15.7 system. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fluent Bit is distributed as the `fluent-bit` package and is available for the latest stable opensuse-leap and sles 15.7 system. | |
Fluent Bit is distributed as the `fluent-bit` package and is available for the latest stable OpenSUSE-leap and SLES 15.7 system. |
Suggesting this change this to meet the spell checker.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made some consistency suggestions which will fix some of the vale warnings.
I also updated the vale test so that SUSE/SLES shouldn't give warnings anymore, but those are in master so this branch is still going to have the warnings but won't after merging (or if it's rebased).
installation/downloads/linux/suse.md
Outdated
|
||
## For openSUSE and SUSE Linux Enterprise Server (SLES) | ||
|
||
Fluent Bit provides packages for openSUSE (Leap) and SUSE Linux Enterprise Server (SLES). The repository uses the $releasever variable to dynamically fetch packages for your specific system version. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fluent Bit provides packages for openSUSE (Leap) and SUSE Linux Enterprise Server (SLES). The repository uses the $releasever variable to dynamically fetch packages for your specific system version. | |
Fluent Bit provides packages for openSUSE (Leap) and SUSE Linux Enterprise Server (SLES). The repository uses the `$releasever` variable to dynamically fetch packages for your specific system version. |
installation/downloads/linux/suse.md
Outdated
```text | ||
sudo zypper refresh | ||
``` | ||
1. As a best practice, gpgcheck and repo_gpgcheck are enabled by default for security reasons. Fluent Bit signs its repository metadata and all Fluent Bit packages |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1. As a best practice, gpgcheck and repo_gpgcheck are enabled by default for security reasons. Fluent Bit signs its repository metadata and all Fluent Bit packages | |
1. As a best practice, `gpgcheck` and `repo_gpgcheck` are enabled by default for security reasons. Fluent Bit signs its repository metadata and all Fluent Bit packages |
installation/downloads/linux/suse.md
Outdated
$ sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* && \ | ||
|
||
$ sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$ sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* && \ | |
$ sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-* | |
sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* && \ | |
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-* |
installation/downloads/linux/suse.md
Outdated
|
||
## SLES | ||
|
||
For openSUSE and SUSE Linux Enterprise Server (SLES) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For openSUSE and SUSE Linux Enterprise Server (SLES) | |
For openSUSE and SUSE Linux Enterprise Server (SLES): |
installation/downloads/linux/suse.md
Outdated
|
||
For openSUSE and SUSE Linux Enterprise Server (SLES) | ||
|
||
Fluent Bit provides packages for openSUSE (Leap) and SUSE Linux Enterprise Server (SLES). The repository uses the $releasever variable to dynamically fetch packages for your specific system version. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fluent Bit provides packages for openSUSE (Leap) and SUSE Linux Enterprise Server (SLES). The repository uses the $releasever variable to dynamically fetch packages for your specific system version. | |
Fluent Bit provides packages for openSUSE (Leap) and SUSE Linux Enterprise Server (SLES). The repository uses the `$releasever` variable to dynamically fetch packages for your specific system version. |
Signed-off-by: Dan Illescas <[email protected]>
@esmerel thanks for your review and suggestions. i just pushed changes for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added a very small nitpick. Could you check it?
installation/downloads/linux/suse.md
Outdated
- `aarch64` | ||
- `arm64v8` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Basically, aarch64 and arm64v8 could be same.
If we use arm64v8 term on this project, we need to distinguish arm64v9 in the future.
This could be hard for us.
What do you think of it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, using aarch64 would be better going forward and is the standard. I can push an update. Other linux distro documentation here uses arm64v8 which may be confusing.
Also noting that the packaging scripts heavily use arm64v8 as a naming convention.
…onfusion and issues going forward Signed-off-by: Dan Illescas <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For technical terminology, it looks good to me.
Support for opensuse-leap 15.6 and sles 15.7 pacakging. See fluent-bit/10978 for implementation, resolves #10875