Skip to content

Commit

Permalink
Merge pull request #3044 from ivotron/change-betas-for-rc-in-readme
Browse files Browse the repository at this point in the history
readme: change note on beta releases (for RCs)
  • Loading branch information
ivotron committed May 1, 2022
2 parents 56603c2 + 283956d commit 97bc2f6
Showing 1 changed file with 15 additions and 18 deletions.
33 changes: 15 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,38 +92,35 @@ sudo ./install-dependencies.sh && CC=clang CXX=clang++ ./build.sh

For quicker dev setup, we provide a [docker image](tools/docker/README.md) with the toolchain installed.

# Beta builds
# Release candidate builds

For those of us who like to live on the edge!
We create a release candidate (RC) build when we get close to a new release and publish these to make new features available for testing.

This comment has been minimized.

Copy link
@emaxerrno

emaxerrno May 1, 2022

Contributor

should we also post nightlies here?

RC builds are not recommended for production use.

We can cut a release at any point from the `/dev` branch if you want to test a particular feature.
Simply let us know you would like to test a feature from dev and we're happy to cut a beta release.
## RC releases on Debian/Ubuntu


## Beta releases on Debian/Ubuntu

```
```bash
curl -1sLf \
'https://packages.vectorized.io/HxYRCzL4xbbaEtPi/redpanda-beta/setup.deb.sh' \
'https://packages.vectorized.io/E4xN1tVe3Xy60GTx/redpanda-unstable/setup.deb.sh' \
| sudo -E bash
sudo apt-get install redpanda
```

## Beta releases on Fedora/RedHat/Amazon Linux
## RC releases on Fedora/RedHat/Amazon Linux

```
```bash
curl -1sLf \
'https://packages.vectorized.io/HxYRCzL4xbbaEtPi/redpanda-beta/setup.rpm.sh' \
'https://packages.vectorized.io/E4xN1tVe3Xy60GTx/redpanda-unstable/setup.rpm.sh' \
| sudo -E bash
sudo yum install redpanda
```

## Beta releases on Docker
## RC releases on Docker

This is an example with the `v21.3.5-beta3` version prior to the 21.3.5 release.
This is an example with the `v22.1.1-rc1` version prior to the 22.1.1 release.

```
docker.vectorized.io/vectorized/redpanda:v21.3.5-beta3
```bash
docker pull docker.vectorized.io/vectorized/redpanda-unstable:v22.1.1-rc1
```

0 comments on commit 97bc2f6

Please sign in to comment.