Skip to content

Commit 7684e59

Browse files
authored
fix typo in daemonset labelSelector
The label on the pod is `app: node-problem-detector` while the label in the `labelSelector` was `name: node-problem-detector`. This CL updates the `labelSelector` to use `app` rather than `name`.
1 parent 4d4ed74 commit 7684e59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deployment/node-problem-detector.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
selector:
77
matchLabels:
8-
name: node-problem-detector
8+
app: node-problem-detector
99
template:
1010
metadata:
1111
labels:

0 commit comments

Comments
 (0)