Skip to content

Commit c30227d

Browse files
authored
Merge pull request thingsboard#417 from thingsboard/develop/3.1.1
Release 3.1.1/2.5.4
2 parents 705d13e + 01e8bb1 commit c30227d

File tree

77 files changed

+563
-121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+563
-121
lines changed

_config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,11 @@ permalink: pretty
5757
plugins:
5858
- jekyll-redirect-from
5959
- jekyll-seo-tag
60+
61+
release:
62+
branch: release-3.1
63+
ce_ver: 3.1.1
64+
ce_tag: v3.1.1
65+
ce_full_ver: 3.1.1
66+
pe_ver: 3.1.1pe
67+
pe_full_ver: 3.1.1PE

_includes/templates/install/integration/aws-docker-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Execute the following command to run this docker directly:
1313
docker run -it -v tb-pe-aws-integration-logs:/var/log/tb-aws-integration `
1414
-e "PRC_HOST=cloud.thingsboard.io" -e "RPC_PORT=9090" `
1515
-e "INTEGRATION_ROUTING_KEY=YOUR_ROUTING_KEY" -e "INTEGRATION_SECRET=YOUR_SECRET" `
16-
--name my-tb-pe-aws-integration --restart always thingsboard/tb-pe-aws-integration:3.1PE
16+
--name my-tb-pe-aws-integration --restart always thingsboard/tb-pe-aws-integration:{{ site.release.pe_full_ver }}
1717
```
1818
{: .copy-code}
1919

@@ -28,7 +28,7 @@ Where:
2828
- `-v tb-pe-aws-integration-logs:/var/log/tb-aws-integration` - mounts the host's dir `~/.tb-pe-aws-integration-logs` to ThingsBoard logs directory;
2929
- `--name tb-pe-aws-integration` - friendly local name of this machine;
3030
- `--restart always` - automatically start ThingsBoard Integration in case of system reboot and restart in case of failure.;
31-
- `thingsboard/tb-pe-aws-integration:3.1.0PE` - docker image.
31+
- `thingsboard/tb-pe-aws-integration:{{ site.release.pe_full_ver }}` - docker image.
3232
3333
After executing this command you can open logs which are located here `~/.tb-pe-aws-integration-logs`.
3434
You should see some INFO log messages with your latest Integration configuration that arrived from the server.

