Skip to content

Commit 0ef56b6

Browse files
committed
Release devicehive-docker 3.5.0
1 parent f8beef7 commit 0ef56b6

File tree

6 files changed

+17
-16
lines changed

6 files changed

+17
-16
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Development
1+
## 3.5.0 / 2018-06-04
22

33
* k8s: add parameters for log level configuration in Java Server services
44
* k8s: add deployment for DeviceHive MQTT broker
@@ -19,6 +19,7 @@
1919
* compose: self-signed certificates generation in DeviceHive Proxy is removed, description in "Breaking changes" section. Fixes: [#50](https://github.com/devicehive/devicehive-docker/issues/50).
2020
* k8s: deploy internal WS proxy only when bus is 'wsproxy'
2121
* k8s: add common ingress to bypass devicehive-proxy
22+
* Update images to DeviceHive Java Server 3.5.0, DeviceHive Proxy 3.5.0
2223

2324
### Breaking changes
2425

k8s/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The following tables lists the configurable parameters of the DeviceHive chart a
6767
Parameter | Description | Default
6868
--------- | ----------- | -------
6969
`javaServer.repository` | DockerHub user or organization with all devicehive-java-server images | `devicehive`
70-
`javaServer.tag` | Common image tag of devicehive-java-server images | `3.4.5`
70+
`javaServer.tag` | Common image tag of devicehive-java-server images | `3.5.0`
7171
`javaServer.pullPolicy` | Common image pull policy for devicehive-java-server images | `IfNotPresent`
7272
`javaServer.auth.replicaCount` | Desired number of Auth service pods | `1`
7373
`javaServer.auth.resources` | Auth service resource requests and limits | `{}`
@@ -110,7 +110,7 @@ Parameter | Description | Default
110110
`mqttBroker.resources` | MQTT broker deployment resource requests and limits | `{}`
111111
`mqttBroker.service.type` | Type of MQTT broker service to create | `ClusterIP`
112112
`mqttBroker.service.port` | MQTT broker service port | `1883`
113-
`proxy.image` | DH Proxy image name and tag | `devicehive/devicehive-proxy:3.4.5`
113+
`proxy.image` | DH Proxy image name and tag | `devicehive/devicehive-proxy:3.5.0`
114114
`proxy.pullPolicy` | DH Proxy image pull policy | `IfNotPresent`
115115
`proxy.replicaCount` | Desired number DH Proxy pods | `1`
116116
`proxy.resources` | DH Proxy service resource requests and limits | `{}`

k8s/devicehive/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
javaServer:
22
repository: devicehive
3-
tag: 3.4.5
3+
tag: 3.5.0
44
pullPolicy: IfNotPresent
55
auth:
66
replicaCount: 1
@@ -64,7 +64,7 @@ mqttBroker:
6464
appLogLevel: info
6565

6666
proxy:
67-
image: devicehive/devicehive-proxy:3.4.5.1
67+
image: devicehive/devicehive-proxy:3.5.0
6868
pullPolicy: IfNotPresent
6969
replicaCount: 1
7070
resources: {}

rdbms-image/dh_plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3"
22
services:
33
dh_plugin:
4-
image: devicehive/devicehive-plugin:${DH_TAG:-3.4.5}
4+
image: devicehive/devicehive-plugin:${DH_TAG:-3.5.0}
55
ports:
66
- "${DH_PLUGIN_PORT:-8110}:8110"
77
links:

rdbms-image/docker-compose-node.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242
PROXY.WEB_SOCKET_SERVER_HOST: 'wsproxy'
4343

4444
dh_frontend:
45-
image: devicehive/devicehive-frontend:${DH_TAG:-3.4.5}
45+
image: devicehive/devicehive-frontend:${DH_TAG:-3.5.0}
4646
ports:
4747
- "${DH_FRONTEND_PORT:-8080}:8080"
4848
links:
@@ -74,7 +74,7 @@ services:
7474
SPRING_PROFILES_ACTIVE: ${DH_FE_SPRING_PROFILES_ACTIVE:-ws-kafka-proxy-frontend}
7575

7676
dh_auth:
77-
image: devicehive/devicehive-auth:${DH_TAG:-3.4.5}
77+
image: devicehive/devicehive-auth:${DH_TAG:-3.5.0}
7878
ports:
7979
- "${DH_ADMIN_PORT:-8090}:8090"
8080
links:
@@ -103,7 +103,7 @@ services:
103103
SPRING_PROFILES_ACTIVE: ${DH_AUTH_SPRING_PROFILES_ACTIVE:-ws-kafka-proxy}
104104

105105
hazelcast:
106-
image: devicehive/devicehive-hazelcast:${DH_TAG:-3.4.5}
106+
image: devicehive/devicehive-hazelcast:${DH_TAG:-3.5.0}
107107
ports:
108108
- "5701:5701"
109109
restart: unless-stopped
@@ -112,7 +112,7 @@ services:
112112
MIN_HEAP_SIZE: "512m"
113113

114114
dh_backend_node:
115-
image: devicehiveci/devicehive-backend-node:${DH_BACKEND_NODE_TAG:-jenkins}
115+
image: devicehive/devicehive-backend-node:${DH_BACKEND_NODE_TAG:-development}
116116
links:
117117
- "hazelcast"
118118
- "postgres"
@@ -131,7 +131,7 @@ services:
131131
HAZELCAST.GROUP_PASSWORD: ${HC_GROUP_PASSWORD:-dev-pass}
132132

133133
dh_proxy:
134-
image: devicehive/devicehive-proxy:${DH_PROXY_TAG:-3.4.5.1}
134+
image: devicehive/devicehive-proxy:${DH_PROXY_TAG:-3.5.0}
135135
links:
136136
- "dh_auth"
137137
- "dh_frontend"

rdbms-image/docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242
PROXY.WEB_SOCKET_SERVER_HOST: 'wsproxy'
4343

4444
dh_frontend:
45-
image: devicehive/devicehive-frontend:${DH_TAG:-3.4.5}
45+
image: devicehive/devicehive-frontend:${DH_TAG:-3.5.0}
4646
ports:
4747
- "${DH_FRONTEND_PORT:-8080}:8080"
4848
links:
@@ -74,7 +74,7 @@ services:
7474
SPRING_PROFILES_ACTIVE: ${DH_FE_SPRING_PROFILES_ACTIVE:-ws-kafka-proxy-frontend}
7575

7676
dh_auth:
77-
image: devicehive/devicehive-auth:${DH_TAG:-3.4.5}
77+
image: devicehive/devicehive-auth:${DH_TAG:-3.5.0}
7878
ports:
7979
- "${DH_ADMIN_PORT:-8090}:8090"
8080
links:
@@ -103,7 +103,7 @@ services:
103103
SPRING_PROFILES_ACTIVE: ${DH_AUTH_SPRING_PROFILES_ACTIVE:-ws-kafka-proxy}
104104

105105
hazelcast:
106-
image: devicehive/devicehive-hazelcast:${DH_TAG:-3.4.5}
106+
image: devicehive/devicehive-hazelcast:${DH_TAG:-3.5.0}
107107
ports:
108108
- "5701:5701"
109109
restart: unless-stopped
@@ -112,7 +112,7 @@ services:
112112
MIN_HEAP_SIZE: "512m"
113113

114114
dh_backend:
115-
image: devicehive/devicehive-backend:${DH_TAG:-3.4.5}
115+
image: devicehive/devicehive-backend:${DH_TAG:-3.5.0}
116116
links:
117117
- "hazelcast"
118118
- "kafka"
@@ -140,7 +140,7 @@ services:
140140
SPRING_PROFILES_ACTIVE: ${DH_BE_SPRING_PROFILES_ACTIVE:-ws-kafka-proxy-backend}
141141

142142
dh_proxy:
143-
image: devicehive/devicehive-proxy:${DH_PROXY_TAG:-3.4.5.1}
143+
image: devicehive/devicehive-proxy:${DH_PROXY_TAG:-3.5.0}
144144
links:
145145
- "dh_auth"
146146
- "dh_frontend"

0 commit comments

Comments
 (0)