Skip to content

Commit

Permalink
Disable reporting by default
Browse files Browse the repository at this point in the history
There is reporting code in Kuma that sends data to
kong-hf.konghq.com by default. This commit switches
the default to false for now.

See also: #3050
Signed-off-by: Hart Hoover <hart.hoover@gmail.com>
  • Loading branch information
hhoover committed Nov 2, 2021
1 parent e1cfdca commit ac22a59
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": true
"enabled": false
},
"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: true,
Enabled: false,
},
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: true # ENV: KUMA_REPORTS_ENABLED
enabled: false # ENV: KUMA_REPORTS_ENABLED

# General configuration
general:
Expand Down

0 comments on commit ac22a59

Please sign in to comment.