_includes/templates/install/integration/aws-docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Execute the following command to run this docker directly:
44
docker run -it -v ~/.tb-pe-aws-integration-logs:/var/log/tb-aws-integration \
55
-e "PRC_HOST=cloud.thingsboard.io" -e "RPC_PORT=9090" \
66
-e "INTEGRATION_ROUTING_KEY=YOUR_ROUTING_KEY" -e "INTEGRATION_SECRET=YOUR_SECRET " \
7-
--name my-tb-pe-aws-integration --restart always thingsboard/tb-pe-aws-integration:3.1PE
7+
--name my-tb-pe-aws-integration --restart always thingsboard/tb-pe-aws-integration:{{ site.release.pe_full_ver }}
88
```
99
{: .copy-code}
1010

@@ -19,7 +19,7 @@ Where:
1919
- `-v ~/.tb-pe-aws-integration-logs:/var/log/tb-aws-integration` - mounts the host's dir `~/.tb-pe-aws-integration-logs` to ThingsBoard logs directory;
2020
- `--name tb-pe-aws-integration` - friendly local name of this machine;
2121
- `--restart always` - automatically start ThingsBoard Integration in case of system reboot and restart in case of failure.;
22-
- `thingsboard/tb-pe-aws-integration:3.1.0PE` - docker image.
22+
- `thingsboard/tb-pe-aws-integration:{{ site.release.pe_full_ver }}` - docker image.
2323

2424
After executing this command you can open logs which are located here `~/.tb-pe-aws-integration-logs`.
2525
You should see some INFO log messages with your latest Integration configuration that arrived from the server.

_includes/templates/install/integration/aws-rhel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Download installation package:
22

33
```bash
4-
wget https://dist.thingsboard.io/tb-aws-integration-3.1pe.rpm
4+
wget https://dist.thingsboard.io/tb-aws-integration-{{ site.release.pe_ver }}.rpm
55
```
66
{: .copy-code}
77

88
Install integration as a service:
99

1010
```bash
11-
sudo rpm -Uvh tb-aws-integration-3.1pe.rpm
11+
sudo rpm -Uvh tb-aws-integration-{{ site.release.pe_ver }}.rpm
1212
```
1313
{: .copy-code}
1414

_includes/templates/install/integration/aws-ubuntu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Download installation package:
22

33
```bash
4-
wget https://dist.thingsboard.io/tb-aws-integration-3.1pe.deb
4+
wget https://dist.thingsboard.io/tb-aws-integration-{{ site.release.pe_ver }}.deb
55
```
66
{: .copy-code}
77

88
Install integration as a service:
99

1010
```bash
11-
sudo dpkg -i tb-aws-integration-3.1pe.deb
11+
sudo dpkg -i tb-aws-integration-{{ site.release.pe_ver }}.deb
1212
```
1313
{: .copy-code}
1414

_includes/templates/install/integration/azure-docker-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Execute the following command to run this docker directly:
1313
docker run -it -v tb-pe-azure-integration-logs:/var/log/tb-azure-integration `
1414
-e "PRC_HOST=cloud.thingsboard.io" -e "RPC_PORT=9090" `
1515
-e "INTEGRATION_ROUTING_KEY=YOUR_ROUTING_KEY" -e "INTEGRATION_SECRET=YOUR_SECRET" `
16-
--name my-tb-pe-azure-integration --restart always thingsboard/tb-pe-azure-integration:3.1PE
16+
--name my-tb-pe-azure-integration --restart always thingsboard/tb-pe-azure-integration:{{ site.release.pe_full_ver }}
1717
```
1818
{: .copy-code}
1919

@@ -28,7 +28,7 @@ Where:
2828
- `-v tb-pe-azure-integration-logs:/var/log/tb-azure-integration` - mounts the host's dir `~/.tb-pe-azure-integration-logs` to ThingsBoard logs directory;
2929
- `--name tb-pe-azure-integration` - friendly local name of this machine;
3030
- `--restart always` - automatically start ThingsBoard Integration in case of system reboot and restart in case of failure.;
31-
- `thingsboard/tb-pe-azure-integration:3.1.0PE` - docker image.
31+
- `thingsboard/tb-pe-azure-integration:{{ site.release.pe_full_ver }}` - docker image.
3232
3333
After executing this command you can open logs which are located here `~/.tb-pe-azure-integration-logs`.
3434
You should see some INFO log messages with your latest Integration configuration that arrived from the server.

_includes/templates/install/integration/azure-docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Execute the following command to run this docker directly:
44
docker run -it -v ~/.tb-pe-azure-integration-logs:/var/log/tb-azure-integration \
55
-e "PRC_HOST=cloud.thingsboard.io" -e "RPC_PORT=9090" \
66
-e "INTEGRATION_ROUTING_KEY=YOUR_ROUTING_KEY" -e "INTEGRATION_SECRET=YOUR_SECRET " \
7-
--name my-tb-pe-azure-integration --restart always thingsboard/tb-pe-azure-integration:3.1PE
7+
--name my-tb-pe-azure-integration --restart always thingsboard/tb-pe-azure-integration:{{ site.release.pe_full_ver }}
88
```
99
{: .copy-code}
1010

@@ -19,7 +19,7 @@ Where:
1919
- `-v ~/.tb-pe-azure-integration-logs:/var/log/tb-azure-integration` - mounts the host's dir `~/.tb-pe-azure-integration-logs` to ThingsBoard logs directory;
2020
- `--name tb-pe-azure-integration` - friendly local name of this machine;
2121
- `--restart always` - automatically start ThingsBoard Integration in case of system reboot and restart in case of failure.;
22-
- `thingsboard/tb-pe-azure-integration:3.1.0PE` - docker image.
22+
- `thingsboard/tb-pe-azure-integration:{{ site.release.pe_full_ver }}` - docker image.
2323

2424
After executing this command you can open logs which are located here `~/.tb-pe-azure-integration-logs`.
2525
You should see some INFO log messages with your latest Integration configuration that arrived from the server.

_includes/templates/install/integration/azure-rhel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Download installation package:
22

33
```bash
4-
wget https://dist.thingsboard.io/tb-azure-integration-3.1pe.rpm
4+
wget https://dist.thingsboard.io/tb-azure-integration-{{ site.release.pe_ver }}.rpm
55
```
66
{: .copy-code}
77

88
Install integration as a service:
99

1010
```bash
11-
sudo rpm -Uvh tb-azure-integration-3.1pe.rpm
11+
sudo rpm -Uvh tb-azure-integration-{{ site.release.pe_ver }}.rpm
1212
```
1313
{: .copy-code}
1414

