Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions distributions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ If a distribution provides linux packages (refer to its README), you can follow
##### DEB Installation
```bash
export collector_distro="nrdot-collector-host"
export collector_version="1.2.0"
export collector_version="1.3.0"
export collector_arch="amd64" # or arm64
export license_key="YOUR_LICENSE_KEY"

Expand All @@ -91,7 +91,7 @@ sudo systemctl reload-or-restart "${collector_distro}.service"
### RPM Installation
```bash
export collector_distro="nrdot-collector-host"
export collector_version="1.2.0"
export collector_version="1.3.0"
export collector_arch="x86_64" # or arm64
export license_key="YOUR_LICENSE_KEY"

Expand All @@ -105,7 +105,7 @@ sudo systemctl reload-or-restart "${collector_distro}.service"
Archives contain the binary and the default configuration which is usually `config.yaml` unless the distro packages multiple defaults, e.g. `nrdot-collector-k8s`.
```bash
export collector_distro="nrdot-collector-host"
export collector_version="1.2.0"
export collector_version="1.3.0"
export collector_arch="amd64" # or arm64
export license_key="YOUR_LICENSE_KEY"
curl "https://github.com/newrelic/nrdot-collector-releases/releases/download/${collector_version}/${collector_distro}_${collector_version}_linux_${collector_arch}.tar.gz" --location --output collector.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion distributions/nrdot-collector-host/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dist:
module: github.com/newrelic/nrdot-collector-releases/nrdot-collector-host
name: nrdot-collector-host
description: NRDOT Collector Host
version: 1.2.0
version: 1.3.0
output_path: ./_build
receivers:
- gomod: go.opentelemetry.io/collector/receiver/otlpreceiver v0.131.0
Expand Down
2 changes: 1 addition & 1 deletion distributions/nrdot-collector-k8s/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dist:
module: github.com/newrelic/nrdot-collector-releases/nrdot-collector-k8s
name: nrdot-collector-k8s
description: NRDOT Collector k8s
version: 1.2.0
version: 1.3.0
output_path: ./_build
receivers:
- gomod: go.opentelemetry.io/collector/receiver/otlpreceiver v0.131.0
Expand Down
2 changes: 1 addition & 1 deletion distributions/nrdot-collector/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dist:
module: github.com/newrelic/nrdot-collector-releases/nrdot-collector
name: nrdot-collector
description: NRDOT Collector
version: 1.2.0
version: 1.3.0
output_path: ./_build
receivers:
- gomod: go.opentelemetry.io/collector/receiver/otlpreceiver v0.131.0
Expand Down
4 changes: 2 additions & 2 deletions scripts/bump-nrdot-version.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash
# Simple script to bump versions for new release to document all places that need to be updated
set -e
old_version=1.1.1
new_version=1.2.0
old_version=1.2.0
new_version=1.3.0

REPO_DIR="$( cd "$(dirname "$( dirname "${BASH_SOURCE[0]}" )")" &> /dev/null && pwd )"

Expand Down
Loading