Skip to content

Commit ad785bc

Browse files
authoredJul 24, 2024··
chore: disable telemetry/analytics for loki/grafana (#601)
## Description Disables analytics/external connections for loki and grafana. Primary reason is these tools should not be phoning home as part of our airgap-first stack. ## Related Issue Fixes #487 ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [x] Other (security config, docs update, etc) ## Checklist before merging - [x] Test, docs, adr added or updated as needed - [x] [Contributor Guide](https://github.com/defenseunicorns/uds-template-capability/blob/main/CONTRIBUTING.md) followed
1 parent bf9f65c commit ad785bc

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
 

‎src/grafana/values/values.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ extraSecretMounts:
1717
grafana.ini:
1818
server:
1919
root_url: https://grafana.admin.###ZARF_VAR_DOMAIN###
20+
# Disable telemetry that doesn't function in the airgap
21+
analytics:
22+
reporting_enabled: false
23+
check_for_updates: false
24+
check_for_plugin_updates: false
2025
auth:
2126
# Disable the login form to force users to use SSO
2227
disable_login_form: true

‎src/loki/values/values.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ memberlist:
1616

1717
loki:
1818
configStorageType: Secret
19+
# Disable telemetry that doesn't function in the airgap
20+
analytics:
21+
reporting_enabled: false
1922
storage:
2023
bucketNames:
2124
chunks: uds

0 commit comments

Comments
 (0)
Please sign in to comment.