_includes/templates/install/integration/azure-ubuntu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Download installation package:
22

33
```bash
4-
wget https://dist.thingsboard.io/tb-azure-integration-3.1pe.deb
4+
wget https://dist.thingsboard.io/tb-azure-integration-{{ site.release.pe_ver }}.deb
55
```
66
{: .copy-code}
77

88
Install integration as a service:
99

1010
```bash
11-
sudo dpkg -i tb-azure-integration-3.1pe.deb
11+
sudo dpkg -i tb-azure-integration-{{ site.release.pe_ver }}.deb
1212
```
1313
{: .copy-code}
1414

_includes/templates/install/integration/http-docker-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Execute the following command to run this docker directly:
1313
docker run -it -v tb-pe-http-integration-logs:/var/log/tb-http-integration `
1414
-e "PRC_HOST=cloud.thingsboard.io" -e "RPC_PORT=9090" `
1515
-e "INTEGRATION_ROUTING_KEY=YOUR_ROUTING_KEY" -e "INTEGRATION_SECRET=YOUR_SECRET" `
16-
--name my-tb-pe-http-integration --restart always thingsboard/tb-pe-http-integration:3.1PE
16+
--name my-tb-pe-http-integration --restart always thingsboard/tb-pe-http-integration:{{ site.release.pe_full_ver }}
1717
```
1818
{: .copy-code}
1919

@@ -28,7 +28,7 @@ Where:
2828
- `-v tb-pe-http-integration-logs:/var/log/tb-http-integration` - mounts the host's dir `~/.tb-pe-http-integration-logs` to ThingsBoard logs directory;
2929
- `--name tb-pe-http-integration` - friendly local name of this machine;
3030
- `--restart always` - automatically start ThingsBoard Integration in case of system reboot and restart in case of failure.;
31-
- `thingsboard/tb-pe-http-integration:3.1.0PE` - docker image.
31+
- `thingsboard/tb-pe-http-integration:{{ site.release.pe_full_ver }}` - docker image.
3232
3333
After executing this command you can open logs which are located here `~/.tb-pe-http-integration-logs`.
3434
You should see some INFO log messages with your latest Integration configuration that arrived from the server.

