Skip to content

Commit

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

Signed-off-by: Hart Hoover <hart.hoover@gmail.com>
(cherry picked from commit c259c6c)
  • Loading branch information
hhoover authored and mergify-bot committed Nov 2, 2021
1 parent dcb928c commit 2c5749f
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 @@ -170,7 +170,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 @@ -188,7 +188,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 @@ -282,7 +282,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 2c5749f

Please sign in to comment.