Skip to content

Commit

Permalink
Disable reporting by default (kumahq#3070)
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.

Updates kumahq#3050.

Signed-off-by: Hart Hoover <hart.hoover@gmail.com>
  • Loading branch information
hhoover authored and lahabana committed Nov 3, 2021
1 parent 31be292 commit 4948f69
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 4948f69

Please sign in to comment.