_includes/templates/install/integration/http-docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Execute the following command to run this docker directly:
44
docker run -it -v ~/.tb-pe-http-integration-logs:/var/log/tb-http-integration \
55
-e "PRC_HOST=cloud.thingsboard.io" -e "RPC_PORT=9090" \
66
-e "INTEGRATION_ROUTING_KEY=YOUR_ROUTING_KEY" -e "INTEGRATION_SECRET=YOUR_SECRET " \
7-
--name my-tb-pe-http-integration --restart always thingsboard/tb-pe-http-integration:3.1PE
7+
--name my-tb-pe-http-integration --restart always thingsboard/tb-pe-http-integration:{{ site.release.pe_full_ver }}
88
```
99
{: .copy-code}
1010

@@ -19,7 +19,7 @@ Where:
1919
- `-v ~/.tb-pe-http-integration-logs:/var/log/tb-http-integration` - mounts the host's dir `~/.tb-pe-http-integration-logs` to ThingsBoard logs directory;
2020
- `--name tb-pe-http-integration` - friendly local name of this machine;
2121
- `--restart always` - automatically start ThingsBoard Integration in case of system reboot and restart in case of failure.;
22-
- `thingsboard/tb-pe-http-integration:3.1.0PE` - docker image.
22+
- `thingsboard/tb-pe-http-integration:{{ site.release.pe_full_ver }}` - docker image.
2323

2424
After executing this command you can open logs which are located here `~/.tb-pe-http-integration-logs`.
2525
You should see some INFO log messages with your latest Integration configuration that arrived from the server.

_includes/templates/install/integration/http-rhel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Download installation package:
22

33
```bash
4-
wget https://dist.thingsboard.io/tb-http-integration-3.1pe.rpm
4+
wget https://dist.thingsboard.io/tb-http-integration-{{ site.release.pe_ver }}.rpm
55
```
66
{: .copy-code}
77

88
Install integration as a service:
99

1010
```bash
11-
sudo rpm -Uvh tb-http-integration-3.1pe.rpm
11+
sudo rpm -Uvh tb-http-integration-{{ site.release.pe_ver }}.rpm
1212
```
1313
{: .copy-code}
1414

_includes/templates/install/integration/http-ubuntu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Download installation package:
22

33
```bash
4-
wget https://dist.thingsboard.io/tb-http-integration-3.1pe.deb
4+
wget https://dist.thingsboard.io/tb-http-integration-{{ site.release.pe_ver }}.deb
55
```
66
{: .copy-code}
77

88
Install integration as a service:
99

1010
```bash
11-
sudo dpkg -i tb-http-integration-3.1pe.deb
11+
sudo dpkg -i tb-http-integration-{{ site.release.pe_ver }}.deb
1212
```
1313
{: .copy-code}
1414

_includes/templates/install/integration/mqtt-docker-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Execute the following command to run this docker directly:
1212
docker run -it -v tb-pe-mqtt-integration-logs:/var/log/tb-mqtt-integration `
1313
-e "PRC_HOST=cloud.thingsboard.io" -e "RPC_PORT=9090" `
1414
-e "INTEGRATION_ROUTING_KEY=YOUR_ROUTING_KEY" -e "INTEGRATION_SECRET=YOUR_SECRET" `
15-
--name my-tb-pe-mqtt-integration --restart always thingsboard/tb-pe-mqtt-integration:3.1PE
15+
--name my-tb-pe-mqtt-integration --restart always thingsboard/tb-pe-mqtt-integration:{{ site.release.pe_full_ver }}
1616
```
1717
{: .copy-code}
1818

@@ -27,7 +27,7 @@ Where:
2727
- `-v tb-pe-mqtt-integration-logs:/var/log/tb-mqtt-integration` - mounts the host's dir `~/.tb-pe-mqtt-integration-logs` to ThingsBoard logs directory;
2828
- `--name tb-pe-mqtt-integration` - friendly local name of this machine;
2929
- `--restart always` - automatically start ThingsBoard Integration in case of system reboot and restart in case of failure.;
30-
- `thingsboard/tb-pe-mqtt-integration:3.1.0PE` - docker image.
30+
- `thingsboard/tb-pe-mqtt-integration:{{ site.release.pe_full_ver }}` - docker image.
3131
3232
After executing this command you can open logs which are located here `~/.tb-pe-mqtt-integration-logs`.
3333
You should see some INFO log messages with your latest Integration configuration that arrived from the server.

_includes/templates/install/integration/mqtt-docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Execute the following command to run this docker directly:
44
docker run -it -v ~/.tb-pe-mqtt-integration-logs:/var/log/tb-mqtt-integration \
55
-e "PRC_HOST=cloud.thingsboard.io" -e "RPC_PORT=9090" \
66
-e "INTEGRATION_ROUTING_KEY=YOUR_ROUTING_KEY" -e "INTEGRATION_SECRET=YOUR_SECRET " \
7-
--name my-tb-pe-mqtt-integration --restart always thingsboard/tb-pe-mqtt-integration:3.1PE
7+
--name my-tb-pe-mqtt-integration --restart always thingsboard/tb-pe-mqtt-integration:{{ site.release.pe_full_ver }}
88
```
99
{: .copy-code}
1010

@@ -19,7 +19,7 @@ Where:
1919
- `-v ~/.tb-pe-mqtt-integration-logs:/var/log/tb-mqtt-integration` - mounts the host's dir `~/.tb-pe-mqtt-integration-logs` to ThingsBoard logs directory;
2020
- `--name tb-pe-mqtt-integration` - friendly local name of this machine;
2121
- `--restart always` - automatically start ThingsBoard Integration in case of system reboot and restart in case of failure.;
22-
- `thingsboard/tb-pe-mqtt-integration:3.1.0PE` - docker image.
22+
- `thingsboard/tb-pe-mqtt-integration:{{ site.release.pe_full_ver }}` - docker image.
2323

2424
After executing this command you can open logs which are located here `~/.tb-pe-mqtt-integration-logs`.
2525
You should see some INFO log messages with your latest Integration configuration that arrived from the server.

_includes/templates/install/integration/mqtt-rhel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Download installation package:
22

33
```bash
4-
wget https://dist.thingsboard.io/tb-mqtt-integration-3.1pe.rpm
4+
wget https://dist.thingsboard.io/tb-mqtt-integration-{{ site.release.pe_ver }}.rpm
55
```
66
{: .copy-code}
77

88
Install integration as a service:
99

1010
```bash
11-
sudo rpm -Uvh tb-mqtt-integration-3.1pe.rpm
11+
sudo rpm -Uvh tb-mqtt-integration-{{ site.release.pe_ver }}.rpm
1212
```
1313
{: .copy-code}
1414

