Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mfreeman451 committed Mar 2, 2025
1 parent 645e33e commit cec2ad9
Show file tree
Hide file tree
Showing 12 changed files with 45 additions and 45 deletions.
2 changes: 1 addition & 1 deletion Dockerfile-rpm.cloud
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ COPY packaging/cloud/systemd/serviceradar-cloud.service /root/rpmbuild/SOURCES/s
COPY scripts/setup-rpm-*.sh /build/

# Set default version (can be overridden at build time)
ARG VERSION=1.0.19
ARG VERSION=1.0.20
ARG RELEASE=1

# Build the RPM
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.rpm.simple
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ RUN echo "=== Files in BUILD ===" && \
ls -la /root/rpmbuild/SOURCES/config/checkers/

# Set default version (can be overridden at build time)
ARG VERSION=1.0.19
ARG VERSION=1.0.20
ARG RELEASE=1

# Build the RPM
Expand Down
40 changes: 20 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,52 +47,52 @@ ServiceRadar can be installed via direct downloads from GitHub releases.
Install these components on your monitored host:
```bash
# Download and install core components
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-agent_1.0.19.deb \
-O https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-poller_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-agent_1.0.20.deb \
-O https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-poller_1.0.20.deb

sudo dpkg -i serviceradar-agent_1.0.19.deb serviceradar-poller_1.0.19.deb
sudo dpkg -i serviceradar-agent_1.0.20.deb serviceradar-poller_1.0.20.deb
```

On a separate machine (recommended) or the same host:
```bash
# Download and install cloud service
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-cloud_1.0.19.deb
sudo dpkg -i serviceradar-cloud_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-cloud_1.0.20.deb
sudo dpkg -i serviceradar-cloud_1.0.20.deb
```

#### Optional: SNMP Polling
Download and install the SNMP checker to collect and visualize metrics:
```bash
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-snmp-checker_1.0.19.deb
sudo dpkg -i serviceradar-snmp-checker_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-snmp-checker_1.0.20.deb
sudo dpkg -i serviceradar-snmp-checker_1.0.20.deb
```

#### Optional: Dusk Node Monitoring
If you're running a [Dusk](https://dusk.network/) node and want specialized monitoring:
```bash
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-dusk-checker_1.0.19.deb
sudo dpkg -i serviceradar-dusk-checker_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-dusk-checker_1.0.20.deb
sudo dpkg -i serviceradar-dusk-checker_1.0.20.deb
```

#### Distributed Setup
For larger deployments where components run on different hosts:

1. On monitored hosts:
```bash
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-agent_1.0.19.deb
sudo dpkg -i serviceradar-agent_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-agent_1.0.20.deb
sudo dpkg -i serviceradar-agent_1.0.20.deb
```

2. On monitoring host:
```bash
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-poller_1.0.19.deb
sudo dpkg -i serviceradar-poller_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-poller_1.0.20.deb
sudo dpkg -i serviceradar-poller_1.0.20.deb
```

3. On cloud host:
```bash
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-cloud_1.0.19.deb
sudo dpkg -i serviceradar-cloud_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-cloud_1.0.20.deb
sudo dpkg -i serviceradar-cloud_1.0.20.deb
```

## Security
Expand Down Expand Up @@ -203,24 +203,24 @@ cd serviceradar

1. **Agent Installation** (on monitored hosts):
```bash
sudo dpkg -i serviceradar-dusk-checker_1.0.19.deb # For Dusk nodes
sudo dpkg -i serviceradar-dusk-checker_1.0.20.deb # For Dusk nodes
# or
sudo dpkg -i serviceradar-agent_1.0.19.deb # For other hosts
sudo dpkg -i serviceradar-agent_1.0.20.deb # For other hosts
```

2. **Poller Installation** (on any host in your network):
```bash
sudo dpkg -i serviceradar-poller_1.0.19.deb
sudo dpkg -i serviceradar-poller_1.0.20.deb
```

3. **Cloud Installation** (on a reliable host):
```bash
sudo dpkg -i serviceradar-cloud_1.0.19.deb
sudo dpkg -i serviceradar-cloud_1.0.20.deb
```

4. **SNMP Poller** (Optional):
```bash
sudo dpkg -i serviceradar-snmp-checker_1.0.19.deb
sudo dpkg -i serviceradar-snmp-checker_1.0.20.deb
```

## Configuration
Expand Down
30 changes: 15 additions & 15 deletions docs/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ Install these components on your monitored host:

```bash
# Download and install core components
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-agent_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-poller_1.0.19.deb
sudo dpkg -i serviceradar-agent_1.0.19.deb serviceradar-poller_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-agent_1.0.20.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-poller_1.0.20.deb
sudo dpkg -i serviceradar-agent_1.0.20.deb serviceradar-poller_1.0.20.deb
```

On a separate machine (recommended) or the same host for the cloud service:

```bash
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-cloud_1.0.19.deb
sudo dpkg -i serviceradar-cloud_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-cloud_1.0.20.deb
sudo dpkg -i serviceradar-cloud_1.0.20.deb
```

## Optional Components
Expand All @@ -32,17 +32,17 @@ sudo dpkg -i serviceradar-cloud_1.0.19.deb
For collecting and visualizing metrics:

```bash
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-snmp-checker_1.0.19.deb
sudo dpkg -i serviceradar-snmp-checker_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-snmp-checker_1.0.20.deb
sudo dpkg -i serviceradar-snmp-checker_1.0.20.deb
```

### Dusk Node Monitoring

For specialized monitoring of Dusk nodes:

```bash
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-agent_1.0.19.deb
sudo dpkg -i serviceradar-agent_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-agent_1.0.20.deb
sudo dpkg -i serviceradar-agent_1.0.20.deb
```

## Distributed Setup
Expand All @@ -52,20 +52,20 @@ For larger deployments, install components on separate hosts:
1. On monitored hosts:

```bash
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-agent_1.0.19.deb
sudo dpkg -i serviceradar-agent_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-agent_1.0.20.deb
sudo dpkg -i serviceradar-agent_1.0.20.deb
```

2. On monitoring host:

```bash
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-poller_1.0.19.deb
sudo dpkg -i serviceradar-poller_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-poller_1.0.20.deb
sudo dpkg -i serviceradar-poller_1.0.20.deb
```

3. On cloud host:

```bash
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.19/serviceradar-cloud_1.0.19.deb
sudo dpkg -i serviceradar-cloud_1.0.19.deb
curl -LO https://github.com/carverauto/serviceradar/releases/download/1.0.20/serviceradar-cloud_1.0.20.deb
sudo dpkg -i serviceradar-cloud_1.0.20.deb
```
2 changes: 1 addition & 1 deletion pkg/cloud/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ func (s *Server) sendStartupNotification(ctx context.Context) error {
Timestamp: time.Now().UTC().Format(time.RFC3339),
NodeID: "cloud",
Details: map[string]any{
"version": "1.0.19",
"version": "1.0.20",
"hostname": getHostname(),
},
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/buildAll.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=${VERSION:-1.0.19}
VERSION=${VERSION:-1.0.20}


./scripts/setup-deb-agent.sh
Expand Down
2 changes: 1 addition & 1 deletion scripts/buildRpms.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e

export VERSION=${VERSION:-1.0.19}
export VERSION=${VERSION:-1.0.20}
export RELEASE=${RELEASE:-1}

# Create directories if they don't exist
Expand Down
2 changes: 1 addition & 1 deletion scripts/deployTesting.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Define the version of the packages
VERSION=${VERSION:-1.0.19}
VERSION=${VERSION:-1.0.20}

# Define the list of remote machines
MACHINES=("192.168.2.10" "192.168.2.11" "192.168.2.12" "192.168.2.68")
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup-deb-agent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# setup-deb-agent.sh
set -e # Exit on any error

VERSION=${VERSION:-1.0.19}
VERSION=${VERSION:-1.0.20}
echo "Building serviceradar-agent version ${VERSION}"

echo "Setting up package structure..."
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup-deb-dusk-checker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e # Exit on any error

echo "Setting up package structure..."

VERSION=${VERSION:-1.0.19}
VERSION=${VERSION:-1.0.20}

# Create package directory structure
PKG_ROOT="serviceradar-dusk-checker_${VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup-deb-poller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e # Exit on any error

echo "Setting up package structure..."

VERSION=${VERSION:-1.0.19}
VERSION=${VERSION:-1.0.20}

# Create package directory structure
PKG_ROOT="serviceradar-poller_${VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup-deb-snmp-checker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# setup-deb-snmp-checker.sh
set -e # Exit on any error

VERSION=${VERSION:-1.0.19}
VERSION=${VERSION:-1.0.20}
echo "Building serviceradar-snmp-checker version ${VERSION}"

echo "Setting up package structure..."
Expand Down

0 comments on commit cec2ad9

Please sign in to comment.