Skip to content

Commit

Permalink
Revert "Disable reporting by default (#3070)" (#3072)
Browse files Browse the repository at this point in the history
Revert changing the telemetry defaults pending discussion with CNCF.

This reverts commit c259c6c.
Signed-off-by: James Peach <james.peach@konghq.com>
  • Loading branch information
jpeach authored Nov 4, 2021
1 parent 9009059 commit bc68c58
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/api-server/config_ws_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ var _ = Describe("Config WS", func() {
}
},
"reports": {
"enabled": false
"enabled": true
},
"runtime": {
"kubernetes": {
Expand Down
2 changes: 1 addition & 1 deletion pkg/config/app/kuma-cp/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ func DefaultConfig() Config {
},
},
Reports: &Reports{
Enabled: false,
Enabled: true,
},
General: DefaultGeneralConfig(),
GuiServer: gui_server.DefaultGuiServerConfig(),
Expand Down
2 changes: 1 addition & 1 deletion pkg/config/app/kuma-cp/kuma-cp.defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ metrics:
# Reports configuration
reports:
# If true then usage stats will be reported
enabled: false # ENV: KUMA_REPORTS_ENABLED
enabled: true # ENV: KUMA_REPORTS_ENABLED

# General configuration
general:
Expand Down

0 comments on commit bc68c58

Please sign in to comment.