_includes/templates/install/integration/mqtt-ubuntu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Download installation package:
22

33
```bash
4-
wget https://dist.thingsboard.io/tb-mqtt-integration-3.1pe.deb
4+
wget https://dist.thingsboard.io/tb-mqtt-integration-{{ site.release.pe_ver }}.deb
55
```
66
{: .copy-code}
77

88
Install integration as a service:
99

1010
```bash
11-
sudo dpkg -i tb-mqtt-integration-3.1pe.deb
11+
sudo dpkg -i tb-mqtt-integration-{{ site.release.pe_ver }}.deb
1212
```
1313
{: .copy-code}
1414

_includes/templates/install/integration/opcua-docker-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Execute the following command to run this docker directly:
1313
docker run -it -v tb-pe-opc-ua-integration-logs:/var/log/tb-opc-ua-integration `
1414
-e "PRC_HOST=cloud.thingsboard.io" -e "RPC_PORT=9090" `
1515
-e "INTEGRATION_ROUTING_KEY=YOUR_ROUTING_KEY" -e "INTEGRATION_SECRET=YOUR_SECRET" `
16-
--name my-tb-pe-opc-ua-integration --restart always thingsboard/tb-pe-opc-ua-integration:3.1PE
16+
--name my-tb-pe-opc-ua-integration --restart always thingsboard/tb-pe-opc-ua-integration:{{ site.release.pe_full_ver }}
1717
```
1818
{: .copy-code}
1919

@@ -28,7 +28,7 @@ Where:
2828
- `-v tb-pe-opc-ua-integration-logs:/var/log/tb-opc-ua-integration` - mounts the host's dir `~/.tb-pe-opc-ua-integration-logs` to ThingsBoard logs directory;
2929
- `--name tb-pe-opc-ua-integration` - friendly local name of this machine;
3030
- `--restart always` - automatically start ThingsBoard Integration in case of system reboot and restart in case of failure.;
31-
- `thingsboard/tb-pe-opc-ua-integration:3.1.0PE` - docker image.
31+
- `thingsboard/tb-pe-opc-ua-integration:{{ site.release.pe_full_ver }}` - docker image.
3232
3333
After executing this command you can open logs which are located here `~/.tb-pe-opc-ua-integration-logs`.
3434
You should see some INFO log messages with your latest Integration configuration that arrived from the server.

