-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace loki-stack helm chart with loki + promtail #23
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
apiVersion: helm.toolkit.fluxcd.io/v2beta2 | ||
kind: HelmRelease | ||
metadata: | ||
name: loki | ||
spec: | ||
interval: 5m | ||
dependsOn: | ||
- name: kube-prometheus-stack | ||
chart: | ||
spec: | ||
version: "5.x" | ||
chart: loki | ||
sourceRef: | ||
kind: HelmRepository | ||
name: grafana-charts | ||
interval: 60m | ||
# https://github.com/grafana/loki/blob/main/production/helm/loki/values.yaml | ||
values: | ||
loki: | ||
auth_enabled: false | ||
serviceMonitor: | ||
enabled: true | ||
labels: | ||
app.kubernetes.io/part-of: kube-prometheus-stack | ||
commonConfig: | ||
replication_factor: 1 | ||
storage: | ||
type: 'filesystem' | ||
chunk_store_config: | ||
max_look_back_period: 24h | ||
# Configure compactor | ||
compactor: | ||
shared_store: filesystem | ||
compaction_interval: 10m | ||
delete_request_cancel_period: 10m | ||
retention_enabled: true | ||
retention_delete_delay: 2h | ||
retention_delete_worker_count: 150 | ||
limits_config: | ||
retention_period: 24h | ||
gateway: | ||
enabled: true | ||
singleBinary: | ||
replicas: 1 | ||
# Monitoring section determines which monitoring features to enable | ||
monitoring: | ||
# Dashboards for monitoring Loki | ||
dashboards: | ||
# -- If enabled, create configmap with dashboards for monitoring Loki | ||
enabled: false | ||
selfMonitoring: | ||
enabled: false | ||
grafanaAgent: | ||
installOperator: false | ||
# The Loki canary pushes logs to and queries from this loki installation | ||
# to test that it's working correctly | ||
lokiCanary: | ||
enabled: false | ||
# -- Section for configuring optional Helm test | ||
test: | ||
enabled: false | ||
extraObjects: | ||
- apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: loki-datasource | ||
labels: | ||
app: loki | ||
chart: loki | ||
release: loki | ||
grafana_datasource: "1" | ||
app.kubernetes.io/part-of: kube-prometheus-stack | ||
data: | ||
loki-datasource.yaml: |- | ||
apiVersion: 1 | ||
datasources: | ||
- name: Loki | ||
type: loki | ||
access: proxy | ||
url: http://loki:{{ .Values.loki.server.http_listen_port }} | ||
version: 1 | ||
isDefault: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
apiVersion: helm.toolkit.fluxcd.io/v2beta2 | ||
kind: HelmRelease | ||
metadata: | ||
name: promtail | ||
spec: | ||
interval: 5m | ||
dependsOn: | ||
- name: kube-prometheus-stack | ||
chart: | ||
spec: | ||
version: "6.x" | ||
chart: promtail | ||
sourceRef: | ||
kind: HelmRepository | ||
name: grafana-charts | ||
interval: 60m | ||
# https://github.com/grafana/helm-charts/blob/main/charts/promtail/values.yaml | ||
values: | ||
test: | ||
enabled: false | ||
File renamed without changes.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was just checking this out and wondered why you disabled tests here, if I should make the same change in #47
I'm going to come back and review your changes because it looks like there are a few things in here I should have adopted, marking mine as a draft again - thanks for doing this a long time ago! Sorry it has taken so long to review