Skip to content

Commit

Permalink
fix: disable loki auth
Browse files Browse the repository at this point in the history
  • Loading branch information
shepherdjerred committed Jan 12, 2025
1 parent cdbb072 commit 238a442
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions cdk8s/src/apps/loki.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export function createLokiApp(chart: Chart) {
valuesObject: {
deploymentMode: "SingleBinary",
loki: {
auth_enabled: false,
schemaConfig: {
configs: [{
from: "2025-01-01",
Expand Down
8 changes: 6 additions & 2 deletions cdk8s/src/apps/prometheus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,19 @@ export function createPrometheusApp(chart: Chart) {
targetRevision: versions["kube-prometheus-stack"],
helm: {
valuesObject: {
// disable components that fail
// https://github.com/prometheus-operator/kube-prometheus/issues/718
kubeProxy: {
// disable components that fail
// https://github.com/prometheus-operator/kube-prometheus/issues/718
enabled: false,
},
kubeScheduler: {
// disable components that fail
// https://github.com/prometheus-operator/kube-prometheus/issues/718
enabled: false,
},
kubeControllerManager: {
// disable components that fail
// https://github.com/prometheus-operator/kube-prometheus/issues/718
enabled: false,
},
grafana: {
Expand Down

0 comments on commit 238a442

Please sign in to comment.