Skip to content

Commit

Permalink
Merge pull request #842 from solarwinds/fixRenderingOfNodeCollector
Browse files Browse the repository at this point in the history
Fix rendering of node collector
  • Loading branch information
pstranak-sw authored Dec 18, 2024
2 parents 2744eba + 0a85754 commit 0f32ef6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deploy/helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: swo-k8s-collector
version: 4.3.0-alpha.8
version: 4.3.0-alpha.9
appVersion: 0.12.1
description: SolarWinds Kubernetes Integration
keywords:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if or .Values.otel.logs.enabled .Values.otel.metrics.enabled }}
{{- if and (or .Values.otel.logs.enabled .Values.otel.metrics.enabled) .Values.otel.windows.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.otel.logs.enabled .Values.otel.windows.enabled }}
{{- if and (or .Values.otel.logs.enabled .Values.otel.metrics.enabled) .Values.otel.windows.enabled }}
apiVersion: apps/v1
kind: DaemonSet
metadata:
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/templates/node-collector-pod-monitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ metadata:
spec:
selector:
matchLabels:
app: {{ include "common.fullname" (tuple . "-logs") }}
app: {{ include "common.fullname" (tuple . "-node-collector") }}
namespaceSelector:
matchNames:
- {{ .Release.Namespace }}
Expand Down

0 comments on commit 0f32ef6

Please sign in to comment.