mirror of
https://github.com/weaveworks/scope.git
synced 2026-02-14 18:09:59 +00:00
40
CHANGELOG.md
40
CHANGELOG.md
@@ -1,3 +1,43 @@
|
||||
## Release 1.13.1
|
||||
|
||||
This release fixes a bug on 'kubernetes describe' operations, where
|
||||
the probe would spin re-opening a connection to the UI again and again
|
||||
after the operation had finished.
|
||||
|
||||
Also removes some obsolete code which connected to the unsecured local
|
||||
kubelet port in Kubernetes; please update your configuration to a
|
||||
single probe to talk to Kubernetes for the whole cluster if you
|
||||
haven't already. Thanks to @CiMaol for this contribution.
|
||||
|
||||
### Bug fixes
|
||||
|
||||
- Stop 'kubernetes describe' operations spinning
|
||||
[#3784](https://github.com/weaveworks/scope/pull/3784)
|
||||
- Probe: skip publishing empty reports when publish rate is higher than collection rate
|
||||
[#3774](https://github.com/weaveworks/scope/pull/3774)
|
||||
|
||||
### Improvements
|
||||
|
||||
- Probe no longer talks to local kubelet
|
||||
[#3754](https://github.com/weaveworks/scope/pull/3754)
|
||||
- Track rounding error in multitenant billing calculation
|
||||
[#3779](https://github.com/weaveworks/scope/pull/3779)
|
||||
|
||||
### Performance
|
||||
|
||||
- Multitenant: merge incoming reports in collector, to save IO and query time
|
||||
[#3780](https://github.com/weaveworks/scope/pull/3780)
|
||||
[#3781](https://github.com/weaveworks/scope/pull/3781)
|
||||
[#3782](https://github.com/weaveworks/scope/pull/3782)
|
||||
|
||||
### Dependencies
|
||||
|
||||
- update html-webpack-plugin to most recent stable
|
||||
[#3776](https://github.com/weaveworks/scope/pull/3776)
|
||||
- downgrade fluent-logger-golang library used in multitenant mode
|
||||
[#3772](https://github.com/weaveworks/scope/pull/3772)
|
||||
|
||||
|
||||
## Release 1.13.0
|
||||
|
||||
This release brings a few bug-fixes and number of performance
|
||||
|
||||
@@ -25,7 +25,7 @@ spec:
|
||||
args:
|
||||
- '--no-probe'
|
||||
env: []
|
||||
image: weaveworks/scope:1.13.0
|
||||
image: weaveworks/scope:1.13.1
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 4040
|
||||
|
||||
@@ -34,7 +34,7 @@ spec:
|
||||
fieldRef:
|
||||
apiVersion: v1
|
||||
fieldPath: spec.nodeName
|
||||
image: weaveworks/scope:1.13.0
|
||||
image: weaveworks/scope:1.13.1
|
||||
imagePullPolicy: IfNotPresent
|
||||
securityContext:
|
||||
privileged: true
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
probe:
|
||||
image: weaveworks/scope:1.13.0
|
||||
image: weaveworks/scope:1.13.1
|
||||
net: "host"
|
||||
pid: "host"
|
||||
privileged: true
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
version: '2'
|
||||
services:
|
||||
probe:
|
||||
image: weaveworks/scope:1.13.0
|
||||
image: weaveworks/scope:1.13.1
|
||||
network_mode: "host"
|
||||
pid: "host"
|
||||
privileged: true
|
||||
|
||||
@@ -28,7 +28,7 @@ spec:
|
||||
args:
|
||||
- '--no-probe'
|
||||
env: []
|
||||
image: weaveworks/scope:1.13.0
|
||||
image: weaveworks/scope:1.13.1
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 4040
|
||||
|
||||
@@ -31,7 +31,7 @@ spec:
|
||||
- '--probe.docker.bridge=docker0'
|
||||
- '--probe.docker=true'
|
||||
- 'weave-scope-app.weave.svc.cluster.local.:80'
|
||||
image: weaveworks/scope:1.13.0
|
||||
image: weaveworks/scope:1.13.1
|
||||
imagePullPolicy: IfNotPresent
|
||||
resources:
|
||||
requests:
|
||||
|
||||
@@ -35,7 +35,7 @@ spec:
|
||||
- 'weave-scope-app.weave.svc.cluster.local.:80'
|
||||
command:
|
||||
- /home/weave/scope
|
||||
image: 'docker.io/weaveworks/scope:1.13.0'
|
||||
image: 'docker.io/weaveworks/scope:1.13.1'
|
||||
imagePullPolicy: IfNotPresent
|
||||
resources:
|
||||
requests:
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
"container": {
|
||||
"type": "DOCKER",
|
||||
"docker": {
|
||||
"image": "weaveworks/scope:1.13.0",
|
||||
"image": "weaveworks/scope:1.13.1",
|
||||
"network": "HOST",
|
||||
"privileged": true,
|
||||
"parameters": [
|
||||
|
||||
@@ -112,7 +112,7 @@ After it’s been launched, open your browser to `http://localhost:4040`.
|
||||
**Docker Compose Format Version 1:**
|
||||
|
||||
scope:
|
||||
image: weaveworks/scope:1.13.0
|
||||
image: weaveworks/scope:1.13.1
|
||||
net: "host"
|
||||
pid: "host"
|
||||
privileged: true
|
||||
@@ -128,7 +128,7 @@ After it’s been launched, open your browser to `http://localhost:4040`.
|
||||
version: '2'
|
||||
services:
|
||||
scope:
|
||||
image: weaveworks/scope:1.13.0
|
||||
image: weaveworks/scope:1.13.1
|
||||
network_mode: "host"
|
||||
pid: "host"
|
||||
privileged: true
|
||||
|
||||
Reference in New Issue
Block a user