_includes/templates/install/integration/opcua-docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Execute the following command to run this docker directly:
44
docker run -it -v ~/.tb-pe-opc-ua-integration-logs:/var/log/tb-opc-ua-integration \
55
-e "PRC_HOST=cloud.thingsboard.io" -e "RPC_PORT=9090" \
66
-e "INTEGRATION_ROUTING_KEY=YOUR_ROUTING_KEY" -e "INTEGRATION_SECRET=YOUR_SECRET " \
7-
--name my-tb-pe-opc-ua-integration --restart always thingsboard/tb-pe-opc-ua-integration:3.1PE
7+
--name my-tb-pe-opc-ua-integration --restart always thingsboard/tb-pe-opc-ua-integration:{{ site.release.pe_full_ver }}
88
```
99
{: .copy-code}
1010

@@ -19,7 +19,7 @@ Where:
1919
- `-v ~/.tb-pe-opc-ua-integration-logs:/var/log/tb-opc-ua-integration` - mounts the host's dir `~/.tb-pe-opc-ua-integration-logs` to ThingsBoard logs directory;
2020
- `--name tb-pe-opc-ua-integration` - friendly local name of this machine;
2121
- `--restart always` - automatically start ThingsBoard Integration in case of system reboot and restart in case of failure.;
22-
- `thingsboard/tb-pe-opc-ua-integration:3.1.0PE` - docker image.
22+
- `thingsboard/tb-pe-opc-ua-integration:{{ site.release.pe_full_ver }}` - docker image.
2323

2424
After executing this command you can open logs which are located here `~/.tb-pe-opc-ua-integration-logs`.
2525
You should see some INFO log messages with your latest Integration configuration that arrived from the server.

_includes/templates/install/integration/opcua-rhel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Download installation package:
22

33
```bash
4-
wget https://dist.thingsboard.io/tb-opc-ua-integration-3.1pe.rpm
4+
wget https://dist.thingsboard.io/tb-opc-ua-integration-{{ site.release.pe_ver }}.rpm
55
```
66
{: .copy-code}
77

88
Install integration as a service:
99

1010
```bash
11-
sudo rpm -Uvh tb-opc-ua-integration-3.1pe.rpm
11+
sudo rpm -Uvh tb-opc-ua-integration-{{ site.release.pe_ver }}.rpm
1212
```
1313
{: .copy-code}
1414

_includes/templates/install/integration/opcua-ubuntu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Download installation package:
22

33
```bash
4-
wget https://dist.thingsboard.io/tb-opc-ua-integration-3.1pe.deb
4+
wget https://dist.thingsboard.io/tb-opc-ua-integration-{{ site.release.pe_ver }}.deb
55
```
66
{: .copy-code}
77

88
Install integration as a service:
99

1010
```bash
11-
sudo dpkg -i tb-opc-ua-integration-3.1pe.deb
11+
sudo dpkg -i tb-opc-ua-integration-{{ site.release.pe_ver }}.deb
1212
```
1313
{: .copy-code}
1414

_includes/templates/install/integration/tcpudp-docker-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Execute the following command to run this docker directly:
1313
docker run -it -p 10560:10560 -v tb-pe-tcp-udp-integration-logs:/var/log/tb-tcp-udp-integration `
1414
-e "PRC_HOST=cloud.thingsboard.io" -e "RPC_PORT=9090" `
1515
-e "INTEGRATION_ROUTING_KEY=YOUR_ROUTING_KEY" -e "INTEGRATION_SECRET=YOUR_SECRET" `
16-
--name my-tb-pe-tcp-udp-integration --restart always thingsboard/tb-pe-tcp-udp-integration:3.1PE
16+
--name my-tb-pe-tcp-udp-integration --restart always thingsboard/tb-pe-tcp-udp-integration:{{ site.release.pe_full_ver }}
1717
```
1818
{: .copy-code}
1919

@@ -29,7 +29,7 @@ Where:
2929
- `-v tb-pe-tcp-udp-integration-logs:/var/log/tb-tcp-udp-integration` - mounts the host's dir `~/.tb-pe-tcp-udp-integration-logs` to ThingsBoard logs directory;
3030
- `--name tb-pe-tcp-udp-integration` - friendly local name of this machine;
3131
- `--restart always` - automatically start ThingsBoard Integration in case of system reboot and restart in case of failure.;
32-
- `thingsboard/tb-pe-tcp-udp-integration:3.1.0PE` - docker image.
32+
- `thingsboard/tb-pe-tcp-udp-integration:{{ site.release.pe_full_ver }}` - docker image.
3333
3434
After executing this command you can open logs which are located here `~/.tb-pe-tcp-udp-integration-logs`.
3535
You should see some INFO log messages with your latest Integration configuration that arrived from the server.

_includes/templates/install/integration/tcpudp-docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Execute the following command to run this docker directly:
44
docker run -it -p 10560:10560 -v ~/.tb-pe-tcp-udp-integration-logs:/var/log/tb-tcp-udp-integration \
55
-e "PRC_HOST=cloud.thingsboard.io" -e "RPC_PORT=9090" \
66
-e "INTEGRATION_ROUTING_KEY=YOUR_ROUTING_KEY" -e "INTEGRATION_SECRET=YOUR_SECRET " \
7-
--name my-tb-pe-tcp-udp-integration --restart always thingsboard/tb-pe-tcp-udp-integration:3.1PE
7+
--name my-tb-pe-tcp-udp-integration --restart always thingsboard/tb-pe-tcp-udp-integration:{{ site.release.pe_full_ver }}
88
```
99
{: .copy-code}
1010

@@ -20,7 +20,7 @@ Where:
2020
- `-v ~/.tb-pe-tcp-udp-integration-logs:/var/log/tb-tcp-udp-integration` - mounts the host's dir `~/.tb-pe-tcp-udp-integration-logs` to ThingsBoard logs directory;
2121
- `--name tb-pe-tcp-udp-integration` - friendly local name of this machine;
2222
- `--restart always` - automatically start ThingsBoard Integration in case of system reboot and restart in case of failure.;
23-
- `thingsboard/tb-pe-tcp-udp-integration:3.1.0PE` - docker image.
23+
- `thingsboard/tb-pe-tcp-udp-integration:{{ site.release.pe_full_ver }}` - docker image.
2424

2525
After executing this command you can open logs which are located here `~/.tb-pe-tcp-udp-integration-logs`.
2626
You should see some INFO log messages with your latest Integration configuration that arrived from the server.

0 commit comments

Comments
 (0)