Skip to content
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

feat: add EL install instructions #789

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
25 changes: 24 additions & 1 deletion content/en/docs/v3.5/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,30 @@ $ etcd --version

## Linux

TBD
### Enterprise Linux (CentOS Stream, RHEL)

- Prerequisites
- Enable a repository that ships etcd:
- [PostgreSQL YUM Repository](https://yum.postgresql.org/). Includes
up-to-date versions
- [RDO repository](https://www.rdoproject.org/what/repos/) or a
[OpenStack repository from extras](https://docs.openstack.org/install-guide/environment-packages-rdo.html#enable-the-openstack-repository).
Includes older versions for compatibility with the OpenStack release.

- Procedure
- Install using dnf

```sh
$ sudo dnf install etcd
```

- After configuring, start and enable Systemd service

```sh
$ sudo systemctl start etcd
$ sudo systemctl enable etcd
```

## Installation as part of Kubernetes installation

TBD---Help Wanted
Expand Down
24 changes: 23 additions & 1 deletion content/en/docs/v3.6/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,29 @@ $ etcd --version

## Linux

TBD
### Enterprise Linux (CentOS Stream, RHEL)

- Prerequisites
- Enable a repository that ships etcd:
- [PostgreSQL YUM Repository](https://yum.postgresql.org/). Includes
up-to-date versions
- [RDO repository](https://www.rdoproject.org/what/repos/) or a
[OpenStack repository from extras](https://docs.openstack.org/install-guide/environment-packages-rdo.html#enable-the-openstack-repository).
Includes older versions for compatibility with the OpenStack release.

- Procedure
- Install using dnf

```sh
$ sudo dnf install etcd
```

- After configuring, start and enable Systemd service

```sh
$ sudo systemctl start etcd
$ sudo systemctl enable etcd
```

## Installation as part of Kubernetes installation

Expand Down