Skip to content

Commit bda2703

Browse files
committed
docs(release): bump install examples to VERSION=0.3.2
1 parent 74ca1b4 commit bda2703

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ On a fresh Debian / Ubuntu VM (`amd64`):
3636

3737
```sh
3838
# 1. Install the server.
39-
VERSION=0.3.1
39+
VERSION=0.3.2
4040
curl -fsSLO "https://github.com/juev/nebula-mesh/releases/download/v${VERSION}/nebula-mgmt_${VERSION}_linux_amd64.deb"
4141
sudo apt install -y "./nebula-mgmt_${VERSION}_linux_amd64.deb"
4242

@@ -120,12 +120,12 @@ nebula-mesh ships **two** static binaries. Install whichever you need on each ma
120120
| `nebula-mgmt` | one server (the control plane) |
121121
| `nebula-agent` | every Nebula host, next to `nebula` |
122122

123-
Pick an install method below. The examples assume `VERSION=0.3.1` — replace with the latest from the [releases page](https://github.com/juev/nebula-mesh/releases/latest). Each release ships a `checksums.txt` (SHA-256).
123+
Pick an install method below. The examples assume `VERSION=0.3.2` — replace with the latest from the [releases page](https://github.com/juev/nebula-mesh/releases/latest). Each release ships a `checksums.txt` (SHA-256).
124124

125125
### Debian / Ubuntu (`.deb`)
126126

127127
```sh
128-
VERSION=0.3.1
128+
VERSION=0.3.2
129129
ARCH=$(dpkg --print-architecture) # amd64 | arm64 | armhf (agent only)
130130

131131
# Server (control plane):
@@ -140,7 +140,7 @@ sudo apt install -y "./nebula-agent_${VERSION}_linux_${ARCH}.deb"
140140
### RHEL / Fedora / Rocky / Alma (`.rpm`)
141141

142142
```sh
143-
VERSION=0.3.1
143+
VERSION=0.3.2
144144
ARCH=$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')
145145

146146
sudo rpm -i "https://github.com/juev/nebula-mesh/releases/download/v${VERSION}/nebula-mgmt_${VERSION}_linux_${ARCH}.rpm"
@@ -154,7 +154,7 @@ sudo rpm -i "https://github.com/juev/nebula-mesh/releases/download/v${VERSION}/n
154154
Download a tarball from the [releases page](https://github.com/juev/nebula-mesh/releases/latest) and extract:
155155

156156
```sh
157-
VERSION=0.3.1
157+
VERSION=0.3.2
158158
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
159159
ARCH=$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')
160160

docs/deployment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ Quickstart:
2929

3030
```hcl
3131
module "nebula_mgmt" {
32-
source = "github.com/juev/nebula-mesh//deploy/terraform/nebula-mgmt?ref=v0.3.1"
33-
release_version = "v0.3.1"
32+
source = "github.com/juev/nebula-mesh//deploy/terraform/nebula-mgmt?ref=v0.3.2"
33+
release_version = "v0.3.2"
3434
fqdn = "mgmt.internal.example.com"
3535
instance_id = aws_instance.nebula_mgmt.id
3636
instance_public_ip = aws_instance.nebula_mgmt.public_ip

0 commit comments

Comments
 (0)