Release 1.11.4

This commit is contained in:
Bryan Boreham
2019-07-31 14:08:05 +00:00
parent 609d9a7506
commit c3ff3cac56
10 changed files with 27 additions and 10 deletions

View File

@@ -1,3 +1,20 @@
## Release 1.11.4
This release contains a few fixes, one of which should improve
resource usage on hosts that have a lot of TCP connections.
- Improve eBPF connection tracker to reduce the number of times it
restarts and falls back to a less efficient mechanism.
[#3653](https://github.com/weaveworks/scope/pull/3653)
- Add reporter name to probe error logs. Thanks to @princerachit
[#3363](https://github.com/weaveworks/scope/pull/3363)
- Defer metrics registration until we need it
[#3605](https://github.com/weaveworks/scope/pull/3605)
- Remove unused metric SpyDuration
[#3646](https://github.com/weaveworks/scope/pull/3646)
- Remove quay.io from release script
[#3657](https://github.com/weaveworks/scope/pull/3657)
## Release 1.11.3
This is a bugfix release, which should improve some cases where

View File

@@ -25,7 +25,7 @@ spec:
args:
- '--no-probe'
env: []
image: weaveworks/scope:1.11.3
image: weaveworks/scope:1.11.4
imagePullPolicy: IfNotPresent
ports:
- containerPort: 4040

View File

@@ -34,7 +34,7 @@ spec:
fieldRef:
apiVersion: v1
fieldPath: spec.nodeName
image: weaveworks/scope:1.11.3
image: weaveworks/scope:1.11.4
imagePullPolicy: IfNotPresent
securityContext:
privileged: true

View File

@@ -1,5 +1,5 @@
probe:
image: weaveworks/scope:1.11.3
image: weaveworks/scope:1.11.4
net: "host"
pid: "host"
privileged: true

View File

@@ -1,7 +1,7 @@
version: '2'
services:
probe:
image: weaveworks/scope:1.11.3
image: weaveworks/scope:1.11.4
network_mode: "host"
pid: "host"
privileged: true

View File

@@ -28,7 +28,7 @@ spec:
args:
- '--no-probe'
env: []
image: weaveworks/scope:1.11.3
image: weaveworks/scope:1.11.4
imagePullPolicy: IfNotPresent
ports:
- containerPort: 4040

View File

@@ -31,7 +31,7 @@ spec:
- '--probe.docker.bridge=docker0'
- '--probe.docker=true'
- 'weave-scope-app.weave.svc.cluster.local.:80'
image: weaveworks/scope:1.11.3
image: weaveworks/scope:1.11.4
imagePullPolicy: IfNotPresent
resources:
requests:

View File

@@ -35,7 +35,7 @@ spec:
- 'weave-scope-app.weave.svc.cluster.local.:80'
command:
- /home/weave/scope
image: 'docker.io/weaveworks/scope:1.11.3'
image: 'docker.io/weaveworks/scope:1.11.4'
imagePullPolicy: IfNotPresent
resources:
requests:

View File

@@ -12,7 +12,7 @@
"container": {
"type": "DOCKER",
"docker": {
"image": "weaveworks/scope:1.11.3",
"image": "weaveworks/scope:1.11.4",
"network": "HOST",
"privileged": true,
"parameters": [

View File

@@ -112,7 +112,7 @@ After its been launched, open your browser to `http://localhost:4040`.
**Docker Compose Format Version 1:**
scope:
image: weaveworks/scope:1.11.3
image: weaveworks/scope:1.11.4
net: "host"
pid: "host"
privileged: true
@@ -128,7 +128,7 @@ After its been launched, open your browser to `http://localhost:4040`.
version: '2'
services:
scope:
image: weaveworks/scope:1.11.3
image: weaveworks/scope:1.11.4
network_mode: "host"
pid: "host"
privileged: true